DbDatabaseRunProcedure Method (String, String, IDataParameter, DataSet, String, String) | 
 
            Takes an existing DataSet and fills the given table name with the results 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)
Syntaxprotected void RunProcedure(
	string connectionString,
	string storedProcName,
	IDataParameter[] parameters,
	DataSet dataSet,
	string tableName,
	string provider
)
Protected Sub RunProcedure ( 
	connectionString As String,
	storedProcName As String,
	parameters As IDataParameter(),
	dataSet As DataSet,
	tableName As String,
	provider As String
)
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 - dataSet
 - Type: System.DataDataSet
The existing DataSet to be filled - tableName
 - Type: SystemString
Name to use for the table in the DataSet - provider
 - Type: SystemString
[Missing <param name="provider"/> documentation for "M:Cadcorp.DataAccess.DbDatabase.RunProcedure(System.String,System.String,System.Data.IDataParameter[],System.Data.DataSet,System.String,System.String)"]
 
See Also