| MSStoredProcedure Constructor |
Creates a stored procedure.
Namespace:
Galactic.Sql.MSSql
Assembly:
Galactic.Sql.MSSql (in Galactic.Sql.MSSql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public MSStoredProcedure(
string connectionString,
string procedureName,
EventLog log
)
Public Sub New (
connectionString As String,
procedureName As String,
log As EventLog
)
public:
MSStoredProcedure(
String^ connectionString,
String^ procedureName,
EventLog^ log
)
new :
connectionString : string *
procedureName : string *
log : EventLog -> MSStoredProcedure
Parameters
- connectionString
- Type: SystemString
The connection string for the SQL database to which the procedure belongs. - procedureName
- Type: SystemString
The name of the procedure. - log
- Type: Galactic.EventLogEventLog
An event log to log exceptions to. May be null if no exception logging is desired.
See Also