|
AdoDataConnection(IDbConnection, Type, Boolean) Constructor
|
Namespace: GSF.DataAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic AdoDataConnection(
IDbConnection connection,
Type adapterType,
bool disposeConnection
)
Public Sub New (
connection As IDbConnection,
adapterType As Type,
disposeConnection As Boolean
)
public:
AdoDataConnection(
IDbConnection^ connection,
Type^ adapterType,
bool disposeConnection
)
new :
connection : IDbConnection *
adapterType : Type *
disposeConnection : bool -> AdoDataConnection
GSF.Data.AdoDataConnection = function(connection, adapterType, disposeConnection);
View SourceParameters
- connection IDbConnection
- The database connection.
- adapterType Type
- The ADO type used to load data into DataTables.
- disposeConnection Boolean
- True if the database connection should be closed when the AdoDataConnection is disposed; false otherwise.
See Also