コード例 #1
0
ファイル: FPSQLDal.cs プロジェクト: timocare/fplibrary
 public FPSQLDal(string server, string database, string user, string password)
 {
     Connection = GenericFactoryHelper.GetSQLServerConnection(server, database, user, password);
 }
コード例 #2
0
ファイル: FPSQLDal.cs プロジェクト: timocare/fplibrary
 public FPSQLDal(string server, string database)
 {
     Connection = GenericFactoryHelper.GetSQLServerConnection(server, database);
 }
コード例 #3
0
 public static DbConnectionStringBuilder ConnectionStringBuilder(string providerName)
 {
     return(GenericFactoryHelper.GetFactory(providerName).CreateConnectionStringBuilder());
 }
コード例 #4
0
 public FPAccessDal(string dbPath, string password)
 {
     Connection = GenericFactoryHelper.GetAccessConnection(dbPath, password);
 }
コード例 #5
0
ファイル: FPSQLCEDal.cs プロジェクト: timocare/fplibrary
 public FPSQLCEDal(string dbPath, string password)
 {
     Connection = GenericFactoryHelper.GetSQLCeConnection(dbPath, password);
 }