Method | Description | |
---|---|---|
CreateLogin ( string loginName ) : void | ||
CreateLogin ( string loginName, string password ) : void | ||
ExecuteScript ( IDbConnection connection, string fileName ) : void |
Executes a database script using the given connection.
|
|
ExecuteScript ( string scriptPath ) : void |
Executes a SQL script using the SQL Server database engine.
|
|
ExecuteStatement ( string statement ) : void | ||
GrantDatabaseAccess ( string loginName ) : void | ||
OpenConnection ( IDbConnection &connection ) : void | ||
SqlServerSetup ( ) : System |
Creates a new instance of the MySqlSetup class.
|
public CreateLogin ( string loginName ) : void | ||
loginName | string | |
return | void |
public CreateLogin ( string loginName, string password ) : void | ||
loginName | string | |
password | string | |
return | void |
public ExecuteScript ( IDbConnection connection, string fileName ) : void | ||
connection | IDbConnection | The connection to be used to execute the script. |
fileName | string | The path to the script to be executed. |
return | void |
public ExecuteScript ( string scriptPath ) : void | ||
scriptPath | string | The path to the SQL Server script to be executed. |
return | void |
public ExecuteStatement ( string statement ) : void | ||
statement | string | |
return | void |
public GrantDatabaseAccess ( string loginName ) : void | ||
loginName | string | |
return | void |
public OpenConnection ( IDbConnection &connection ) : void | ||
connection | IDbConnection | |
return | void |