Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class sqlCon
- {
- protected static SqlConnection sqlCon;
- public static bool connectWithSqlDb()
- {
- sql.sqlConectionInfo.readConData();
- string conString = sql.sqlConectionInfo.prepareConString();
- sqlCon= new SqlConnection(conString);
- try
- {
- sqlCon.Open();
- sqlCon.Close();
- return true;
- }
- catch
- {
- return false;
- }
- }
- }
RAW Paste Data