public static bool CheckSQLServerConnection() { return(TechnicalSettings.UseOnlineMode ? Remoting.CheckSQLServerConnection() : Standard.CheckSQLServerConnection()); }
public static bool CheckSQLDatabaseConnection() { return(Standard.CheckSQLDatabaseConnection()); }
public static void KillSingleton() { Standard.KillSingleton(); _theUniqueInstance = null; }
private ConnectionManager(string pLogin, string pPassword, string pServer, string pDatabase, string pTimeout) { _connectionManager = Standard.GetInstance(pLogin, pPassword, pServer, pDatabase, pTimeout); }
private ConnectionManager(string pTestDb) { _connectionManager = Standard.GetInstance(pTestDb); }
private ConnectionManager() { _connectionManager = Standard.GetInstance(); }
public static bool CheckSQLServerConnection() { return(Standard.CheckSQLServerConnection()); }