DataAccessCreateAdapter Method (String, String, String, String) |
Creates a data adapter using the specified actions SQL queries
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,
string insertQuery,
string updateQuery,
string deleteQuery
)
Public Function CreateAdapter (
selectQuery As String,
insertQuery As String,
updateQuery As String,
deleteQuery As String
) As DbDataAdapter
Parameters
- selectQuery
- Type: SystemString
The select SQL query to use - insertQuery
- Type: SystemString
The insert SQL query to use - updateQuery
- Type: SystemString
The update SQL query to use - deleteQuery
- Type: SystemString
The delete SQL query to use
Return Value
Type:
DbDataAdapterThe created data adapter
See Also