12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Data.SqlClient;
- namespace Lebedenko_WS_Winforms
- {
- class DataBase
- {
- SqlConnection sqlConnection = new SqlConnection(@"Data Source=class31000;Initial Catalog=LebedenkoWorldSkills;Integrated Security=True;");
- public void openConnection()
- {
- if (sqlConnection.State == System.Data.ConnectionState.Closed)
- {
- sqlConnection.Open();
- }
- }
- public void closeConnection()
- {
- if (sqlConnection.State == System.Data.ConnectionState.Open)
- {
- sqlConnection.Close();
- }
- }
- public SqlConnection GetConnection()
- {
- return sqlConnection;
- }
- }
- }
|