Title here
Summary here
A helper class for encapsulating a connection string to a Snowflake server in an object. Internally the SnowflakeDbConnectionStringBuilder is used to access the values of the given connection string.
public class SnowflakeConnectionString : DbConnectionString<SnowflakeConnectionString, SnowflakeDbConnectionStringBuilder>, IDbConnectionString
public SnowflakeConnectionString()
public SnowflakeConnectionString(string value)
Type | Name | Description |
---|---|---|
string | value |
The database name
public override string DbName { get; set; }
Type | Description |
---|---|
string |
The keyword used in the connection string to identify a database
protected override string DbNameKeyword { get; }
Type | Description |
---|---|
string |
The name of the master database (if applicable)
public override string MasterDbName { get; }
Type | Description |
---|---|
string |
Clones the current connection string with the master database name (if applicable)
public override SnowflakeConnectionString CloneWithMasterDbName()
Type | Description |
---|---|
SnowflakeConnectionString | The new connection string with master database name |
public static implicit operator SnowflakeConnectionString(string value)
Type | Name | Description |
---|---|---|
string | value |
Type | Description |
---|---|
SnowflakeConnectionString |