| OracleStoredProcedure Constructor |
Creates a stored procedure.
Namespace:
Galactic.Sql.Oracle
Assembly:
Galactic.Sql.Oracle (in Galactic.Sql.Oracle.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public OracleStoredProcedure(
string connectionString,
string procedureName,
EventLog log
)
Public Sub New (
connectionString As String,
procedureName As String,
log As EventLog
)
public:
OracleStoredProcedure(
String^ connectionString,
String^ procedureName,
EventLog^ log
)
new :
connectionString : string *
procedureName : string *
log : EventLog -> OracleStoredProcedure
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