diff --git a/source code/Test_WinForm/Program.cs b/source code/Test_WinForm/Program.cs index 96e934e..4967ed1 100644 --- a/source code/Test_WinForm/Program.cs +++ b/source code/Test_WinForm/Program.cs @@ -6,8 +6,8 @@ namespace MySqlBackupTestApp { static class Program { - public static string Version = "V1.9"; - public static string DateVersion = "September 22, 2021"; + public static string Version = "V2.3.6"; + public static string DateVersion = "October 17, 2021"; private static string _connectionString = ""; diff --git a/source code/Test_WinForm_DevartExpress/App.config b/source code/Test_WinForm_DevartExpress/App.config index 596b84c..53e5358 100644 --- a/source code/Test_WinForm_DevartExpress/App.config +++ b/source code/Test_WinForm_DevartExpress/App.config @@ -1,18 +1,18 @@ - + - + - - + + - + diff --git a/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.Designer.cs b/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.Designer.cs index 4573cb4..5671320 100644 --- a/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.Designer.cs +++ b/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.Designer.cs @@ -55,6 +55,7 @@ private void InitializeComponent() this.dropBlobExportMode = new System.Windows.Forms.ComboBox(); this.cbAllowBinaryChar = new System.Windows.Forms.CheckBox(); this.cbExportEnableComment = new System.Windows.Forms.CheckBox(); + this.cbExport_InsertLineBreaksBetweenInsert = new System.Windows.Forms.CheckBox(); ((System.ComponentModel.ISupportInitialize)(this.nmExMaxSqlLength)).BeginInit(); this.SuspendLayout(); // @@ -352,12 +353,23 @@ private void InitializeComponent() this.cbExportEnableComment.Text = "Enable Comment"; this.cbExportEnableComment.UseVisualStyleBackColor = true; // + // cbExport_InsertLineBreaksBetweenInsert + // + this.cbExport_InsertLineBreaksBetweenInsert.AutoSize = true; + this.cbExport_InsertLineBreaksBetweenInsert.Location = new System.Drawing.Point(15, 454); + this.cbExport_InsertLineBreaksBetweenInsert.Name = "cbExport_InsertLineBreaksBetweenInsert"; + this.cbExport_InsertLineBreaksBetweenInsert.Size = new System.Drawing.Size(230, 19); + this.cbExport_InsertLineBreaksBetweenInsert.TabIndex = 43; + this.cbExport_InsertLineBreaksBetweenInsert.Text = "Insert Line Breaks Between INSERTs"; + this.cbExport_InsertLineBreaksBetweenInsert.UseVisualStyleBackColor = true; + // // FormExImWithOptions // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.AutoScroll = true; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.ClientSize = new System.Drawing.Size(694, 509); + this.Controls.Add(this.cbExport_InsertLineBreaksBetweenInsert); this.Controls.Add(this.cbExportEnableComment); this.Controls.Add(this.cbAllowBinaryChar); this.Controls.Add(this.dropBlobExportMode); @@ -423,5 +435,6 @@ private void InitializeComponent() private System.Windows.Forms.ComboBox dropBlobExportMode; private System.Windows.Forms.CheckBox cbAllowBinaryChar; private System.Windows.Forms.CheckBox cbExportEnableComment; + private System.Windows.Forms.CheckBox cbExport_InsertLineBreaksBetweenInsert; } } \ No newline at end of file diff --git a/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.cs b/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.cs index d5da538..aa2756c 100644 --- a/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.cs +++ b/source code/Test_WinForm_DevartExpress/FormTestExImWithOptions.cs @@ -80,6 +80,8 @@ private void button_Backup_Click(object sender, EventArgs e) mb.ExportInfo.BlobExportModeForBinaryStringAllow = cbAllowBinaryChar.Checked; + mb.ExportInfo.InsertLineBreakBetweenInserts = cbExport_InsertLineBreaksBetweenInsert.Checked; + mb.ExportToFile(Program.TargetFile); } conn.Close(); diff --git a/source code/Test_WinForm_DevartExpress/Program.cs b/source code/Test_WinForm_DevartExpress/Program.cs index 96e934e..4967ed1 100644 --- a/source code/Test_WinForm_DevartExpress/Program.cs +++ b/source code/Test_WinForm_DevartExpress/Program.cs @@ -6,8 +6,8 @@ namespace MySqlBackupTestApp { static class Program { - public static string Version = "V1.9"; - public static string DateVersion = "September 22, 2021"; + public static string Version = "V2.3.6"; + public static string DateVersion = "October 17, 2021"; private static string _connectionString = ""; diff --git a/source code/Test_WinForm_DevartExpress/Test_WinForm_DevartExpress.csproj b/source code/Test_WinForm_DevartExpress/Test_WinForm_DevartExpress.csproj index 4714cef..c782df9 100644 --- a/source code/Test_WinForm_DevartExpress/Test_WinForm_DevartExpress.csproj +++ b/source code/Test_WinForm_DevartExpress/Test_WinForm_DevartExpress.csproj @@ -8,7 +8,7 @@ WinExe TestApp_DevartExpressMySql TestApp_DevartExpressMySql - v4.8 + v4.5.2 512 true true @@ -37,11 +37,11 @@ logo.ico - - ..\packages\dotConnect.Express.for.MySQL.8.19.1944\lib\Devart.Data.dll + + ..\packages\dotConnect.Express.for.MySQL.8.19.1985\lib\Devart.Data.dll - - ..\packages\dotConnect.Express.for.MySQL.8.19.1944\lib\Devart.Data.MySql.dll + + ..\packages\dotConnect.Express.for.MySQL.8.19.1985\lib\Devart.Data.MySql.dll diff --git a/source code/Test_WinForm_DevartExpress/packages.config b/source code/Test_WinForm_DevartExpress/packages.config index b81c955..1744907 100644 --- a/source code/Test_WinForm_DevartExpress/packages.config +++ b/source code/Test_WinForm_DevartExpress/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/source code/Test_WinForm_MySqlConnector/App.config b/source code/Test_WinForm_MySqlConnector/App.config index 8227adb..a45621e 100644 --- a/source code/Test_WinForm_MySqlConnector/App.config +++ b/source code/Test_WinForm_MySqlConnector/App.config @@ -1,6 +1,26 @@ - + - + + + + + + + + + + + + + + + + + + + + + diff --git a/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.Designer.cs b/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.Designer.cs index a8cb639..4cda1f2 100644 --- a/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.Designer.cs +++ b/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.Designer.cs @@ -55,6 +55,7 @@ private void InitializeComponent() this.dropBlobExportMode = new System.Windows.Forms.ComboBox(); this.cbAllowBinaryChar = new System.Windows.Forms.CheckBox(); this.cbExportEnableComment = new System.Windows.Forms.CheckBox(); + this.cbExport_InsertLineBreaksBetweenInsert = new System.Windows.Forms.CheckBox(); ((System.ComponentModel.ISupportInitialize)(this.nmExMaxSqlLength)).BeginInit(); this.SuspendLayout(); // @@ -352,12 +353,23 @@ private void InitializeComponent() this.cbExportEnableComment.Text = "Enable Comment"; this.cbExportEnableComment.UseVisualStyleBackColor = true; // + // cbExport_InsertLineBreaksBetweenInsert + // + this.cbExport_InsertLineBreaksBetweenInsert.AutoSize = true; + this.cbExport_InsertLineBreaksBetweenInsert.Location = new System.Drawing.Point(15, 454); + this.cbExport_InsertLineBreaksBetweenInsert.Name = "cbExport_InsertLineBreaksBetweenInsert"; + this.cbExport_InsertLineBreaksBetweenInsert.Size = new System.Drawing.Size(230, 19); + this.cbExport_InsertLineBreaksBetweenInsert.TabIndex = 43; + this.cbExport_InsertLineBreaksBetweenInsert.Text = "Insert Line Breaks Between INSERTs"; + this.cbExport_InsertLineBreaksBetweenInsert.UseVisualStyleBackColor = true; + // // FormExImWithOptions // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.AutoScroll = true; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.ClientSize = new System.Drawing.Size(694, 509); + this.Controls.Add(this.cbExport_InsertLineBreaksBetweenInsert); this.Controls.Add(this.cbExportEnableComment); this.Controls.Add(this.cbAllowBinaryChar); this.Controls.Add(this.dropBlobExportMode); @@ -423,5 +435,6 @@ private void InitializeComponent() private System.Windows.Forms.ComboBox dropBlobExportMode; private System.Windows.Forms.CheckBox cbAllowBinaryChar; private System.Windows.Forms.CheckBox cbExportEnableComment; + private System.Windows.Forms.CheckBox cbExport_InsertLineBreaksBetweenInsert; } } \ No newline at end of file diff --git a/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.cs b/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.cs index f0dc4d2..c6323a5 100644 --- a/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.cs +++ b/source code/Test_WinForm_MySqlConnector/FormTestExImWithOptions.cs @@ -80,6 +80,8 @@ private void button_Backup_Click(object sender, EventArgs e) mb.ExportInfo.BlobExportModeForBinaryStringAllow = cbAllowBinaryChar.Checked; + mb.ExportInfo.InsertLineBreakBetweenInserts = cbExport_InsertLineBreaksBetweenInsert.Checked; + mb.ExportToFile(Program.TargetFile); } conn.Close(); diff --git a/source code/Test_WinForm_MySqlConnector/Program.cs b/source code/Test_WinForm_MySqlConnector/Program.cs index 96e934e..4967ed1 100644 --- a/source code/Test_WinForm_MySqlConnector/Program.cs +++ b/source code/Test_WinForm_MySqlConnector/Program.cs @@ -6,8 +6,8 @@ namespace MySqlBackupTestApp { static class Program { - public static string Version = "V1.9"; - public static string DateVersion = "September 22, 2021"; + public static string Version = "V2.3.6"; + public static string DateVersion = "October 17, 2021"; private static string _connectionString = ""; diff --git a/source code/Test_WinForm_MySqlConnector/Test_WinForm_MySqlConnector.csproj b/source code/Test_WinForm_MySqlConnector/Test_WinForm_MySqlConnector.csproj index 4d5b361..db20301 100644 --- a/source code/Test_WinForm_MySqlConnector/Test_WinForm_MySqlConnector.csproj +++ b/source code/Test_WinForm_MySqlConnector/Test_WinForm_MySqlConnector.csproj @@ -44,25 +44,25 @@ ..\packages\MySqlConnector.1.3.13\lib\net45\MySqlConnector.dll - - ..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + + ..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll - - ..\packages\System.Memory.4.5.0\lib\netstandard2.0\System.Memory.dll + + ..\packages\System.Memory.4.5.4\lib\netstandard1.1\System.Memory.dll - - ..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + + ..\packages\System.Numerics.Vectors.4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll - - ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll ..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll - - ..\packages\System.Threading.Tasks.Extensions.4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll + + ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll diff --git a/source code/Test_WinForm_MySqlConnector/packages.config b/source code/Test_WinForm_MySqlConnector/packages.config index 806ea33..fe07994 100644 --- a/source code/Test_WinForm_MySqlConnector/packages.config +++ b/source code/Test_WinForm_MySqlConnector/packages.config @@ -1,12 +1,12 @@  - + - - - - + + + + - + \ No newline at end of file