Class SQLiteConnectionString
A helper class for encapsulating a conection string in an object. Internally the SQLiteConnectionStringBuilder is used to access the values of the given connection string.
Inheritance
System.Object
SQLiteConnectionString
Implements
Inherited Members
DbConnectionString<SQLiteConnectionString, SQLiteConnectionStringBuilder>.CloneWithNewDbName(String)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ETLBox.Connection
Assembly: ETLBox.SQLite.dll
Syntax
public class SQLiteConnectionString : DbConnectionString<SQLiteConnectionString, SQLiteConnectionStringBuilder>, IDbConnectionString
Constructors
SQLiteConnectionString()
Declaration
public SQLiteConnectionString()
SQLiteConnectionString(String)
Declaration
public SQLiteConnectionString(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value |
Properties
DbName
The database name
Declaration
public override string DbName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
ETLBox.Connection.DbConnectionString<ETLBox.Connection.SQLiteConnectionString, System.Data.SQLite.SQLiteConnectionStringBuilder>.DbName
DbNameKeyword
The keyword used in the connection string to identify a database
Declaration
protected override string DbNameKeyword { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
ETLBox.Connection.DbConnectionString<ETLBox.Connection.SQLiteConnectionString, System.Data.SQLite.SQLiteConnectionStringBuilder>.DbNameKeyword
MasterDbName
The name of the master database (if applicable)
Declaration
public override string MasterDbName { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
ETLBox.Connection.DbConnectionString<ETLBox.Connection.SQLiteConnectionString, System.Data.SQLite.SQLiteConnectionStringBuilder>.MasterDbName
Operators
Implicit(String to SQLiteConnectionString)
Declaration
public static implicit operator SQLiteConnectionString(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value |
Returns
Type | Description |
---|---|
SQLiteConnectionString |