| FirebirdSQLProviderCreateStoredProcedureCommand Method |
Create a stored procedure execution
Namespace:
SanteDB.OrmLite.Providers.Firebird
Assembly:
SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 2.2.1
Syntax public IDbCommand CreateStoredProcedureCommand(
DataContext context,
string spName,
params Object[] parms
)
Public Function CreateStoredProcedureCommand (
context As DataContext,
spName As String,
ParamArray parms As Object()
) As IDbCommand
public:
virtual IDbCommand^ CreateStoredProcedureCommand(
DataContext^ context,
String^ spName,
... array<Object^>^ parms
) sealed
abstract CreateStoredProcedureCommand :
context : DataContext *
spName : string *
parms : Object[] -> IDbCommand
override CreateStoredProcedureCommand :
context : DataContext *
spName : string *
parms : Object[] -> IDbCommand
Parameters
- context
- Type: SanteDB.OrmLiteDataContext
The context of the command - spName
- Type: SystemString
The stored procedure name - parms
- Type: SystemObject
The parameters to be created
Return Value
Type:
IDbCommandThe constructed command object
Implements
IDbProviderCreateStoredProcedureCommand(DataContext, String, Object)See Also