Advertisement
riste5

Connection.cs

Nov 16th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.82 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data.SqlClient;
  4. using System.Linq;
  5. using System.Runtime.CompilerServices;
  6. using System.Runtime.InteropServices;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9.  
  10. namespace Hotel_Management_System
  11. {
  12.     internal class DatabaseConnection :IDatabase
  13.     {
  14.         private SqlConnection conn = new SqlConnection("Data Source=DESKTOP-BHPJ89K\\SQLExpress;Initial Catalog=hotel;Integrated Security=True;TrustServerCertificate=True");
  15.         public void openConnection()
  16.         {
  17.             if(this.conn.State == System.Data.ConnectionState.Closed)
  18.             {
  19.                 this.conn.Open();
  20.             }
  21.         }
  22.         public bool getConnectionState()
  23.         {
  24.             switch (this.conn.State)
  25.             {
  26.                 case System.Data.ConnectionState.Open:
  27.                     return true;
  28.                 default:
  29.                     return false;
  30.             }
  31.         }
  32.         public void closeConnection()
  33.         {
  34.             using (SqlConnection conn = this.getConnection())
  35.             {
  36.                 if(this.conn.State == System.Data.ConnectionState.Open)
  37.                 {
  38.                     this.conn.Close();
  39.                 }
  40.             }
  41.         }
  42.         public SqlConnection getConnection()
  43.         {
  44.             return this.conn;
  45.         }
  46.         public SqlCommand executeCommand(string command)
  47.         {
  48.             using (SqlConnection connection = this.conn)
  49.             {
  50.                 if(connection.State == System.Data.ConnectionState.Closed)
  51.                 {
  52.                     this.openConnection();
  53.                 }
  54.                 using(SqlCommand cmd =  new SqlCommand(command, conn))
  55.                 {
  56.                     return cmd;
  57.                 }
  58.             }
  59.         }
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement