DbDatabaseRunQuery Method (String, String, IDataParameter, String) | 
 
            Runs a query, returning an SqlResultSet containing the result of the query.
            
 
    Namespace: 
   Cadcorp.DataAccess
    Assembly:
   Cadcorp.GFB.DataAccess (in Cadcorp.GFB.DataAccess.dll) Version: 9.0.2618.0 (9.0.2618.0)
Syntaxprotected DbResultSet RunQuery(
	string connectionString,
	string query,
	IDataParameter[] parameters,
	string provider
)
Protected Function RunQuery ( 
	connectionString As String,
	query As String,
	parameters As IDataParameter(),
	provider As String
) As DbResultSet
Parameters
- connectionString
 - Type: SystemString
String defining the database connection - query
 - Type: SystemString
[Missing <param name="query"/> documentation for "M:Cadcorp.DataAccess.DbDatabase.RunQuery(System.String,System.String,System.Data.IDataParameter[],System.String)"]
 - parameters
 - Type: System.DataIDataParameter
Array of IDataParameter objects containing parameters to the query - provider
 - Type: SystemString
[Missing <param name="provider"/> documentation for "M:Cadcorp.DataAccess.DbDatabase.RunQuery(System.String,System.String,System.Data.IDataParameter[],System.String)"]
 
Return Value
Type: 
DbResultSetA newly instantiated SqlResultSet object
See Also