|
AdoDataConnection(IDbConnection, Type, Boolean) Constructor
|
Namespace: GSF.DataAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
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