diff --git a/CNASBalanceDBManage/ActivationForm.Designer.cs b/CNASBalanceDBManage/ActivationForm.Designer.cs new file mode 100644 index 0000000..a5130a1 --- /dev/null +++ b/CNASBalanceDBManage/ActivationForm.Designer.cs @@ -0,0 +1,115 @@ +namespace CNASBalanceDBManage +{ + partial class ActivationForm + { + private System.ComponentModel.IContainer components = null; + + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.lblTitle = new System.Windows.Forms.Label(); + this.lblDescription = new System.Windows.Forms.Label(); + this.lblActivationCode = new System.Windows.Forms.Label(); + this.txtActivationCode = new System.Windows.Forms.TextBox(); + this.btnActivate = new System.Windows.Forms.Button(); + this.lnkDownloadCode = new System.Windows.Forms.LinkLabel(); + this.SuspendLayout(); + // + // lblTitle + // + this.lblTitle.Location = new System.Drawing.Point(0, 0); + this.lblTitle.Name = "lblTitle"; + this.lblTitle.Size = new System.Drawing.Size(100, 23); + this.lblTitle.TabIndex = 0; + // + // lblDescription + // + this.lblDescription.Font = new System.Drawing.Font("微软雅黑", 10F); + this.lblDescription.ForeColor = System.Drawing.Color.Red; + this.lblDescription.Location = new System.Drawing.Point(20, 60); + this.lblDescription.Name = "lblDescription"; + this.lblDescription.Size = new System.Drawing.Size(560, 40); + this.lblDescription.TabIndex = 1; + this.lblDescription.Text = "请点击上方按钮下载机器识别码,然后将机器识别码发给平台管理员申请授权文件后进行激活,激活后才可正常使用取数仪器客户端。"; + // + // lblActivationCode + // + this.lblActivationCode.AutoSize = true; + this.lblActivationCode.Location = new System.Drawing.Point(20, 120); + this.lblActivationCode.Name = "lblActivationCode"; + this.lblActivationCode.Size = new System.Drawing.Size(69, 20); + this.lblActivationCode.TabIndex = 2; + this.lblActivationCode.Text = "激活码:"; + // + // txtActivationCode + // + this.txtActivationCode.Location = new System.Drawing.Point(20, 140); + this.txtActivationCode.Multiline = true; + this.txtActivationCode.Name = "txtActivationCode"; + this.txtActivationCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.txtActivationCode.Size = new System.Drawing.Size(840, 225); + this.txtActivationCode.TabIndex = 0; + // + // btnActivate + // + this.btnActivate.Location = new System.Drawing.Point(370, 460); + this.btnActivate.Name = "btnActivate"; + this.btnActivate.Size = new System.Drawing.Size(100, 30); + this.btnActivate.TabIndex = 3; + this.btnActivate.Text = "输入激活"; + this.btnActivate.Click += new System.EventHandler(this.btnActivate_Click); + // + // lnkDownloadCode + // + this.lnkDownloadCode.ActiveLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(102)))), ((int)(((byte)(204))))); + this.lnkDownloadCode.AutoSize = true; + this.lnkDownloadCode.Font = new System.Drawing.Font("微软雅黑", 10F); + this.lnkDownloadCode.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; + this.lnkDownloadCode.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(102)))), ((int)(((byte)(204))))); + this.lnkDownloadCode.Location = new System.Drawing.Point(20, 23); + this.lnkDownloadCode.Name = "lnkDownloadCode"; + this.lnkDownloadCode.Size = new System.Drawing.Size(129, 23); + this.lnkDownloadCode.TabIndex = 4; + this.lnkDownloadCode.TabStop = true; + this.lnkDownloadCode.Text = "下载机器识别码"; + this.lnkDownloadCode.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkDownloadCode_LinkClicked); + // + // ActivationForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(909, 563); + this.Controls.Add(this.lblTitle); + this.Controls.Add(this.lblDescription); + this.Controls.Add(this.lblActivationCode); + this.Controls.Add(this.txtActivationCode); + this.Controls.Add(this.btnActivate); + this.Controls.Add(this.lnkDownloadCode); + this.Font = new System.Drawing.Font("微软雅黑", 9F); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "ActivationForm"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "下载机器识别码"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + private System.Windows.Forms.Label lblTitle; + private System.Windows.Forms.Label lblDescription; + private System.Windows.Forms.Label lblActivationCode; + private System.Windows.Forms.TextBox txtActivationCode; + private System.Windows.Forms.Button btnActivate; + private System.Windows.Forms.LinkLabel lnkDownloadCode; + } +} \ No newline at end of file diff --git a/CNASBalanceDBManage/ActivationForm.cs b/CNASBalanceDBManage/ActivationForm.cs new file mode 100644 index 0000000..f81fb99 --- /dev/null +++ b/CNASBalanceDBManage/ActivationForm.cs @@ -0,0 +1,211 @@ +using System; +using System.Text; +using System.Windows.Forms; +using System.Management; +using System.Net.NetworkInformation; +using System.Collections.Generic; +using System.IO; +using System.Configuration; + +namespace CNASBalanceDBManage +{ + public partial class ActivationForm : Form + { + private const string ACTIVATION_FILE = "activation.config"; + + public bool IsActivated { get; private set; } + + public ActivationForm() + { + InitializeComponent(); + IsActivated = false; + } + + // 检查是否已激活 + public bool CheckActivation() + { + try + { + string activationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ACTIVATION_FILE); + if (File.Exists(activationPath)) + { + string machineCode = GetMachineCode(); + string savedMachineCode = File.ReadAllText(activationPath); + return machineCode == savedMachineCode; + } + } + catch + { + // 如果读取失败,返回未激活状态 + } + return false; + } + + private void SaveActivation() + { + try + { + string activationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ACTIVATION_FILE); + File.WriteAllText(activationPath, GetMachineCode()); + } + catch (Exception ex) + { + MessageBox.Show($"保存激活状态失败:{ex.Message}", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning); + } + } + + private void btnActivate_Click(object sender, EventArgs e) + { + string activationCode = txtActivationCode.Text.Trim(); + if (string.IsNullOrEmpty(activationCode)) + { + MessageBox.Show("请输入激活码!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning); + return; + } + + try + { + //绕过验证 + if (ValidateActivationCode(activationCode)) + { + IsActivated = true; + SaveActivation(); // 保存激活状态 + this.DialogResult = DialogResult.OK; + this.Close(); + } + else + { + MessageBox.Show("激活码无效!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + catch (Exception ex) + { + MessageBox.Show($"激活失败:{ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void lnkDownloadCode_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + try + { + string machineCode = GetMachineCode(); + + // 创建保存文件对话框 + var saveFileDialog = new SaveFileDialog + { + FileName = $"机器码_{DateTime.Now:yyyyMMdd}", + DefaultExt = ".txt", + Filter = "文本文件|*.txt" + }; + + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + File.WriteAllText(saveFileDialog.FileName, machineCode); + MessageBox.Show("机器码已成功保存!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + } + catch (Exception ex) + { + MessageBox.Show($"获取机器码失败:{ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private string GetMachineCode() + { + StringBuilder machineCode = new StringBuilder(); + + // 获取CPU ID + string cpuId = GetCPUId(); + machineCode.Append(cpuId); + + // 获取所有MAC地址 + List macAddresses = GetMACAddresses(); + foreach (string mac in macAddresses) + { + machineCode.Append("_").Append(mac); + } + + return machineCode.ToString(); + } + + private string GetCPUId() + { + try + { + using (ManagementClass mc = new ManagementClass("Win32_Processor")) + { + ManagementObjectCollection moc = mc.GetInstances(); + foreach (ManagementObject mo in moc) + { + return mo.Properties["ProcessorId"].Value.ToString(); + } + } + } + catch (Exception ex) + { + throw new Exception("获取CPU ID失败: " + ex.Message); + } + return string.Empty; + } + + private List GetMACAddresses() + { + List macAddresses = new List(); + try + { + NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); + foreach (NetworkInterface adapter in nics) + { + // 只获取物理网卡的MAC地址 + if (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet || + adapter.NetworkInterfaceType == NetworkInterfaceType.Wireless80211) + { + string mac = adapter.GetPhysicalAddress().ToString(); + if (!string.IsNullOrEmpty(mac)) + { + macAddresses.Add(mac); + } + } + } + } + catch (Exception ex) + { + throw new Exception("获取MAC地址失败: " + ex.Message); + } + return macAddresses; + } + + private bool ValidateActivationCode(string activationCode) + { + // 使用实际的机器码来验证 + string machineCode = GetMachineCode(); + return GenerateActivationCode(machineCode) == activationCode; + } + + private string GenerateActivationCode(string machineCode) + { + // 这里实现激活码生成算法 + // 示例:简单的加密算法,实际应用中应该使用更安全的加密方式 + using (var md5 = System.Security.Cryptography.MD5.Create()) + { + // 加入时间戳使得生成的激活码具有时效性 + string input = machineCode + DateTime.Now.ToString("yyyyMMdd"); + byte[] inputBytes = Encoding.UTF8.GetBytes(input); + byte[] hashBytes = md5.ComputeHash(inputBytes); + + // 转换为16进制字符串 + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < hashBytes.Length; i++) + { + sb.Append(hashBytes[i].ToString("X2")); + // 每4个字符添加一个分隔符,提高可读性 + if ((i + 1) % 4 == 0 && i != hashBytes.Length - 1) + { + sb.Append("-"); + } + } + return sb.ToString(); + } + } + } +} \ No newline at end of file diff --git a/CNASBalanceDBManage/ActivationForm.resx b/CNASBalanceDBManage/ActivationForm.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/CNASBalanceDBManage/ActivationForm.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/CNASBalanceDBManage/CNASBalanceDBManage.csproj b/CNASBalanceDBManage/CNASBalanceDBManage.csproj index 2dc1915..af5092f 100644 --- a/CNASBalanceDBManage/CNASBalanceDBManage.csproj +++ b/CNASBalanceDBManage/CNASBalanceDBManage.csproj @@ -44,6 +44,7 @@ + @@ -54,6 +55,12 @@ + + Form + + + ActivationForm.cs + Form @@ -62,6 +69,9 @@ + + ActivationForm.cs + frmBalanceDB.cs diff --git a/CNASBalanceDBManage/Program.cs b/CNASBalanceDBManage/Program.cs index b7e5ad8..da76939 100644 --- a/CNASBalanceDBManage/Program.cs +++ b/CNASBalanceDBManage/Program.cs @@ -24,7 +24,25 @@ namespace CNASBalanceDBManage GlobalCommonOperation.strWebApiUrl = systemFormat.WebApiUrl; GlobalCommonOperation.strTargetDbType = systemFormat.TargetDBType; - Application.Run(new frmBalanceDB()); + // 检查是否已激活 + if (!(new ActivationForm()).CheckActivation()) + { + // 未激活,显示激活窗口 + using (var activationForm = new ActivationForm()) + { + if (activationForm.ShowDialog() == DialogResult.OK) + { + // 激活成功,显示主窗口 + Application.Run(new frmBalanceDB()); + } + } + } + else + { + // 已激活,直接显示主窗口 + Application.Run(new frmBalanceDB()); + } + } } } diff --git a/CNAS_DBSync/frmDatabaseParams.cs b/CNAS_DBSync/frmDatabaseParams.cs index ee78f27..e6af316 100644 --- a/CNAS_DBSync/frmDatabaseParams.cs +++ b/CNAS_DBSync/frmDatabaseParams.cs @@ -115,8 +115,6 @@ namespace CNAS_DBSync this.txtSqlServerName.Text = syncInstrumentItem.SyncInstrumentDSInfo.ServerName; this.txtSqlServerUser.Text = syncInstrumentItem.SyncInstrumentDSInfo.UserId; this.txtSqlServerPwd.Text = syncInstrumentItem.SyncInstrumentDSInfo.UserPwd; - - //this.txtSqlServerConnect.Text = sqlServerFormat.SqlServerConnection; break; case DataSourceType.MySQL: this.tabcDS.SelectedIndex = 5; diff --git a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs index cebda57..9f21e32 100644 --- a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs +++ b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs @@ -397,7 +397,8 @@ namespace CnasSynchronusDAL { string strSql = ""; if (strViewName == strTableName && !string.IsNullOrWhiteSpace(strViewName)) - strSql = strViewSql + $" where {strDateColumn} >convert( '{strDate}',datetime)"; + //strSql = strViewSql + $" where {strDateColumn} >convert( '{strDate}',datetime)"; + strSql = strViewSql + $" where \"{strDateColumn}\" >TO_TIMESTAMP('{strDate}', 'YYYY-MM-DD HH24:MI:SS');"; else strSql = $"select * from {strDBName}.public.{strTableName} where \"{strDateColumn}\">TO_TIMESTAMP('{strDate}', 'YYYY-MM-DD HH24:MI:SS');"; DataTable dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; diff --git a/dll/CNASBalanceDBManage.exe b/dll/CNASBalanceDBManage.exe index 8c83be5..934fe95 100644 Binary files a/dll/CNASBalanceDBManage.exe and b/dll/CNASBalanceDBManage.exe differ diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe index 50dae87..08b1148 100644 Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ diff --git a/dll/Cache/SyncTime.bin b/dll/Cache/SyncTime.bin index 8f8d30b..068d03a 100644 --- a/dll/Cache/SyncTime.bin +++ b/dll/Cache/SyncTime.bin @@ -1,5 +1,6 @@ { "ccc": "2025-02-17 10:40:25", "ddd": "2025-02-17 11:32:02", - "eee": "2025-02-17 13:31:35" + "eee": "2025-02-17 15:04:41", + "fff": "2025-02-17 14:31:03" } \ No newline at end of file diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll index 27b6bf9..85aff12 100644 Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ diff --git a/dll/Data/SyncInStrumentData.mes b/dll/Data/SyncInStrumentData.mes index 76a32c2..3760a39 100644 --- a/dll/Data/SyncInStrumentData.mes +++ b/dll/Data/SyncInStrumentData.mes @@ -1 +1 @@ -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 \ No newline at end of file +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 \ No newline at end of file diff --git a/dll/DataConfig/PostgreSqlFormatConfig.xml b/dll/DataConfig/PostgreSqlFormatConfig.xml index c41c821..1232373 100644 --- a/dll/DataConfig/PostgreSqlFormatConfig.xml +++ b/dll/DataConfig/PostgreSqlFormatConfig.xml @@ -1 +1 @@ -2024-01-01mycodeselect * from stu \ No newline at end of file +2025-01-01myPselect * ,'hello' title from stu \ No newline at end of file diff --git a/dll/DataConfig/fff.xml b/dll/DataConfig/fff.xml index 19819b8..ae30ee9 100644 --- a/dll/DataConfig/fff.xml +++ b/dll/DataConfig/fff.xml @@ -1 +1 @@ -010fff \ No newline at end of file +-1001-100fff \ No newline at end of file diff --git a/dll/ErrorLog/20250217.txt b/dll/ErrorLog/20250217.txt index 1800a1e..db9ff76 100644 --- a/dll/ErrorLog/20250217.txt +++ b/dll/ErrorLog/20250217.txt @@ -1888,3 +1888,983 @@ ¼ʱ䣺2025-02-17 13:30:56,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet ¼ʱ䣺2025-02-17 13:30:56,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet ¼ʱ䣺2025-02-17 13:30:56,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,516 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,516 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,516 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,581 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,635 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,636 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,636 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,636 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,835 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,847 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,847 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,847 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,917 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,977 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:58', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:58,977 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,977 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:58,977 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,076 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,146 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,150 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:59', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:59,150 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:59', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:59,150 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:59', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,237 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:59', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,317 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 13:31:59', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,317 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:59,317 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:59,317 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,402 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:59,461 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,476 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,495 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,495 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,655 ߳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-17 13:37:06,655 ߳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-17 13:37:06,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:37:06,736 ߳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-17 13:37:06,737 ߳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-17 13:37:06,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:37:06,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:37:06,745 ߳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-17 13:37:06,745 ߳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-17 13:37:06,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:37:06,794 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,794 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,794 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,802 ߳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-17 13:37:06,802 ߳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-17 13:37:06,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:37:06,869 ߳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-17 13:37:06,869 ߳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-17 13:37:06,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:37:06,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:37:06,878 ߳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-17 13:37:06,878 ߳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-17 13:37:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:37:06,911 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,911 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,911 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:37:06,917 ߳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-17 13:37:06,917 ߳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-17 13:37:06,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:37:06,993 ߳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-17 13:37:06,993 ߳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-17 13:37:06,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:06,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:37:07,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:37:07,004 ߳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-17 13:37:07,005 ߳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-17 13:37:07,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:07,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:07,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:37:07,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:20,441 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,463 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,478 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,576 ߳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-17 13:59:20,576 ߳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-17 13:59:20,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:59:20,642 ߳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-17 13:59:20,642 ߳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-17 13:59:20,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:20,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:59:20,662 ߳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-17 13:59:20,662 ߳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-17 13:59:20,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:20,758 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,766 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,775 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,783 ߳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-17 13:59:20,783 ߳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-17 13:59:20,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:59:20,830 ߳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-17 13:59:20,830 ߳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-17 13:59:20,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:20,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:59:20,837 ߳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-17 13:59:20,837 ߳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-17 13:59:20,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:20,911 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,921 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,929 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 13:59:20,935 ߳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-17 13:59:20,935 ߳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-17 13:59:20,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:59:20,980 ߳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-17 13:59:20,980 ߳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-17 13:59:20,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:20,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:59:20,987 ߳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-17 13:59:20,987 ߳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-17 13:59:20,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:20,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:24,368 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:24,368 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:24,368 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,519 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,605 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,609 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 13:59:24,610 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:59:24,610 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:24,610 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:24,610 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,691 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,744 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,744 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:24,750 ߳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-17 13:59:24,750 ߳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-17 13:59:24,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:59:24,815 ߳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-17 13:59:24,815 ߳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-17 13:59:24,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:24,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 13:59:24,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:59:24,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:59:24,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,826 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:24,883 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:24,883 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:24,883 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:24,937 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,044 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,045 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 13:59:25,045 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:59:25,045 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:25,045 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:25,045 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,113 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,170 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,171 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:25,174 ߳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-17 13:59:25,174 ߳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-17 13:59:25,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:59:25,236 ߳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-17 13:59:25,236 ߳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-17 13:59:25,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,237 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:25,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 13:59:25,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:59:25,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:59:25,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:25,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:39,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:39,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:39,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,606 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,606 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 13:59:39,606 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:59:39,606 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:39,606 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:59:39,606 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,672 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,725 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,726 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:39,732 ߳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-17 13:59:39,732 ߳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-17 13:59:39,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 13:59:39,817 ߳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-17 13:59:39,817 ߳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-17 13:59:39,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:59:39,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 13:59:39,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:59:39,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:59:39,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:59:39,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:04:41,570 ߳ID:[1]- :KingbaseDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:04:41,570 ߳ID:[1]- :KingbaseDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM my.stu Where 0=1 +¼ʱ䣺2025-02-17 14:04:41,572 ߳ID:[1]- :KingbaseDAL :GetTableStruct Ϣ:===-333-===stuKingbaseHelper.ExecuteDataSet(strSql)Table1 +¼ʱ䣺2025-02-17 14:04:41,582 ߳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-17 14:04:41,582 ߳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-17 14:04:41,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:04:41,695 ߳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-17 14:04:41,695 ߳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-17 14:04:41,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:04:41,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1 +¼ʱ䣺2025-02-17 14:04:41,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM bkingbase Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:04:41,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM bkingbase Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:04:41,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM bkingbase Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM bkingbase Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM bkingbase Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:04:41,728 ߳ID:[1]- :KingbaseDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:04:41,728 ߳ID:[1]- :KingbaseDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM my.stu Where 0=1 +¼ʱ䣺2025-02-17 14:04:41,728 ߳ID:[1]- :KingbaseDAL :GetTableStruct Ϣ:===-333-===stuKingbaseHelper.ExecuteDataSet(strSql)Table1 +¼ʱ䣺2025-02-17 14:04:41,735 ߳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-17 14:04:41,735 ߳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-17 14:04:41,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:04:41,833 ߳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-17 14:04:41,833 ߳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-17 14:04:41,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:04:41,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1 +¼ʱ䣺2025-02-17 14:04:41,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM bkingbase Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:04:41,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM bkingbase Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:04:41,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM bkingbase Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM bkingbase Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM bkingbase Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:04:41,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:08:37,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:08:37,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:08:37,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,503 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,549 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:08:37,549 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:08:37,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:08:37,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:08:37,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,600 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,645 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,645 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:08:37,651 ߳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-17 14:08:37,651 ߳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-17 14:08:37,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:08:37,723 ߳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-17 14:08:37,723 ߳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-17 14:08:37,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:08:37,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:08:37,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:08:37,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:08:37,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:08:37,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:43,757 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵ.xml +¼ʱ䣺2025-02-17 14:09:55,097 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:09:55,097 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:09:55,097 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,163 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,212 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,213 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:09:55,213 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:09:55,213 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:09:55,213 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:09:55,213 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,277 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,345 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,345 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:55,348 ߳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-17 14:09:55,349 ߳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-17 14:09:55,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:09:55,459 ߳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-17 14:09:55,459 ߳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-17 14:09:55,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:55,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:09:55,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:09:55,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:09:55,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:55,658 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:09:55,673 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:09:55,688 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:09:55,694 ߳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-17 14:09:55,694 ߳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-17 14:09:55,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:09:55,804 ߳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-17 14:09:55,804 ߳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-17 14:09:55,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:55,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:09:55,813 ߳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-17 14:09:55,813 ߳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-17 14:09:55,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:55,912 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:09:55,923 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:09:55,933 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:09:55,942 ߳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-17 14:09:55,942 ߳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-17 14:09:55,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:55,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:09:56,040 ߳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-17 14:09:56,040 ߳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-17 14:09:56,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:09:56,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:09:56,051 ߳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-17 14:09:56,051 ߳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-17 14:09:56,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:09:56,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:14:32,962 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * from stu where 0=1 +¼ʱ䣺2025-02-17 14:14:33,252 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:14:33,252 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:14:33,252 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,303 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,348 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,348 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:14:33,352 ߳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-17 14:14:33,352 ߳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-17 14:14:33,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:14:33,413 ߳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-17 14:14:33,414 ߳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-17 14:14:33,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:33,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:14:37,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:14:37,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:14:37,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:14:37,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:37,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:37,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:14:37,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:15:11,553 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * from stu where 0=1 +¼ʱ䣺2025-02-17 14:15:11,553 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:15:11,553 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:15:11,553 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,692 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,753 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,753 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:15:11,757 ߳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-17 14:15:11,757 ߳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-17 14:15:11,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:15:11,820 ߳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-17 14:15:11,820 ߳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-17 14:15:11,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:15:11,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:15:11,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:15:11,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:15:11,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:11,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:15:29,643 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1 +¼ʱ䣺2025-02-17 14:15:29,643 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:15:29,643 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:15:29,643 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,718 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,767 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,767 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:15:29,769 ߳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-17 14:15:29,769 ߳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-17 14:15:29,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:15:29,903 ߳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-17 14:15:29,903 ߳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-17 14:15:29,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:15:29,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:15:29,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:15:29,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:15:29,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:15:29,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:16:15,681 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12 +¼ʱ䣺2025-02-17 14:21:33,857 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where InTime >convert( '2020-01-01 00:00:00',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:21:33,858 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >convert( '2020-01-01 00:00:00',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:21:33,858 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet +¼ʱ䣺2025-02-17 14:21:34,146 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:21:34,158 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:21:34,164 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:22:02,525 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12 +¼ʱ䣺2025-02-17 14:22:21,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where InTime >convert( '2020-01-01 00:00:00',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:22:21,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >convert( '2020-01-01 00:00:00',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:22:21,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet +¼ʱ䣺2025-02-17 14:22:22,163 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:22:22,179 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:22:22,187 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:23:58,755 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12 +¼ʱ䣺2025-02-17 14:24:34,906 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:24:34,907 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:24:34,907 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 14:24:35,121 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:24:35,132 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:26:50,889 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:26:50,889 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:26:50,889 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 14:26:51,059 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:26:51,068 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:26:51,075 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:27:00,906 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:27:00,906 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:27:00,906 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where InTime >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 14:27:01,071 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:27:01,083 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 41 +¼ʱ䣺2025-02-17 14:29:18,887 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:18,907 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:18,920 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,024 ߳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-17 14:29:19,024 ߳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-17 14:29:19,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:29:19,103 ߳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-17 14:29:19,104 ߳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-17 14:29:19,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:19,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:29:19,113 ߳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-17 14:29:19,113 ߳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-17 14:29:19,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:19,229 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,238 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,246 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,255 ߳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-17 14:29:19,255 ߳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-17 14:29:19,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:29:19,316 ߳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-17 14:29:19,316 ߳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-17 14:29:19,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:19,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:29:19,323 ߳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-17 14:29:19,323 ߳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-17 14:29:19,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:19,402 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,410 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,420 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:29:19,425 ߳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-17 14:29:19,425 ߳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-17 14:29:19,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:29:19,527 ߳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-17 14:29:19,527 ߳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-17 14:29:19,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:19,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:29:19,541 ߳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-17 14:29:19,541 ߳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-17 14:29:19,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:19,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:41,837 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1 +¼ʱ䣺2025-02-17 14:29:42,686 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:29:42,686 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:29:42,686 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,822 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,879 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,882 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:42,888 ߳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-17 14:29:42,888 ߳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-17 14:29:42,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:29:42,957 ߳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-17 14:29:42,957 ߳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-17 14:29:42,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:42,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:29:42,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:29:42,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:29:42,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:29:42,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:35:11,759 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:35:11,759 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:35:11,759 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:11,869 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:11,934 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:35:11,934 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:35:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:35:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:35:11,935 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,020 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,094 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,094 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:35:12,102 ߳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-17 14:35:12,102 ߳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-17 14:35:12,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:35:12,180 ߳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-17 14:35:12,180 ߳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-17 14:35:12,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:35:12,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:35:12,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:35:12,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:35:12,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:35:12,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:38:30,454 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:38:30,465 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:38:30,474 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 14:38:30,485 ߳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-17 14:38:30,485 ߳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-17 14:38:30,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:38:30,591 ߳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-17 14:38:30,591 ߳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-17 14:38:30,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:38:30,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:38:30,601 ߳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-17 14:38:30,601 ߳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-17 14:38:30,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,602 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,602 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:38:30,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:39:21,794 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:21,794 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:21,794 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,039 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,108 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,109 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:39:22,109 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:39:22,109 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:22,109 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:22,109 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,169 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,218 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,218 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:39:22,224 ߳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-17 14:39:22,224 ߳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-17 14:39:22,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:39:22,289 ߳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-17 14:39:22,289 ߳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-17 14:39:22,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:39:22,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:39:22,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:39:22,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:39:22,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:22,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:39:33,867 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:33,867 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:33,867 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:33,929 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:33,979 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:33,979 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:39:33,979 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:39:33,979 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:33,979 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:39:33,979 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,041 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,088 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,088 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:39:34,096 ߳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-17 14:39:34,096 ߳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-17 14:39:34,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:39:34,197 ߳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-17 14:39:34,197 ߳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-17 14:39:34,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:39:34,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:39:34,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:39:34,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:39:34,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:39:34,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:42:36,226 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1 +¼ʱ䣺2025-02-17 14:42:36,475 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:42:36,475 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:42:36,475 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,525 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,565 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,565 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:42:36,569 ߳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-17 14:42:36,569 ߳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-17 14:42:36,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:42:36,681 ߳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-17 14:42:36,681 ߳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-17 14:42:36,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:42:36,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:42:36,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:42:36,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:42:36,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:42:36,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:07,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:43:07,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:07,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:07,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:07,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:07,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:07,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:19,777 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:19,777 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:19,777 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,838 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,893 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,893 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:43:19,893 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:43:19,894 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:19,894 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:19,894 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,989 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,989 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:19,993 ߳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-17 14:43:19,993 ߳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-17 14:43:19,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:19,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:43:20,094 ߳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-17 14:43:20,094 ߳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-17 14:43:20,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:20,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:43:20,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:20,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:20,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:20,119 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:20,119 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:20,119 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,170 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,210 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,210 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:43:20,210 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:43:20,210 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:20,210 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:20,210 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,260 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,309 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,310 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:20,316 ߳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-17 14:43:20,316 ߳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-17 14:43:20,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:43:20,374 ߳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-17 14:43:20,374 ߳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-17 14:43:20,374 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:20,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:43:20,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:20,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:20,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:20,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:23,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:23,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:23,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,696 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,734 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,734 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:43:23,734 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:43:23,734 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:23,734 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:43:23,734 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,781 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,832 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,832 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:23,839 ߳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-17 14:43:23,839 ߳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-17 14:43:23,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 14:43:23,933 ߳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-17 14:43:23,933 ߳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-17 14:43:23,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:23,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:43:23,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:23,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:23,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:23,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:43:24,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:43:24,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:24,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:43:24,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:24,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:24,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:43:24,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:46:54,663 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:46:54,663 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:46:54,663 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:46:54,711 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:46:54,765 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 14:46:54,766 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 14:46:54,766 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 14:46:54,766 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:46:54,766 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:46:54,766 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:46:54,822 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:46:54,866 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:46:54,866 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:47:43,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:47:43,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:47:43,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:47:43,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:47:43,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:47:43,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:47:43,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:04:26,264 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2025-02-07 15:04:23', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:26,272 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2025-02-07 15:04:23', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:26,272 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2025-02-07 15:04:23', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:26,408 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2025-02-07 15:04:23', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:26,480 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2025-02-07 15:04:23', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:26,485 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:26,485 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:26,485 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:26,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:26,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:34,079 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 15:04:33', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:34,079 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 15:04:33', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:34,079 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 15:04:33', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:34,140 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 15:04:33', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-07 15:04:33', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 15:04:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:34,265 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:34,320 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:39,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 15:04:39,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 15:04:39,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 15:04:39,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:39,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:39,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:39,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:04:40,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 15:04:40,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 15:04:40,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:40,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 15:04:40,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet diff --git a/dll/ErrorLog/20250217.txt20250217.txt b/dll/ErrorLog/20250217.txt20250217.txt index ab81197..2902645 100644 --- a/dll/ErrorLog/20250217.txt20250217.txt +++ b/dll/ErrorLog/20250217.txt20250217.txt @@ -997,3 +997,114 @@ ¼ʱ䣺2025-02-17 13:28:42,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet ¼ʱ䣺2025-02-17 13:28:42,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet ¼ʱ䣺2025-02-17 13:28:42,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:36:07,697 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:36:07,697 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:36:07,697 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:36:07,756 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:36:07,800 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-17 13:36:07,800 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-17 13:36:07,800 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 13:36:07,800 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:36:07,800 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:36:07,800 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:36:07,856 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:36:07,904 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:36:07,904 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:29:56,643 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12 +¼ʱ䣺2025-02-17 14:30:42,576 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:30:42,578 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:30:42,580 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:42,978 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:43,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where "InTime" >TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,050 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:30:49,050 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 14:30:49,050 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,128 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,173 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='myP' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 14:30:49,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:30:49,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:30:49,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 14:30:49,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 14:31:03,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:31:03,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 14:31:03,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 14:31:03,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 14:31:03,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,669 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:16,692 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:16,706 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:16,781 ߳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-17 15:07:16,781 ߳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-17 15:07:16,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 15:07:16,850 ߳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-17 15:07:16,850 ߳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-17 15:07:16,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:07:16,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 15:07:16,859 ߳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-17 15:07:16,859 ߳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-17 15:07:16,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:16,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:07:16,983 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:16,993 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:17,001 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:17,009 ߳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-17 15:07:17,009 ߳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-17 15:07:17,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 15:07:17,081 ߳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-17 15:07:17,081 ߳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-17 15:07:17,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:07:17,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 15:07:17,090 ߳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-17 15:07:17,090 ߳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-17 15:07:17,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:07:17,195 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:17,206 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:17,215 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-17 15:07:17,222 ߳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-17 15:07:17,222 ߳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-17 15:07:17,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,225 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-17 15:07:17,273 ߳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-17 15:07:17,273 ߳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-17 15:07:17,273 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 15:07:17,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-17 15:07:17,282 ߳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-17 15:07:17,282 ߳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-17 15:07:17,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 15:07:17,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table diff --git a/dll/ErrorLog/20250217.txt20250217.txt20250217.txt b/dll/ErrorLog/20250217.txt20250217.txt20250217.txt index 2680103..2c80f33 100644 --- a/dll/ErrorLog/20250217.txt20250217.txt20250217.txt +++ b/dll/ErrorLog/20250217.txt20250217.txt20250217.txt @@ -34,3 +34,25 @@ ¼ʱ䣺2025-02-17 09:13:27,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'bkingbase'System.Data.DataSet ¼ʱ䣺2025-02-17 09:13:27,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'bkingbase'System.Data.DataSet ¼ʱ䣺2025-02-17 09:13:27,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'bkingbase'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,387 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-14 13:30:57', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:32,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-14 13:30:57', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:32,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-14 13:30:57', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,562 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-14 13:30:57', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,637 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-14 13:30:57', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,642 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:32,642 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-17 13:31:32,642 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,722 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,781 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1 +¼ʱ䣺2025-02-17 13:31:32,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:31:32,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:31:32,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apostgre Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:32,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-17 13:31:35,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:31:35,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-17 13:31:35,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:35,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet +¼ʱ䣺2025-02-17 13:31:35,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'apostgre'System.Data.DataSet diff --git a/dll/ServiceLog/20250217.txt b/dll/ServiceLog/20250217.txt index 4236122..2aacfd3 100644 --- a/dll/ServiceLog/20250217.txt +++ b/dll/ServiceLog/20250217.txt @@ -92,3 +92,52 @@ ¼ʱ䣺2025-02-17 13:31:16,002 ߳ID:[1]- Ϣ:SyncServiceOperation :Start Ϣ:SyncSerivce: ¼ʱ䣺2025-02-17 13:31:16,105 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ ¼ʱ䣺2025-02-17 13:31:16,105 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:־ +¼ʱ䣺2025-02-17 13:31:16,149 ߳ID:[1]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ5 +¼ʱ䣺2025-02-17 13:31:31,345 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼ֶβѯɸѡ +¼ʱ䣺2025-02-17 13:31:31,411 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱΪ2025-02-14 13:30:57 +¼ʱ䣺2025-02-17 13:31:31,411 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼Դȡ +¼ʱ䣺2025-02-17 13:31:31,440 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:Դȡ,׼ȡԴ +¼ʱ䣺2025-02-17 13:31:32,781 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ڶȡ׼Դ,2 +¼ʱ䣺2025-02-17 13:31:32,862 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:ȡĿݵݽṹ +¼ʱ䣺2025-02-17 13:31:32,863 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:Դݣ׼ +¼ʱ䣺2025-02-17 13:31:35,198 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:׼ǷϷ +¼ʱ䣺2025-02-17 13:31:35,212 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:вĿݣ׼()2 +¼ʱ䣺2025-02-17 13:31:35,230 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:ϴɣгɹ1ʧ01............................................................................................................ +¼ʱ䣺2025-02-17 14:16:15,573 ߳ID:[1]- Ϣ:SyncServiceOperation :Start Ϣ:SyncSerivce: +¼ʱ䣺2025-02-17 14:16:15,682 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ +¼ʱ䣺2025-02-17 14:16:15,683 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:־ +¼ʱ䣺2025-02-17 14:16:15,724 ߳ID:[1]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ6 +¼ʱ䣺2025-02-17 14:17:47,898 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼ֶβѯɸѡ +¼ʱ䣺2025-02-17 14:18:38,412 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱΪ2020-01-01 00:00:00 +¼ʱ䣺2025-02-17 14:18:42,556 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼Դȡ +¼ʱ䣺2025-02-17 14:21:32,246 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:Դȡ,׼ȡԴ +¼ʱ䣺2025-02-17 14:22:02,404 ߳ID:[1]- Ϣ:SyncServiceOperation :Start Ϣ:SyncSerivce: +¼ʱ䣺2025-02-17 14:22:02,526 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ +¼ʱ䣺2025-02-17 14:22:02,527 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:־ +¼ʱ䣺2025-02-17 14:22:02,579 ߳ID:[1]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ6 +¼ʱ䣺2025-02-17 14:22:20,928 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼ֶβѯɸѡ +¼ʱ䣺2025-02-17 14:22:21,003 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱΪ2020-01-01 00:00:00 +¼ʱ䣺2025-02-17 14:22:21,003 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼Դȡ +¼ʱ䣺2025-02-17 14:22:21,038 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:Դȡ,׼ȡԴ +¼ʱ䣺2025-02-17 14:23:58,639 ߳ID:[1]- Ϣ:SyncServiceOperation :Start Ϣ:SyncSerivce: +¼ʱ䣺2025-02-17 14:23:58,756 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ +¼ʱ䣺2025-02-17 14:23:58,757 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:־ +¼ʱ䣺2025-02-17 14:23:58,806 ߳ID:[1]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ6 +¼ʱ䣺2025-02-17 14:24:29,710 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼ֶβѯɸѡ +¼ʱ䣺2025-02-17 14:24:29,782 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱΪ2020-01-01 00:00:00 +¼ʱ䣺2025-02-17 14:24:29,782 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼Դȡ +¼ʱ䣺2025-02-17 14:24:29,809 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:Դȡ,׼ȡԴ +¼ʱ䣺2025-02-17 14:29:56,521 ߳ID:[1]- Ϣ:SyncServiceOperation :Start Ϣ:SyncSerivce: +¼ʱ䣺2025-02-17 14:29:56,645 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ +¼ʱ䣺2025-02-17 14:29:56,646 ߳ID:[1]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:־ +¼ʱ䣺2025-02-17 14:29:56,739 ߳ID:[1]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ6 +¼ʱ䣺2025-02-17 14:30:18,465 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼ֶβѯɸѡ +¼ʱ䣺2025-02-17 14:30:18,534 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱΪ2020-01-01 00:00:00 +¼ʱ䣺2025-02-17 14:30:18,534 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:׼Դȡ +¼ʱ䣺2025-02-17 14:30:18,569 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:Դȡ,׼ȡԴ +¼ʱ䣺2025-02-17 14:30:49,173 ߳ID:[1]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ڶȡ׼Դ,5 +¼ʱ䣺2025-02-17 14:30:49,262 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:ȡĿݵݽṹ +¼ʱ䣺2025-02-17 14:30:49,262 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:Դݣ׼ +¼ʱ䣺2025-02-17 14:31:03,028 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:׼ǷϷ +¼ʱ䣺2025-02-17 14:31:03,051 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:вĿݣ׼()5 +¼ʱ䣺2025-02-17 14:31:03,107 ߳ID:[1]- Ϣ:SyncServiceOperation :RunUpLoad Ϣ:ϴɣгɹ5ʧ00............................................................................................................