db_helper.cs 579 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Data.SqlClient;
  7. namespace Дол_Восток
  8. {
  9. class db_helper
  10. {
  11. static public SqlConnection sqlConnection = null;
  12. static public void openConnection(ref SqlConnection sqlConnection)
  13. {
  14. sqlConnection = new SqlConnection("Data Source = ngknn.ru; Initial Catalog = Petunenkova_program; Persist Security Info = True; User ID = 31П; Password = 12357");
  15. sqlConnection.Open();
  16. }
  17. }
  18. }