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