تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
[C#.NET] مساعدة في التعديل على الكود C# Backup BDD
#1
السلام عليكم ، لذي كود سي شارب يقوم بتحزين معلومات في قاعدة بيانات في 9 جداول ، قمت بعمل كود سيشارب لعمل حفض لجدول واحد في ملف

CSV

كود :
public void BackupCSV()
       {
           string datetime = DateTime.Now.ToString("yyyyMMddHHmmss");
           string LogFolder = @"C:\Log\";
           try
           {

               //Declare Variables and provide values
               string FileNamePart = "DATAFromDGV";//Datetime will be added to it
               string DestinationFolder = @"D:\bdd";
               string TableName = "Dbo.DatafromDGV, Dbo.Calculation";
               string FileDelimiter = ","; //You can provide comma or pipe or whatever you like
               string FileExtension = ".Csv"; //Provide the extension you like such as .txt or .csv


               //Create Connection to SQL Server in which you like to load files
               SqlConnection SQLConnection = new SqlConnection(TheConnectionString);
              // SQLConnection.ConnectionString = "Data Source = (local); Initial Catalog =TechBrothersIT; "
                  //+ "Integrated Security=true;";

               //Read data from table or view to data table
               string query = "Select * From " + TableName;
               SqlCommand cmd = new SqlCommand(query, SQLConnection);
               SQLConnection.Open();
               DataTable d_table = new DataTable();
               d_table.Load(cmd.ExecuteReader());
               SQLConnection.Close();

               //Prepare the file path
               string FileFullPath = DestinationFolder + "\\" + FileNamePart + "_" + datetime + FileExtension;

               StreamWriter sw = null;
               sw = new StreamWriter(FileFullPath, false);

               // Write the Header Row to File
               int ColumnCount = d_table.Columns.Count;
               for (int ic = 0; ic < ColumnCount; ic++)
               {
                   sw.Write(d_table.Columns[ic]);
                   if (ic < ColumnCount - 1)
                   {
                       sw.Write(FileDelimiter);
                   }
               }
               sw.Write(sw.NewLine);

               // Write All Rows to the File
               foreach (DataRow dr in d_table.Rows)
               {
                   for (int ir = 0; ir < ColumnCount; ir++)
                   {
                       if (!Convert.IsDBNull(dr[ir]))
                       {
                           sw.Write(dr[ir].ToString());
                       }
                       if (ir < ColumnCount - 1)
                       {
                           sw.Write(FileDelimiter);
                       }
                   }
                   sw.Write(sw.NewLine);

               }

               sw.Close();

           }
           catch (Exception exception)
           {
               // Create Log File for Errors
               using (StreamWriter sw = File.CreateText(LogFolder
                   + "\\" + "ErrorLog_" + datetime + ".log"))
               {
                   sw.WriteLine(exception.ToString());

               }

           }
       }


اريد عمل نفس الشيء للجداول 9 مع حفضهم في كل مرة في ملف جديد يحمل تاريخ الباكب و يحتوي على 9 ملفات

Csv
لكل الجداول ، هل من مساعدة
الرد }}}
تم الشكر بواسطة:
#2
مساعدة ????
الرد }}}
تم الشكر بواسطة:



التنقل السريع :


يقوم بقرائة الموضوع: بالاضافة الى ( 1 ) ضيف كريم