Revert "Added a check for the DB and a delay at start up if the database is not available (#148)"

This reverts commit f9d6cc4bdc.
This commit is contained in:
Michael Green
2023-10-11 16:09:55 +11:00
parent 0e125d42ec
commit e4cffb6fb4
2 changed files with 1 additions and 43 deletions

View File

@@ -206,18 +206,6 @@ namespace gaseous_tools
}
}
public bool TestConnection()
{
switch (_ConnectorType)
{
case databaseType.MySql:
MySQLServerConnector conn = new MySQLServerConnector(_ConnectionString);
return conn.TestConnection();
default:
return false;
}
}
public class SQLTransactionItem
{
public SQLTransactionItem()
@@ -326,20 +314,6 @@ namespace gaseous_tools
return cmd;
}
public bool TestConnection()
{
MySqlConnection conn = new MySqlConnection(DBConn);
try
{
conn.Open();
conn.Close();
return true;
}
catch
{
return false;
}
}
}
}
}