| DataAccessCreateAdapter Method (String, Hashtable, Boolean) | 
            Creates a data adpater using the specified select SQL query
            
 
Namespace: WorkflowGen.My.DataAssembly: WorkflowGen.My (in WorkflowGen.My.dll) Version: 3.3.0.0 (3.3.0.0)
Syntaxpublic DbDataAdapter CreateAdapter(
	string selectQuery,
	Hashtable selectQueryParameters,
	bool buidActionCommands
)
Public Function CreateAdapter ( 
	selectQuery As String,
	selectQueryParameters As Hashtable,
	buidActionCommands 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 - buidActionCommands
 - Type: SystemBoolean
Determine whether or not the action commands have to be automatically built 
Return Value
Type: 
DbDataAdapterThe created data adapter
See Also