Class ProviderNames

Namespace
DbExport.Providers
Assembly
DbExport.Api.dll

A static class that contains constant string values representing the names of supported database providers. These names are typically used to identify the specific database provider when configuring database connections or performing database operations.

public static class ProviderNames
Inheritance
ProviderNames
Inherited Members

Fields

ACCESS

A constant string representing the database provider name for Microsoft Access.

public const string ACCESS = "System.Data.OleDb"

Field Value

string

Remarks

This value is typically used in database operations and configuration when connecting to an Access database using the OleDb provider.

DB2

A constant string representing the database provider name for IBM Db2.

public const string DB2 = "IBM.Data.DB2"

Field Value

string

Remarks

This value is used to configure database connections and perform operations when working with an IBM Db2 database using the associated data provider.

FIREBIRD

A constant string representing the database provider name for Firebird.

public const string FIREBIRD = "FirebirdSql.Data.FirebirdClient"

Field Value

string

Remarks

This value is used in database operations and configuration when connecting to a Firebird database using the Firebird ADO.NET provider.

MYSQL

A constant string representing the database provider name for MySQL.

public const string MYSQL = "MySqlConnector"

Field Value

string

Remarks

This value is typically used in database operations and configuration when connecting to a MySQL database using the MySqlConnector library.

ORACLE

A constant string representing the database provider name for Oracle using the Oracle Managed Data Access client.

public const string ORACLE = "Oracle.ManagedDataAccess.Client"

Field Value

string

Remarks

This value is commonly used for database operations and configuration when connecting to an Oracle database via the Oracle.ManagedDataAccess.Client library.

POSTGRESQL

A constant string representing the database provider name for PostgreSQL.

public const string POSTGRESQL = "Npgsql"

Field Value

string

Remarks

This value is commonly used in database operations and configuration when connecting to a PostgreSQL database using the Npgsql provider.

SQLITE

A constant string representing the database provider name for SQLite.

public const string SQLITE = "System.Data.SQLite"

Field Value

string

Remarks

This value is commonly used in database-related operations and configuration for identifying or connecting to a SQLite database.

SQLSERVER

A constant string representing the database provider name for Microsoft SQL Server.

public const string SQLSERVER = "Microsoft.Data.SqlClient"

Field Value

string

Remarks

This value is commonly used for identifying Microsoft SQL Server as the target database in various database operations, configurations, or code generation tasks.