Click or drag to resize

DbDatabaseRunProcedure Method (String, String, IDataParameter, String)

Runs a stored procedure, returning an SqlResultSet containing the result of the stored procedure.

Namespace:  Cadcorp.DataAccess
Assembly:  Cadcorp.GFB.DataAccess (in Cadcorp.GFB.DataAccess.dll) Version: 9.0.2618.0 (9.0.2618.0)
Syntax
protected DbResultSet RunProcedure(
	string connectionString,
	string storedProcName,
	IDataParameter[] parameters,
	string provider
)

Parameters

connectionString
Type: SystemString
String defining the database connection
storedProcName
Type: SystemString
Name of the stored procedure
parameters
Type: System.DataIDataParameter
Array of IDataParameter objects containing parameters to the stored procedure
provider
Type: SystemString

[Missing <param name="provider"/> documentation for "M:Cadcorp.DataAccess.DbDatabase.RunProcedure(System.String,System.String,System.Data.IDataParameter[],System.String)"]

Return Value

Type: DbResultSet
A newly instantiated SqlResultSet object
See Also