Title here
Summary here
Drops a table. Use DropIfExists to drop a table only if it exists.
public sealed class DropTableTask : DropTask<IfTableOrViewExistsTask>, ILoggableTask
public DropTableTask()
public DropTableTask(string tableName)
Type | Name | Description |
---|---|---|
string | tableName |
Drops a table.
public static void Drop(IConnectionManager connectionManager, string tableName)
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | The connection manager of the database you want to connect |
string | tableName | Name of the table to drop |
Drops a table.
public static void Drop(string tableName)
Type | Name | Description |
---|---|---|
string | tableName | Name of the table to drop |
Drops a table if the table exists.
public static void DropIfExists(IConnectionManager connectionManager, string tableName)
Type | Name | Description |
---|---|---|
IConnectionManager | connectionManager | The connection manager of the database you want to connect |
string | tableName | Name of the table to drop |
Drops a table if the table exists.
public static void DropIfExists(string tableName)
Type | Name | Description |
---|---|---|
string | tableName | Name of the table to drop |