diff --git a/CNAS_DBSync/SourceSettingTextBoxDecrible.cs b/CNAS_DBSync/SourceSettingTextBoxDecrible.cs index 77c79eb..1c66a19 100644 --- a/CNAS_DBSync/SourceSettingTextBoxDecrible.cs +++ b/CNAS_DBSync/SourceSettingTextBoxDecrible.cs @@ -58,6 +58,11 @@ namespace CNAS_DBSync public static string txtNormalFileNameFormat_Decrible = "请输入类似于yyyyMMdd样式内容"; public static string txtNormalFileReadDataMode_Decrible = "请输入读取规则选型"; public static string txtNormalFileSuffix_Decrible = "请输入文件后缀名"; - public static string txtNormalFileReadSplitMode_Decrible = "请输入文件分割每个数据行的依据。0代表“ ”,1代表“\t”,2代表0和1的集合"; + public static string txtNormalFileReadSplitMode_Decrible = "请输入文件分割每个数据行的依据。0代表1代表,2代表0和1的集合"; + + /*PostgreSQL配置界面中参数*/ + public static string txtPostgreSqlSpecialDateColumnFormat_Decrible = "请输入类似于yyyyMMdd样式内容"; + public static string txtPostgreSqlAutoSqlName_Decrible = "请定义一个自定义查询的名称或描述"; + public static string txtPostgreSqlAutoSql_Decrible = "请输入自定义查询的sql语句"; } } diff --git a/CNAS_DBSync/frmSourceSetting.Designer.cs b/CNAS_DBSync/frmSourceSetting.Designer.cs index 6990799..3272b3a 100644 --- a/CNAS_DBSync/frmSourceSetting.Designer.cs +++ b/CNAS_DBSync/frmSourceSetting.Designer.cs @@ -129,6 +129,12 @@ this.label28 = new System.Windows.Forms.Label(); this.txtNormalFileSpecialDateColumnFormat = new System.Windows.Forms.TextBox(); this.pnlAll = new System.Windows.Forms.Panel(); + this.tabPostgreSql = new System.Windows.Forms.TabPage(); + this.lblPostgreSql = new System.Windows.Forms.Label(); + this.txtPostgreSqlAutoSqlName = new System.Windows.Forms.TextBox(); + this.txtPostgreSqlAutoSql = new System.Windows.Forms.TextBox(); + this.lblPostgreSqlDateFormat = new System.Windows.Forms.Label(); + this.txtPostgreSqlSpecialDateColumnFormat = new System.Windows.Forms.TextBox(); this.pnlBottom.SuspendLayout(); this.pnlCenter.SuspendLayout(); this.tabcDS.SuspendLayout(); @@ -140,6 +146,7 @@ this.tabMySql.SuspendLayout(); this.tabOracle.SuspendLayout(); this.tabTxt.SuspendLayout(); + this.tabPostgreSql.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numNormalFileStartIndex)).BeginInit(); this.pnlAll.SuspendLayout(); this.SuspendLayout(); @@ -190,6 +197,7 @@ this.tabcDS.Controls.Add(this.tabMySql); this.tabcDS.Controls.Add(this.tabOracle); this.tabcDS.Controls.Add(this.tabTxt); + this.tabcDS.Controls.Add(this.tabPostgreSql); this.tabcDS.Dock = System.Windows.Forms.DockStyle.Fill; this.tabcDS.Location = new System.Drawing.Point(0, 0); this.tabcDS.Name = "tabcDS"; @@ -1217,6 +1225,67 @@ this.pnlAll.Size = new System.Drawing.Size(1182, 543); this.pnlAll.TabIndex = 1; // + // tabPostgreSql + // + this.tabPostgreSql.Controls.Add(this.lblPostgreSql); + this.tabPostgreSql.Controls.Add(this.txtPostgreSqlAutoSqlName); + this.tabPostgreSql.Controls.Add(this.txtPostgreSqlAutoSql); + this.tabPostgreSql.Controls.Add(this.lblPostgreSqlDateFormat); + this.tabPostgreSql.Controls.Add(this.txtPostgreSqlSpecialDateColumnFormat); + this.tabPostgreSql.Location = new System.Drawing.Point(4, 33); + this.tabPostgreSql.Name = "tabPostgreSql"; + this.tabPostgreSql.Size = new System.Drawing.Size(1174, 454); + this.tabPostgreSql.TabIndex = 8; + this.tabPostgreSql.Text = "PostgreSQL"; + this.tabPostgreSql.UseVisualStyleBackColor = true; + // + // lblPostgreSql + // + this.lblPostgreSql.AutoSize = true; + this.lblPostgreSql.Location = new System.Drawing.Point(99, 60); + this.lblPostgreSql.Name = "lblPostgreSql"; + this.lblPostgreSql.Size = new System.Drawing.Size(154, 24); + this.lblPostgreSql.TabIndex = 86; + this.lblPostgreSql.Text = "自定义查询语句:"; + // + // txtPostgreSqlAutoSqlName + // + this.txtPostgreSqlAutoSqlName.Location = new System.Drawing.Point(207, 57); + this.txtPostgreSqlAutoSqlName.Name = "txtPostgreSqlAutoSqlName"; + this.txtPostgreSqlAutoSqlName.Size = new System.Drawing.Size(230, 31); + this.txtPostgreSqlAutoSqlName.TabIndex = 84; + this.txtPostgreSqlAutoSqlName.Enter += new System.EventHandler(this.txtPostgreSqlAutoSqlName_Enter); + this.txtPostgreSqlAutoSqlName.Leave += new System.EventHandler(this.txtPostgreSqlAutoSqlName_Leave); + // + // txtPostgreSqlAutoSql + // + this.txtPostgreSqlAutoSql.Location = new System.Drawing.Point(207, 89); + this.txtPostgreSqlAutoSql.Multiline = true; + this.txtPostgreSqlAutoSql.Name = "txtPostgreSqlAutoSql"; + this.txtPostgreSqlAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.txtPostgreSqlAutoSql.Size = new System.Drawing.Size(844, 339); + this.txtPostgreSqlAutoSql.TabIndex = 85; + this.txtPostgreSqlAutoSql.Enter += new System.EventHandler(this.txtPostgreSqlAutoSql_Enter); + this.txtPostgreSqlAutoSql.Leave += new System.EventHandler(this.txtPostgreSqlAutoSql_Leave); + // + // lblPostgreSqlDateFormat + // + this.lblPostgreSqlDateFormat.AutoSize = true; + this.lblPostgreSqlDateFormat.Location = new System.Drawing.Point(97, 25); + this.lblPostgreSqlDateFormat.Name = "lblPostgreSqlDateFormat"; + this.lblPostgreSqlDateFormat.Size = new System.Drawing.Size(154, 24); + this.lblPostgreSqlDateFormat.TabIndex = 80; + this.lblPostgreSqlDateFormat.Text = "日期列特殊格式:"; + // + // txtPostgreSqlSpecialDateColumnFormat + // + this.txtPostgreSqlSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 22); + this.txtPostgreSqlSpecialDateColumnFormat.Name = "txtPostgreSqlSpecialDateColumnFormat"; + this.txtPostgreSqlSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31); + this.txtPostgreSqlSpecialDateColumnFormat.TabIndex = 81; + this.txtPostgreSqlSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtPostgreSqlSpecialDateColumnFormat_Enter); + this.txtPostgreSqlSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtPostgreSqlSpecialDateColumnFormat_Leave); + // // frmSourceSetting // this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F); @@ -1252,6 +1321,8 @@ this.tabOracle.PerformLayout(); this.tabTxt.ResumeLayout(false); this.tabTxt.PerformLayout(); + this.tabPostgreSql.ResumeLayout(false); + this.tabPostgreSql.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numNormalFileStartIndex)).EndInit(); this.pnlAll.ResumeLayout(false); this.ResumeLayout(false); @@ -1263,7 +1334,6 @@ private System.Windows.Forms.Panel pnlBottom; private System.Windows.Forms.Panel pnlTop; private System.Windows.Forms.Panel pnlCenter; - private System.Windows.Forms.Panel pnlAll; private System.Windows.Forms.TabControl tabcDS; private System.Windows.Forms.TabPage tabExcel; private System.Windows.Forms.Label label22; @@ -1334,6 +1404,15 @@ private System.Windows.Forms.TextBox txtMySqlAutoSql; private System.Windows.Forms.Label label18; private System.Windows.Forms.TextBox txtMySqlSpecialDateColumnFormat; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.TextBox txtOracleAutoSqlName; + private System.Windows.Forms.TextBox txtOracleAutoSql; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.TextBox txtOracleSpecialDateColumnFormat; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.TextBox txtNormalFileReadSplitMode; private System.Windows.Forms.Label label30; private System.Windows.Forms.TextBox txtNormalFileReadDataMode; private System.Windows.Forms.Label label29; @@ -1347,17 +1426,15 @@ private System.Windows.Forms.TextBox txtNormalFileSpecialDateColumnFormat; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtAccessSuffix; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.TextBox txtOracleAutoSqlName; - private System.Windows.Forms.TextBox txtOracleAutoSql; - private System.Windows.Forms.Label label10; - private System.Windows.Forms.TextBox txtOracleSpecialDateColumnFormat; - private System.Windows.Forms.Label label20; - private System.Windows.Forms.Label label19; - private System.Windows.Forms.Label label17; - private System.Windows.Forms.TextBox txtNormalFileReadSplitMode; - private System.Windows.Forms.CheckBox cbxNormalFileNoCustomDate; - private System.Windows.Forms.CheckBox cbxNormalFileCustomDate; + private System.Windows.Forms.Panel pnlAll; + private System.Windows.Forms.TabPage tabPostgreSql; + private System.Windows.Forms.Label lblPostgreSql; + private System.Windows.Forms.TextBox txtPostgreSqlAutoSqlName; + private System.Windows.Forms.TextBox txtPostgreSqlAutoSql; + private System.Windows.Forms.Label lblPostgreSqlDateFormat; + private System.Windows.Forms.TextBox txtPostgreSqlSpecialDateColumnFormat; private System.Windows.Forms.NumericUpDown numNormalFileStartIndex; + private System.Windows.Forms.CheckBox cbxNormalFileCustomDate; + private System.Windows.Forms.CheckBox cbxNormalFileNoCustomDate; } } \ No newline at end of file diff --git a/CNAS_DBSync/frmSourceSetting.cs b/CNAS_DBSync/frmSourceSetting.cs index e59484b..fde0943 100644 --- a/CNAS_DBSync/frmSourceSetting.cs +++ b/CNAS_DBSync/frmSourceSetting.cs @@ -21,9 +21,11 @@ namespace CNAS_DBSync public OracleFormatConfig OracleFormat { get; set; } public MySqlFormatConfig MySqlFormat { get; set; } public NormalFileFormatConfig NormalFileFormat { get; set; } + public PostgreSqlFormatConfig PostgreSqlFormat { get; set; } //用来记录tablepage是否加载过,如果没有加载过,存储时不做处理 - private List lstLoadingSource = new List(); + private List lstLoadingSource = new List(); + public frmSourceSetting() { @@ -43,6 +45,7 @@ namespace CNAS_DBSync OracleFormat = FileOperation.GetFormatConfigData("OracleFormatConfig.xml"); MySqlFormat = FileOperation.GetFormatConfigData("MySqlFormatConfig.xml"); NormalFileFormat = FileOperation.GetFormatConfigData("NormalFileFormatConfig.xml"); + PostgreSqlFormat = FileOperation.GetFormatConfigData("PostgreSqlFormatConfig.xml"); //默认加载第一个tablepage LoadExcelControlData(); @@ -84,6 +87,10 @@ namespace CNAS_DBSync //切换到Txt时的操作 LoadNormalFileControlData(); break; + case 8: + //切换到PostgreSQL时的操作 + LoadPostgreSqlControlData(); + break; } } @@ -253,6 +260,19 @@ namespace CNAS_DBSync if (!lstLoadingSource.Contains("ExcelFormat")) lstLoadingSource.Add("ExcelFormat"); } + private void LoadPostgreSqlControlData() + { + this.txtPostgreSqlSpecialDateColumnFormat.Text = PostgreSqlFormat.PostgreSqlFileDateColumnFormat ?? ""; + this.txtPostgreSqlAutoSqlName.Text = PostgreSqlFormat.AutoSql != null ? PostgreSqlFormat.AutoSql.PostgreSqlViewName : ""; + this.txtPostgreSqlAutoSql.Text = PostgreSqlFormat.AutoSql != null ? PostgreSqlFormat.AutoSql.PostgreSqlViewSql : ""; + + DefaultTextBoxShowLeaveValue(txtPostgreSqlSpecialDateColumnFormat, SourceSettingTextBoxDecrible.txtPostgreSqlSpecialDateColumnFormat_Decrible); + DefaultTextBoxShowLeaveValue(txtPostgreSqlAutoSqlName, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSqlName_Decrible); + DefaultTextBoxShowLeaveValue(txtPostgreSqlAutoSql, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSql_Decrible); + + if (!lstLoadingSource.Contains("PostgreSqlFormat")) lstLoadingSource.Add("PostgreSqlFormat"); + } + private void DefaultTextBoxShowLeaveValue(TextBox textBox, string strValue) { if (textBox.Text.Length == 0) @@ -316,6 +336,11 @@ namespace CNAS_DBSync bSaveSuccess = FileOperation.SaveFormatConfigData(NormalFileFormat, "NormalFileFormatConfig.xml"); count = bSaveSuccess ? count : count + 1; } + if (PostgreSqlFormatChanged()) + { + bSaveSuccess = FileOperation.SaveFormatConfigData(PostgreSqlFormat, "PostgreSqlFormatConfig.xml"); + count = bSaveSuccess ? count : count + 1; + } MessageBox.Show(count == 0 ? "保存成功" : "保存失败!"); } @@ -465,6 +490,19 @@ namespace CNAS_DBSync return bIfChanged; } + private bool PostgreSqlFormatChanged() + { + bool bIfChanged = false; + + if (!lstLoadingSource.Contains("PostgreSqlFormat")) return bIfChanged; + + PostgreSqlFormat.PostgreSqlFileDateColumnFormat = TextBoxChangedValue(PostgreSqlFormat.PostgreSqlFileDateColumnFormat, txtPostgreSqlSpecialDateColumnFormat, SourceSettingTextBoxDecrible.txtPostgreSqlSpecialDateColumnFormat_Decrible, ref bIfChanged); + PostgreSqlFormat.AutoSql.PostgreSqlViewName = TextBoxChangedValue(PostgreSqlFormat.AutoSql.PostgreSqlViewName, txtPostgreSqlAutoSqlName, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSqlName_Decrible, ref bIfChanged); + PostgreSqlFormat.AutoSql.PostgreSqlViewSql = TextBoxChangedValue(PostgreSqlFormat.AutoSql.PostgreSqlViewSql, txtPostgreSqlAutoSql, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSql_Decrible, ref bIfChanged); + + return bIfChanged; + } + private string TextBoxChangedValue(string strClassValue,TextBox textBox,string strDetailValue,ref bool bIfChanged) { string strNewValue = ""; @@ -962,6 +1000,40 @@ namespace CNAS_DBSync #endregion + #region PostgreSQL界面事件 + + private void txtPostgreSqlSpecialDateColumnFormat_Leave(object sender, EventArgs e) + { + DefaultTextBoxShowLeaveValue(txtPostgreSqlSpecialDateColumnFormat, SourceSettingTextBoxDecrible.txtPostgreSqlSpecialDateColumnFormat_Decrible); + } + + private void txtPostgreSqlSpecialDateColumnFormat_Enter(object sender, EventArgs e) + { + DefaultTextBoxShowEnterValue(txtPostgreSqlSpecialDateColumnFormat, SourceSettingTextBoxDecrible.txtPostgreSqlSpecialDateColumnFormat_Decrible); + } + + private void txtPostgreSqlAutoSqlName_Leave(object sender, EventArgs e) + { + DefaultTextBoxShowLeaveValue(txtPostgreSqlAutoSqlName, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSqlName_Decrible); + } + + private void txtPostgreSqlAutoSqlName_Enter(object sender, EventArgs e) + { + DefaultTextBoxShowEnterValue(txtPostgreSqlAutoSqlName, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSqlName_Decrible); + } + + private void txtPostgreSqlAutoSql_Leave(object sender, EventArgs e) + { + DefaultTextBoxShowLeaveValue(txtPostgreSqlAutoSql, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSql_Decrible); + } + + private void txtPostgreSqlAutoSql_Enter(object sender, EventArgs e) + { + DefaultTextBoxShowEnterValue(txtPostgreSqlAutoSql, SourceSettingTextBoxDecrible.txtPostgreSqlAutoSql_Decrible); + } + + #endregion + private void frmSourceSetting_Resize(object sender, EventArgs e) { arrayFields(); diff --git a/CnasSynchrousModel/CnasSynchrousModel.csproj b/CnasSynchrousModel/CnasSynchrousModel.csproj index bda58a8..e5de366 100644 --- a/CnasSynchrousModel/CnasSynchrousModel.csproj +++ b/CnasSynchrousModel/CnasSynchrousModel.csproj @@ -74,6 +74,7 @@ + diff --git a/CnasSynchrousModel/SourceConfigFile/PostgreSqlFormatConfig.cs b/CnasSynchrousModel/SourceConfigFile/PostgreSqlFormatConfig.cs new file mode 100644 index 0000000..a591df8 --- /dev/null +++ b/CnasSynchrousModel/SourceConfigFile/PostgreSqlFormatConfig.cs @@ -0,0 +1,56 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace CnasSynchrousModel +{ + public class PostgreSqlFormatConfig + { + /// + /// PostgreSqlļеĸʽ + /// + public string PostgreSqlFileDateColumnFormat { get; set; } + + /// + /// ȡPostgreSqlԶ + /// + public PostgreSqlAutoSql AutoSql { get; set; } + + /// + /// ȡPostgreSqlݵ + /// + public PostgreSqlSpecialDataTableOpera SpecialDtOpera { get; set; } + } + + + public class PostgreSqlAutoSql + { + /// + /// ȡPostgreSqlԶʱı + /// + public string PostgreSqlViewName { get; set; } + + /// + /// PostgreSqlʱִеԶ + /// + public string PostgreSqlViewSql { get; set; } + } + + /// + /// ڶȡdt + /// + public class PostgreSqlSpecialDataTableOpera + { + + /// + /// + /// + public string Method { get; set; } + + /// + /// ִзҪֶIJ + /// + public string Value { get; set; } + } +} diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe index bb4474f..c8eb184 100644 Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ diff --git a/dll/CnasSynchrousModel.dll b/dll/CnasSynchrousModel.dll index 95e231d..a03f22c 100644 Binary files a/dll/CnasSynchrousModel.dll and b/dll/CnasSynchrousModel.dll differ diff --git a/dll/DataConfig/PostgreSqlFormatConfig.xml b/dll/DataConfig/PostgreSqlFormatConfig.xml new file mode 100644 index 0000000..5a4fd63 --- /dev/null +++ b/dll/DataConfig/PostgreSqlFormatConfig.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/dll/ErrorLog/20250214.txt b/dll/ErrorLog/20250214.txt new file mode 100644 index 0000000..5bcebf2 --- /dev/null +++ b/dll/ErrorLog/20250214.txt @@ -0,0 +1,323 @@ +¼ʱ䣺2025-02-14 09:37:57,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:57,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:57,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:57,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:57,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:57,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:37:57,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:37:57,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:57,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:57,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:57,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:57,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:57,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:37:58,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:37:58,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:37:58,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:37:58,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:37:58,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:46:29,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:29,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:46:29,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:46:29,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:46:29,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:46:31,856 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵPostgreSqlFormatConfig.xml +¼ʱ䣺2025-02-14 09:46:31,933 ߳ID:[1]- :FileOperation :GetFormatConfigData Ϣ:XML ĵ(0, 0)д +¼ʱ䣺2025-02-14 09:47:47,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:47:47,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:47:47,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:47:47,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:47:47,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:48:04,204 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵPostgreSqlFormatConfig.xml +¼ʱ䣺2025-02-14 09:50:27,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:50:27,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:50:27,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 09:50:27,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 09:50:27,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table