Esempio n. 1
0
 public FPSQLDal(string server, string database, string user, string password)
 {
     Connection = GenericFactoryHelper.GetSQLServerConnection(server, database, user, password);
 }
Esempio n. 2
0
 public FPSQLDal(string server, string database)
 {
     Connection = GenericFactoryHelper.GetSQLServerConnection(server, database);
 }
Esempio n. 3
0
 public static DbConnectionStringBuilder ConnectionStringBuilder(string providerName)
 {
     return(GenericFactoryHelper.GetFactory(providerName).CreateConnectionStringBuilder());
 }
Esempio n. 4
0
 public FPAccessDal(string dbPath, string password)
 {
     Connection = GenericFactoryHelper.GetAccessConnection(dbPath, password);
 }
Esempio n. 5
0
 public FPSQLCEDal(string dbPath, string password)
 {
     Connection = GenericFactoryHelper.GetSQLCeConnection(dbPath, password);
 }