DataAccessCreateAdapter Method (String, Hashtable, Boolean) |
Creates a data adapter using the specified select SQL query
Namespace:
WorkflowGen.My.Data
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 8.0.5.0 (8.0.5.20210818)
Syntax public DbDataAdapter CreateAdapter(
string selectQuery,
Hashtable selectQueryParameters,
bool buildActionCommands
)
Public Function CreateAdapter (
selectQuery As String,
selectQueryParameters As Hashtable,
buildActionCommands As Boolean
) As DbDataAdapter
Parameters
- selectQuery
- Type: SystemString
The select SQL query to use - selectQueryParameters
- Type: System.CollectionsHashtable
The collection of parameters to use with the specified select SQL query - buildActionCommands
- Type: SystemBoolean
Determine whether or not the action commands have to be automatically built
Return Value
Type:
DbDataAdapterThe created data adapter
See Also