Enum DriverType
The DriverType is part of a report database information definition, indicating the technology to be used to connect to the database, in .Net version you can choose DotNet or DotNet2 depending on the version you are using. DatabaseInfo
Namespace: Reportman.Reporting
Assembly: Reportman.Reporting.dll
Syntax
public enum DriverType
Fields
| Name | Description |
|---|---|
| ADO | Borland Interface to Microsoft DAO, can access any OleDB (including Microsoft Jet) or ODBC databases. Not available in .Net |
| BDE | Borland Database Engine database driver, can access Paradox,Dbase, and some SQL Databases in native mode. Not available in .Net |
| DBExpress | Borland database driver optimized for using disconnected DataSets. Not available in .Net |
| DotNet | Driver used to connect to databases in .Net 1.x, because no abstraction is provided in .Net 1.x, you must select alse the driver (object instances) to be used. DotNetDriverType Available only in .Net 1.x, deprecated |
| DotNet2 | Driver used to connect to databases in .Net 2.x, it's used with ProviderFactory property inside DatabaseInfo to perform the connectionDatabaseInfo Available only in .Net |
| Firedac | Driver used to connect to databases using Firedac Delphi/C++Buider drivers DatabaseInfo to perform the connectionDatabaseInfo Not Available only in .Net |
| IBO | Database access objects to access Interbase or 4rd databases known as Interbase Objects. Not available in .Net |
| IBX | Borland Interbase Express database driver, can access also Firebird databases. Not available in .Net |
| Mybase | In memory database driver, it can be used to read DataSets into memory for further processing |
| ZEOS | Opensource Database Objects to access multiple sql database technologies (zeoslib). Not available in .Net |