示例#1
0
 public BaseConnector(string providerName, string stringConnection)
     : this()
 {
     Connector = BaseDALConnector.Create(providerName, stringConnection);
     Connector.ThrowExceptions = this.ThrowExceptions;
 }
示例#2
0
 public BaseConnector(string stringConnectionSectionName)
     : this()
 {
     Connector = BaseDALConnector.Create(stringConnectionSectionName);
     Connector.ThrowExceptions = this.ThrowExceptions;
 }
示例#3
0
 public BaseConnector(Connection connection)
     : this()
 {
     Connector = BaseDALConnector.Create(connection.ProviderName, connection.ConnectionString);
     Connector.ThrowExceptions = this.ThrowExceptions;
 }