Public Overloads Function TableExists( _ ByVal tableName As String, _ ByVal databaseName As String _ ) As Boolean
Dim instance As MySqlProvider Dim tableName As String Dim databaseName As String Dim value As Boolean value = instance.TableExists(tableName, databaseName)
public bool TableExists( string tableName, string databaseName )
public: bool TableExists( string* tableName, string* databaseName )
public: bool TableExists( String^ tableName, String^ databaseName )
Parameters
- tableName
- Name of the table
- databaseName
- Name of the Database
Return Value
True if the table exists in the Database else returns False