How to get backup and restore in c# windows application sql server, in 2 STEPS

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ธ.ค. 2024

ความคิดเห็น • 16

  • @fahamarahmani7223
    @fahamarahmani7223 3 ปีที่แล้ว +9

    where is DB_genral class? please show that class also , don't post incomplete tutorail

  • @condor1redec
    @condor1redec ปีที่แล้ว +1

    Hello Are you okay
    I learned a lot from this video, I wanted to take advantage and ask how can it be done to use a progressbar when using the restore and backup buttons?
    congratulations for the content, top!!👏👏👏👏

  • @DotNet_Jungle
    @DotNet_Jungle 5 หลายเดือนก่อน

    where is DB_Connection class?

  • @neimaawais4433
    @neimaawais4433 2 ปีที่แล้ว +2

    create folder within ur project named "My_Classes" then create the class inside this folder named"DB_General".

  • @safitech9848
    @safitech9848  3 ปีที่แล้ว +3

    -----------Here is the DBGeneral class-----------
    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Data.SqlClient;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ProjectName.My_Classes
    {
    class DB_General:DB_Connection
    {
    public SqlCommand CMD;
    public DB_General()
    {
    CMD = new SqlCommand();
    CMD.Connection = conn;
    }
    //Insert, Update And Delete...
    public void general_query(string query)
    {
    Open_Connection();
    CMD.CommandText = query;
    CMD.ExecuteNonQuery();
    Close_Connection();
    }
    public DataTable MyTable(string query)
    {
    Open_Connection();
    CMD.CommandText = query;
    SqlDataAdapter myAdapter = new SqlDataAdapter(CMD);
    DataTable mytbl = new DataTable();
    myAdapter.Fill(mytbl);
    return mytbl;
    }
    }
    }

  • @omerhazim9717
    @omerhazim9717 3 ปีที่แล้ว

    well done but where is dbgenral class please

    • @safitech9848
      @safitech9848  3 ปีที่แล้ว +1

      Check the new comment.

    • @fahamarahmani7223
      @fahamarahmani7223 3 ปีที่แล้ว

      @@safitech9848 where is the class i can't find it please put that class also

  • @muhammadafzal237
    @muhammadafzal237 3 ปีที่แล้ว

    What is myClasses.DbGeneral

  • @toobariaz8890
    @toobariaz8890 3 ปีที่แล้ว

    where is db_general?

  • @bestchoice3784
    @bestchoice3784 3 ปีที่แล้ว

    where's db_general

  • @abdihakimali4937
    @abdihakimali4937 3 ปีที่แล้ว

    Where is Db_genral bro

  • @worldfreshnews1267
    @worldfreshnews1267 3 ปีที่แล้ว

    thank you