Class OdbcConnectionString

A helper class for encapsulating a conection string in an object. Internally the OdbcConnectionStringBuilder is used to access the values of the given connection string.

Namespace: ETLBox.Odbc
Assembly: ETLBox.Odbc.dll
Syntax
    public class OdbcConnectionString : DbConnectionString<OdbcConnectionString, OdbcConnectionStringBuilder>, IDbConnectionString

Constructors

OdbcConnectionString()

Declaration
    public OdbcConnectionString()

OdbcConnectionString(string)

Declaration
    public OdbcConnectionString(string value)
Parameters
TypeNameDescription
stringvalue

Properties

DbName

The database name

Declaration
    public override string DbName { get; set; }
Property Value
TypeDescription
string
Overrides
ETLBox.DbConnectionString<ETLBox.Odbc.OdbcConnectionString, System.Data.Odbc.OdbcConnectionStringBuilder>.DbName

DbNameKeyword

The keyword used in the connection string to identify a database

Declaration
    protected override string DbNameKeyword { get; }
Property Value
TypeDescription
string
Overrides
ETLBox.DbConnectionString<ETLBox.Odbc.OdbcConnectionString, System.Data.Odbc.OdbcConnectionStringBuilder>.DbNameKeyword

MasterDbName

The name of the master database (if applicable)

Declaration
    public override string MasterDbName { get; }
Property Value
TypeDescription
string
Overrides
ETLBox.DbConnectionString<ETLBox.Odbc.OdbcConnectionString, System.Data.Odbc.OdbcConnectionStringBuilder>.MasterDbName

Operators

implicit operator OdbcConnectionString(string)

Declaration
    public static implicit operator OdbcConnectionString(string value)
Parameters
TypeNameDescription
stringvalue
Returns
TypeDescription
OdbcConnectionString

Implements