diff --git a/AuthorizeDll/CNAS_Authorize.exe b/AuthorizeDll/CNAS_Authorize.exe
index 79ceeff..348f80f 100644
Binary files a/AuthorizeDll/CNAS_Authorize.exe and b/AuthorizeDll/CNAS_Authorize.exe differ
diff --git a/CNAS_DBSync/CNAS_DBSync.csproj b/CNAS_DBSync/CNAS_DBSync.csproj
index 27ffd55..9cf4e9e 100644
--- a/CNAS_DBSync/CNAS_DBSync.csproj
+++ b/CNAS_DBSync/CNAS_DBSync.csproj
@@ -93,6 +93,12 @@
ActivationForm.cs
+
+ Form
+
+
+ frmLockPwd.cs
+
Form
@@ -214,6 +220,9 @@
frmInstrumentCode.cs
+
+ frmLockPwd.cs
+
frmOperationPwd.cs
diff --git a/CNAS_DBSync/frmLockPwd.Designer.cs b/CNAS_DBSync/frmLockPwd.Designer.cs
new file mode 100644
index 0000000..8908b49
--- /dev/null
+++ b/CNAS_DBSync/frmLockPwd.Designer.cs
@@ -0,0 +1,110 @@
+namespace CNAS_DBSync
+{
+ partial class frmLockPwd
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.lblPrompt = new System.Windows.Forms.Label();
+ this.txtPwd = new System.Windows.Forms.TextBox();
+ this.btnOK = new System.Windows.Forms.Button();
+ this.btnCancel = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // lblPrompt
+ //
+ this.lblPrompt.AutoSize = true;
+ this.lblPrompt.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.lblPrompt.Location = new System.Drawing.Point(30, 25);
+ this.lblPrompt.Name = "lblPrompt";
+ this.lblPrompt.Size = new System.Drawing.Size(180, 20);
+ this.lblPrompt.TabIndex = 0;
+ this.lblPrompt.Text = "请输入cnas数据库root密码";
+ //
+ // txtPwd
+ //
+ this.txtPwd.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtPwd.Location = new System.Drawing.Point(30, 55);
+ this.txtPwd.Name = "txtPwd";
+ this.txtPwd.PasswordChar = '*';
+ this.txtPwd.Size = new System.Drawing.Size(320, 26);
+ this.txtPwd.TabIndex = 1;
+ //
+ // btnOK
+ //
+ this.btnOK.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnOK.Location = new System.Drawing.Point(100, 100);
+ this.btnOK.Name = "btnOK";
+ this.btnOK.Size = new System.Drawing.Size(80, 35);
+ this.btnOK.TabIndex = 2;
+ this.btnOK.Text = "确认";
+ this.btnOK.UseVisualStyleBackColor = true;
+ this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
+ //
+ // btnCancel
+ //
+ this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
+ this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.btnCancel.Location = new System.Drawing.Point(200, 100);
+ this.btnCancel.Name = "btnCancel";
+ this.btnCancel.Size = new System.Drawing.Size(80, 35);
+ this.btnCancel.TabIndex = 3;
+ this.btnCancel.Text = "取消";
+ this.btnCancel.UseVisualStyleBackColor = true;
+ //
+ // frmLockPwd
+ //
+ this.AcceptButton = this.btnOK;
+ this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.CancelButton = this.btnCancel;
+ this.ClientSize = new System.Drawing.Size(380, 160);
+ this.Controls.Add(this.btnCancel);
+ this.Controls.Add(this.btnOK);
+ this.Controls.Add(this.txtPwd);
+ this.Controls.Add(this.lblPrompt);
+ this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
+ this.KeyPreview = true;
+ this.MaximizeBox = false;
+ this.MinimizeBox = false;
+ this.Name = "frmLockPwd";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
+ this.Text = "密码验证";
+ this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmLockPwd_KeyDown);
+ this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frmLockPwd_MouseDown);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label lblPrompt;
+ private System.Windows.Forms.TextBox txtPwd;
+ private System.Windows.Forms.Button btnOK;
+ private System.Windows.Forms.Button btnCancel;
+ }
+}
diff --git a/CNAS_DBSync/frmLockPwd.cs b/CNAS_DBSync/frmLockPwd.cs
new file mode 100644
index 0000000..beea524
--- /dev/null
+++ b/CNAS_DBSync/frmLockPwd.cs
@@ -0,0 +1,85 @@
+using CnasSynchronousCommon;
+using CnasSynchronusClient;
+using CnasSynchrousModel;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+
+namespace CNAS_DBSync
+{
+ public partial class frmLockPwd : Form
+ {
+ private bool isLocking;
+
+ public frmLockPwd(bool isLocking)
+ {
+ InitializeComponent();
+ this.isLocking = isLocking;
+ this.Text = isLocking ? "锁定操作" : "解锁操作";
+ }
+
+ private void btnOK_Click(object sender, EventArgs e)
+ {
+ Config();
+ }
+
+ public void Config()
+ {
+ DataBaseInfo Cnasdb = FileOperation.GetLocalCnasDB();
+ if (this.txtPwd.Text.Trim() == Cnasdb.DBPwd)
+ {
+ // 保存锁定状态
+ LockStateOperation.SaveLockState(isLocking);
+ this.DialogResult = DialogResult.OK;
+ this.Close();
+ }
+ else
+ {
+ MessageBox.Show("密码无效。");
+ }
+ }
+
+ private void frmLockPwd_KeyDown(object sender, KeyEventArgs e)
+ {
+ try
+ {
+ if (!btnOK.Focused)
+ {
+ FormKeyEventClass fke = new FormKeyEventClass();
+ fke.FormKeyEvent += new FormKeyEventClass.FormKey(Config);
+ fke.FormKeyEventRun(e);
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message.ToString());
+ }
+ }
+
+ [System.Runtime.InteropServices.DllImport("user32.dll")]
+ public static extern bool ReleaseCapture();
+ [System.Runtime.InteropServices.DllImport("user32.dll")]
+ public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);
+ public const int WM_SYSCOMMAND = 0x0112;
+ public const int SC_MOVE = 0xF010;
+ public const int HTCAPTION = 0x0002;
+
+ private void frmLockPwd_MouseDown(object sender, MouseEventArgs e)
+ {
+ try
+ {
+ ReleaseCapture();
+ SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0);
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message.ToString());
+ }
+ }
+ }
+}
diff --git a/CNAS_DBSync/frmLockPwd.resx b/CNAS_DBSync/frmLockPwd.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/CNAS_DBSync/frmLockPwd.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/CNAS_DBSync/frmSyncParams.Designer.cs b/CNAS_DBSync/frmSyncParams.Designer.cs
index 41b9850..f96f955 100644
--- a/CNAS_DBSync/frmSyncParams.Designer.cs
+++ b/CNAS_DBSync/frmSyncParams.Designer.cs
@@ -1,4 +1,4 @@
-namespace CNAS_DBSync
+namespace CNAS_DBSync
{
partial class frmSyncParams
{
@@ -82,6 +82,7 @@
this.btnLoadDBData = new System.Windows.Forms.Button();
this.btnAddMapping = new System.Windows.Forms.Button();
this.btnDatabaseConfig = new System.Windows.Forms.Button();
+ this.btnLock = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.dgvInstrument = new System.Windows.Forms.DataGridView();
this.Code = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -199,7 +200,7 @@
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(3, 23);
+ this.splitContainer1.Location = new System.Drawing.Point(3, 27);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
@@ -211,8 +212,8 @@
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
- this.splitContainer1.Size = new System.Drawing.Size(1045, 652);
- this.splitContainer1.SplitterDistance = 264;
+ this.splitContainer1.Size = new System.Drawing.Size(1045, 648);
+ this.splitContainer1.SplitterDistance = 262;
this.splitContainer1.TabIndex = 2;
//
// panel15
@@ -221,7 +222,7 @@
this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel15.Location = new System.Drawing.Point(0, 37);
this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(1045, 227);
+ this.panel15.Size = new System.Drawing.Size(1045, 225);
this.panel15.TabIndex = 2;
//
// dgvMapping
@@ -254,9 +255,8 @@
this.dgvMapping.RowsDefaultCellStyle = dataGridViewCellStyle2;
this.dgvMapping.RowTemplate.Height = 23;
this.dgvMapping.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvMapping.Size = new System.Drawing.Size(1045, 227);
+ this.dgvMapping.Size = new System.Drawing.Size(1045, 225);
this.dgvMapping.TabIndex = 1;
-
//
// InstrumentField
//
@@ -306,12 +306,12 @@
this.cmsMapping.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnDelMap});
this.cmsMapping.Name = "cmsMapping";
- this.cmsMapping.Size = new System.Drawing.Size(109, 28);
+ this.cmsMapping.Size = new System.Drawing.Size(117, 34);
//
// btnDelMap
//
this.btnDelMap.Name = "btnDelMap";
- this.btnDelMap.Size = new System.Drawing.Size(108, 24);
+ this.btnDelMap.Size = new System.Drawing.Size(116, 30);
this.btnDelMap.Text = "移除";
this.btnDelMap.Click += new System.EventHandler(this.btnDelMap_Click);
//
@@ -332,7 +332,7 @@
this.txtInstrumentColumn.Location = new System.Drawing.Point(453, 9);
this.txtInstrumentColumn.Name = "txtInstrumentColumn";
this.txtInstrumentColumn.ReadOnly = true;
- this.txtInstrumentColumn.Size = new System.Drawing.Size(195, 27);
+ this.txtInstrumentColumn.Size = new System.Drawing.Size(195, 31);
this.txtInstrumentColumn.TabIndex = 7;
this.txtInstrumentColumn.DoubleClick += new System.EventHandler(this.txtInstrumentColumn_DoubleClick);
//
@@ -342,7 +342,7 @@
this.cbxCNASColumn.FormattingEnabled = true;
this.cbxCNASColumn.Location = new System.Drawing.Point(453, 9);
this.cbxCNASColumn.Name = "cbxCNASColumn";
- this.cbxCNASColumn.Size = new System.Drawing.Size(184, 28);
+ this.cbxCNASColumn.Size = new System.Drawing.Size(184, 32);
this.cbxCNASColumn.TabIndex = 6;
this.cbxCNASColumn.Visible = false;
this.cbxCNASColumn.SelectedIndexChanged += new System.EventHandler(this.cbxCNASColumn_SelectedIndexChanged);
@@ -353,7 +353,7 @@
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(321, 10);
this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(141, 20);
+ this.label3.Size = new System.Drawing.Size(168, 24);
this.label3.TabIndex = 5;
this.label3.Text = "CNAS仪器信息列:";
//
@@ -362,7 +362,7 @@
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 10);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(114, 20);
+ this.label2.Size = new System.Drawing.Size(136, 24);
this.label2.TabIndex = 4;
this.label2.Text = "字段映射信息:";
//
@@ -373,16 +373,16 @@
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(1045, 384);
+ this.tabControl1.Size = new System.Drawing.Size(1045, 382);
this.tabControl1.TabIndex = 1;
//
// tabPage6
//
this.tabPage6.Controls.Add(this.splitContainer2);
- this.tabPage6.Location = new System.Drawing.Point(4, 29);
+ this.tabPage6.Location = new System.Drawing.Point(4, 33);
this.tabPage6.Name = "tabPage6";
this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(1037, 351);
+ this.tabPage6.Size = new System.Drawing.Size(1037, 345);
this.tabPage6.TabIndex = 1;
this.tabPage6.Text = "字段";
this.tabPage6.UseVisualStyleBackColor = true;
@@ -402,7 +402,7 @@
//
this.splitContainer2.Panel2.Controls.Add(this.dgvCnas);
this.splitContainer2.Panel2.Controls.Add(this.pnlRight);
- this.splitContainer2.Size = new System.Drawing.Size(1031, 345);
+ this.splitContainer2.Size = new System.Drawing.Size(1031, 339);
this.splitContainer2.SplitterDistance = 508;
this.splitContainer2.TabIndex = 1;
//
@@ -432,7 +432,7 @@
this.dgvInstruDS.RowsDefaultCellStyle = dataGridViewCellStyle4;
this.dgvInstruDS.RowTemplate.Height = 23;
this.dgvInstruDS.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvInstruDS.Size = new System.Drawing.Size(508, 311);
+ this.dgvInstruDS.Size = new System.Drawing.Size(508, 305);
this.dgvInstruDS.TabIndex = 1;
//
// InstruFieldName
@@ -478,7 +478,7 @@
this.cbxInstrument.FormattingEnabled = true;
this.cbxInstrument.Location = new System.Drawing.Point(129, 6);
this.cbxInstrument.Name = "cbxInstrument";
- this.cbxInstrument.Size = new System.Drawing.Size(200, 28);
+ this.cbxInstrument.Size = new System.Drawing.Size(200, 32);
this.cbxInstrument.TabIndex = 1;
this.cbxInstrument.SelectedIndexChanged += new System.EventHandler(this.cbxInstrument_SelectedIndexChanged);
//
@@ -487,7 +487,7 @@
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(3, 10);
this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(129, 20);
+ this.label12.Size = new System.Drawing.Size(154, 24);
this.label12.TabIndex = 0;
this.label12.Text = "设备数据源表名:";
//
@@ -517,7 +517,7 @@
this.dgvCnas.RowsDefaultCellStyle = dataGridViewCellStyle6;
this.dgvCnas.RowTemplate.Height = 23;
this.dgvCnas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvCnas.Size = new System.Drawing.Size(519, 311);
+ this.dgvCnas.Size = new System.Drawing.Size(519, 305);
this.dgvCnas.TabIndex = 2;
//
// CNASFieldName
@@ -563,7 +563,7 @@
this.cbxCnas.FormattingEnabled = true;
this.cbxCnas.Location = new System.Drawing.Point(150, 6);
this.cbxCnas.Name = "cbxCnas";
- this.cbxCnas.Size = new System.Drawing.Size(184, 28);
+ this.cbxCnas.Size = new System.Drawing.Size(184, 32);
this.cbxCnas.TabIndex = 2;
this.cbxCnas.SelectedIndexChanged += new System.EventHandler(this.cbxCnas_SelectedIndexChanged);
//
@@ -572,13 +572,14 @@
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(3, 10);
this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(141, 20);
+ this.label13.Size = new System.Drawing.Size(168, 24);
this.label13.TabIndex = 1;
this.label13.Text = "CNAS数据库表名:";
//
// panel1
//
this.panel1.Controls.Add(this.panel7);
+ this.panel1.Controls.Add(this.btnLock);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 678);
this.panel1.Name = "panel1";
@@ -600,7 +601,7 @@
//
// btnSourceFilter
//
- this.btnSourceFilter.Location = new System.Drawing.Point(86, 3);
+ this.btnSourceFilter.Location = new System.Drawing.Point(89, 3);
this.btnSourceFilter.Name = "btnSourceFilter";
this.btnSourceFilter.Size = new System.Drawing.Size(79, 32);
this.btnSourceFilter.TabIndex = 6;
@@ -610,7 +611,7 @@
//
// btnCNASFieldConfig
//
- this.btnCNASFieldConfig.Location = new System.Drawing.Point(168, 3);
+ this.btnCNASFieldConfig.Location = new System.Drawing.Point(170, 3);
this.btnCNASFieldConfig.Name = "btnCNASFieldConfig";
this.btnCNASFieldConfig.Size = new System.Drawing.Size(79, 35);
this.btnCNASFieldConfig.TabIndex = 5;
@@ -630,9 +631,9 @@
//
// btnAddMapping
//
- this.btnAddMapping.Location = new System.Drawing.Point(3, 3);
+ this.btnAddMapping.Location = new System.Drawing.Point(-5, 3);
this.btnAddMapping.Name = "btnAddMapping";
- this.btnAddMapping.Size = new System.Drawing.Size(79, 32);
+ this.btnAddMapping.Size = new System.Drawing.Size(95, 32);
this.btnAddMapping.TabIndex = 2;
this.btnAddMapping.Text = "新增映射";
this.btnAddMapping.UseVisualStyleBackColor = true;
@@ -648,6 +649,16 @@
this.btnDatabaseConfig.UseVisualStyleBackColor = true;
this.btnDatabaseConfig.Click += new System.EventHandler(this.btnDatabaseConfig_Click);
//
+ // btnLock
+ //
+ this.btnLock.Location = new System.Drawing.Point(14, 4);
+ this.btnLock.Name = "btnLock";
+ this.btnLock.Size = new System.Drawing.Size(58, 32);
+ this.btnLock.TabIndex = 20;
+ this.btnLock.Text = "锁定";
+ this.btnLock.UseVisualStyleBackColor = true;
+ this.btnLock.Click += new System.EventHandler(this.btnLock_Click);
+ //
// groupBox1
//
this.groupBox1.Controls.Add(this.dgvInstrument);
@@ -679,7 +690,7 @@
this.dgvInstrument.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Code});
this.dgvInstrument.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInstrument.Location = new System.Drawing.Point(6, 60);
+ this.dgvInstrument.Location = new System.Drawing.Point(6, 64);
this.dgvInstrument.MultiSelect = false;
this.dgvInstrument.Name = "dgvInstrument";
this.dgvInstrument.ReadOnly = true;
@@ -688,7 +699,7 @@
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
this.dgvInstrument.RowsDefaultCellStyle = dataGridViewCellStyle8;
this.dgvInstrument.RowTemplate.Height = 23;
- this.dgvInstrument.Size = new System.Drawing.Size(134, 610);
+ this.dgvInstrument.Size = new System.Drawing.Size(134, 606);
this.dgvInstrument.TabIndex = 0;
this.dgvInstrument.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvInstrument_CellDoubleClick);
this.dgvInstrument.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvInstrument_CellMouseDown);
@@ -706,17 +717,17 @@
// panel17
//
this.panel17.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel17.Location = new System.Drawing.Point(140, 60);
+ this.panel17.Location = new System.Drawing.Point(140, 64);
this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(3, 610);
+ this.panel17.Size = new System.Drawing.Size(3, 606);
this.panel17.TabIndex = 8;
//
// panel16
//
this.panel16.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel16.Location = new System.Drawing.Point(3, 60);
+ this.panel16.Location = new System.Drawing.Point(3, 64);
this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(3, 610);
+ this.panel16.Size = new System.Drawing.Size(3, 606);
this.panel16.TabIndex = 7;
//
// panel9
@@ -753,7 +764,7 @@
//
this.panel8.Controls.Add(this.label1);
this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel8.Location = new System.Drawing.Point(3, 23);
+ this.panel8.Location = new System.Drawing.Point(3, 27);
this.panel8.Name = "panel8";
this.panel8.Size = new System.Drawing.Size(140, 37);
this.panel8.TabIndex = 4;
@@ -763,7 +774,7 @@
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 9);
this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(84, 20);
+ this.label1.Size = new System.Drawing.Size(100, 24);
this.label1.TabIndex = 3;
this.label1.Text = "当前选中:";
//
@@ -778,6 +789,7 @@
//
// menuStrip1
//
+ this.menuStrip1.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmSystemSetting,
@@ -786,14 +798,14 @@
this.tsmHelper});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(1197, 30);
+ this.menuStrip1.Size = new System.Drawing.Size(1197, 32);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// tsmSystemSetting
//
this.tsmSystemSetting.Name = "tsmSystemSetting";
- this.tsmSystemSetting.Size = new System.Drawing.Size(104, 24);
+ this.tsmSystemSetting.Size = new System.Drawing.Size(123, 28);
this.tsmSystemSetting.Text = "系统设置(&G)";
this.tsmSystemSetting.Visible = false;
this.tsmSystemSetting.Click += new System.EventHandler(this.tsmSystemSetting_Click);
@@ -801,21 +813,21 @@
// tsmServiceSetting
//
this.tsmServiceSetting.Name = "tsmServiceSetting";
- this.tsmServiceSetting.Size = new System.Drawing.Size(102, 26);
+ this.tsmServiceSetting.Size = new System.Drawing.Size(120, 28);
this.tsmServiceSetting.Text = "服务设置(&S)";
this.tsmServiceSetting.Click += new System.EventHandler(this.tsmServiceSetting_Click);
//
// tsmSourceSetting
//
this.tsmSourceSetting.Name = "tsmSourceSetting";
- this.tsmSourceSetting.Size = new System.Drawing.Size(101, 26);
+ this.tsmSourceSetting.Size = new System.Drawing.Size(119, 28);
this.tsmSourceSetting.Text = "来源设置(&L)";
this.tsmSourceSetting.Click += new System.EventHandler(this.tsmSourceSetting_Click);
//
// tsmHelper
//
this.tsmHelper.Name = "tsmHelper";
- this.tsmHelper.Size = new System.Drawing.Size(75, 26);
+ this.tsmHelper.Size = new System.Drawing.Size(88, 28);
this.tsmHelper.Text = "帮助(&H)";
this.tsmHelper.Click += new System.EventHandler(this.tsmHelper_Click);
//
@@ -899,7 +911,7 @@
//
// frmSyncParams
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1207, 793);
this.Controls.Add(this.panel4);
@@ -990,13 +1002,6 @@
private System.Windows.Forms.Panel panel5;
private System.Windows.Forms.Button btnLoadDBData;
private System.Windows.Forms.Panel panel7;
- private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.Panel panel8;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.Panel panel12;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Panel panel13;
- private System.Windows.Forms.Panel panel6;
private System.Windows.Forms.Button btnCNASFieldConfig;
private System.Windows.Forms.Button btnSourceFilter;
private System.Windows.Forms.Panel panel15;
@@ -1009,6 +1014,8 @@
private System.Windows.Forms.DataGridViewTextBoxColumn Code;
private System.Windows.Forms.Panel panel17;
private System.Windows.Forms.Panel panel16;
+ private System.Windows.Forms.Panel panel9;
+ private System.Windows.Forms.Panel panel8;
private System.Windows.Forms.Panel pnlMenuTop;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem tsmSystemSetting;
@@ -1028,6 +1035,11 @@
private System.Windows.Forms.DataGridViewTextBoxColumn CnasDataType;
private System.Windows.Forms.DataGridViewTextBoxColumn 字段描述;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
+ private System.Windows.Forms.Panel panel4;
+ private System.Windows.Forms.Panel panel6;
+ private System.Windows.Forms.Panel panel11;
+ private System.Windows.Forms.Panel panel12;
+ private System.Windows.Forms.Panel panel13;
+ private System.Windows.Forms.Button btnLock;
}
}
-
diff --git a/CNAS_DBSync/frmSyncParams.cs b/CNAS_DBSync/frmSyncParams.cs
index 557d065..2c4df26 100644
--- a/CNAS_DBSync/frmSyncParams.cs
+++ b/CNAS_DBSync/frmSyncParams.cs
@@ -1,4 +1,4 @@
-using CnasSynchronousCommon;
+using CnasSynchronousCommon;
using CnasSynchronusClient;
using CnasSynchrousModel;
using System;
@@ -25,6 +25,7 @@ namespace CNAS_DBSync
public Dictionary dictInstruTables = new Dictionary(); //当前仪器项的来源表结构
private SyncInstrumentItemInfo syncInstrumentItem; //其他调用传递的仪器项
public ReferenceChangeSyncParamHanlder ParamsChangedDelegate; //传递仪器参数委托
+ private bool isLocked = false; // Track lock state
private string strMode = "";
private string strTableInfoMode = ""; //获取所有表信息的方式;0为自动获取,1为手动输入
@@ -54,13 +55,40 @@ namespace CNAS_DBSync
this.btnDel.Visible = false;
}
-
+ if (LockStateOperation.GetLockState())
+ {
+ isLocked = true;
+ btnLock.Text = "解锁";
+ btnAdd.Enabled = false;
+ btnDel.Enabled = false;
+ }
}
-
-
-
-
+ private void btnLock_Click(object sender, EventArgs e)
+ {
+ if (isLocked)
+ {
+ // Try to unlock
+ if (new frmLockPwd(false).ShowDialog() == DialogResult.OK)
+ {
+ isLocked = false;
+ btnLock.Text = "锁定";
+ btnAdd.Enabled = true;
+ btnDel.Enabled = true;
+ }
+ }
+ else
+ {
+ // Try to lock
+ if (new frmLockPwd(true).ShowDialog() == DialogResult.OK)
+ {
+ isLocked = true;
+ btnLock.Text = "解锁";
+ btnAdd.Enabled = false;
+ btnDel.Enabled = false;
+ }
+ }
+ }
private void Option1_Click(object sender, EventArgs e)
{
@@ -373,7 +401,7 @@ namespace CNAS_DBSync
case DataSourceType.Kingbase:
dtTableType = SelectTableType.KingSql(strTableName_Instru);
break;
-
+
default:
strTableName_Instru = matchedInstrument.SyncInstrumentDSInfo.InstrumentDataSourceType.ToString();
@@ -409,13 +437,13 @@ namespace CNAS_DBSync
}
break;
case DataSourceType.Oracle:
- strTableName_Instru = cbxInstrument.Text.ToString();
+ strTableName_Instru = cbxInstrument.Text.ToString();
if (dictInstruTables.ContainsKey(strTableName_Instru))
{
DataTable dt = dictInstruTables[strTableName_Instru];
if (dt != null)
{
- dtInstruShow = new DataTable();
+ dtInstruShow = new DataTable();
dtInstruShow.Columns.Add("InstruFieldName");
dtInstruShow.Columns.Add("InstruDataType");
@@ -831,10 +859,10 @@ namespace CNAS_DBSync
case DataSourceType.Access:
//根据手动输入来源库的表名加载字段
- dataTableStruct = SelectTableType.AccSql(currentSyncItem.SyncInstrumentDSInfo, sql);
+ dataTableStruct = SelectTableType.AccSql(currentSyncItem.SyncInstrumentDSInfo, sql);
break;
default:
-
+
break;
}
DataTable dtInstruShow = new DataTable();
diff --git a/CnasSynchronusClient/CnasSynchronusBLL.csproj b/CnasSynchronusClient/CnasSynchronusBLL.csproj
index 372658b..42877b6 100644
--- a/CnasSynchronusClient/CnasSynchronusBLL.csproj
+++ b/CnasSynchronusClient/CnasSynchronusBLL.csproj
@@ -58,6 +58,7 @@
+
diff --git a/CnasSynchronusClient/LockStateOperation.cs b/CnasSynchronusClient/LockStateOperation.cs
new file mode 100644
index 0000000..15e66d8
--- /dev/null
+++ b/CnasSynchronusClient/LockStateOperation.cs
@@ -0,0 +1,54 @@
+using CnasSynchronousCommon;
+using System;
+
+namespace CnasSynchronusClient
+{
+ public class LockStateOperation
+ {
+ private static readonly string strLocalConfigPath = FileHelper.getBasePath() + @"\Data\";
+
+ ///
+ /// 获取表单锁定状态
+ ///
+ ///
+ public static bool GetLockState()
+ {
+ bool isLocked = false;
+ try
+ {
+ string strLocalFileString = FileHelper.GetLocalFile(strLocalConfigPath, "FormLockState.mes");
+ if (strLocalFileString != "")
+ {
+ string strState = EncryptionOperation.Decrypt(strLocalFileString, "NZJXD--CnasClientJXDJXDJ");
+ bool.TryParse(strState, out isLocked);
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return isLocked;
+ }
+
+ ///
+ /// 保存表单锁定状态到本地
+ ///
+ /// 锁定状态
+ ///
+ public static bool SaveLockState(bool isLocked)
+ {
+ bool bIfSuccess = true;
+ try
+ {
+ string strEncrypString = EncryptionOperation.Encrypt(isLocked.ToString(), "NZJXD--CnasClientJXDJXDJ");
+ bIfSuccess = FileHelper.SaveLocalFile(strLocalConfigPath, "FormLockState.mes", strEncrypString);
+ }
+ catch (Exception ex)
+ {
+ bIfSuccess = false;
+ AppLog.Error(ex.Message);
+ }
+ return bIfSuccess;
+ }
+ }
+}
diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe
index 62b2ae4..52eaec4 100644
Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ
diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll
index 222c760..d78d153 100644
Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ
diff --git a/dll/Data/FormLockState.mes b/dll/Data/FormLockState.mes
new file mode 100644
index 0000000..4f848df
--- /dev/null
+++ b/dll/Data/FormLockState.mes
@@ -0,0 +1 @@
+ROcwvAcTAdc=
\ No newline at end of file
diff --git a/dll/ErrorLog/20250313.txt b/dll/ErrorLog/20250313.txt
index db92458..acdc605 100644
--- a/dll/ErrorLog/20250313.txt
+++ b/dll/ErrorLog/20250313.txt
@@ -1888,3 +1888,22035 @@
¼ʱ䣺2025-03-13 16:02:20,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
¼ʱ䣺2025-03-13 16:02:20,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
¼ʱ䣺2025-03-13 16:02:20,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,782 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,785 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,825 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,954 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:31,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:31,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:31,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,065 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,065 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,212 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,215 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,217 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,218 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,218 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,220 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,221 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,222 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,225 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,226 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,227 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,228 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,229 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,230 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,235 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,236 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,237 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,238 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,238 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,238 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,239 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,240 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,241 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,242 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,243 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,243 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,244 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,245 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,247 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,248 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,248 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,250 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,250 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,250 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,253 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,254 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,257 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,259 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,260 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,263 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,265 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,266 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,267 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,269 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,271 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,275 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,279 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,280 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,315 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,331 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,565 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,596 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,625 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,640 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,646 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,750 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,785 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,786 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:18:32,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:18:32,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:18:32,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,212 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,217 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,220 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,221 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,225 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,227 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,233 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,241 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,248 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,249 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,253 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,259 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,275 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,279 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,283 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,331 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,465 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,519 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,534 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,539 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,542 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,765 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,765 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,765 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,768 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,782 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,785 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,786 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,799 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,804 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,810 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,812 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,813 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,819 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,822 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,825 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,828 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,832 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,833 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,853 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,853 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,862 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,905 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,905 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:47:18,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:18,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:18,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,100 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,156 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,185 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,193 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,196 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,199 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,204 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,204 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:19,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:19,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:19,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,493 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,500 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,515 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,534 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,618 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,774 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,786 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,799 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,804 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,813 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,819 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,822 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,826 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,828 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,832 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,833 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,846 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:38,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:47:38,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:38,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,065 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,127 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,156 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,168 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,168 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,168 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,170 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,176 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,185 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,199 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,204 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,206 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,208 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,208 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,493 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,500 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,515 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,523 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,542 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:47:39,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:47:39,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:47:39,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,810 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,812 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,899 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,912 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:36,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:36,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:36,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,065 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,100 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,127 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,156 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,162 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,165 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,176 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,465 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,485 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,519 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,542 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,618 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,640 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,665 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,846 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,862 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,865 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,912 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,912 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,946 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,954 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:37,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:37,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:37,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:56:38,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:56:38,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:56:38,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,610 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,640 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,649 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,774 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,782 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,786 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,793 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,799 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,918 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,954 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:57:02,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:02,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:02,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,100 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,100 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,318 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,325 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,331 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,468 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,500 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 16:57:03,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 16:57:03,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 16:57:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,465 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,468 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,485 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,519 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,523 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,565 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,762 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,768 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,774 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,782 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,785 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,786 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,793 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,804 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,804 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,810 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,812 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,819 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,822 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,826 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,828 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,846 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,853 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,853 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,865 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,899 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,899 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,899 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:17,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:17,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:17,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,115 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,127 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,162 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,170 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,176 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,193 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,193 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,208 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,220 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,221 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,222 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,225 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,225 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,226 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:00:18,226 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:00:18,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:00:18,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,465 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,493 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,500 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,523 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,534 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,539 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,539 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,542 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,625 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,862 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,865 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,946 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:10,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:10,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:10,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,100 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,283 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,315 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,325 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,468 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,500 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:01:11,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:01:11,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:01:11,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,199 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,206 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,215 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,219 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,220 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,221 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,222 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,222 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,228 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,229 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,230 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,231 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,232 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,232 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,232 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,234 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,235 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,236 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,239 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,240 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,241 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,242 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,243 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,244 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,245 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,247 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,249 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,252 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,253 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,254 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,257 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,259 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,260 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,263 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,264 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,265 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,267 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,269 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,272 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,280 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,282 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,283 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,318 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,325 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,424 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,557 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,596 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,625 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,665 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,750 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,912 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:03:49,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:49,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:49,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:03:50,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:03:50,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:03:50,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:04:15,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:15,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:15,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,065 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,227 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,229 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,230 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,233 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,236 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,252 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,263 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,264 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,271 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,272 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,275 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,283 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,318 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,331 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,338 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,580 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,625 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,640 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,646 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,649 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,768 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,774 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,905 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,916 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,918 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:16,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:16,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:16,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:04:17,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:04:17,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:04:17,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,969 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,969 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:22,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:22,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:22,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,102 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,127 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,150 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,170 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,185 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,190 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,199 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,204 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,206 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,208 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,212 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,215 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,420 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,424 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,439 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,468 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,485 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,485 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,500 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,565 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,601 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,610 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,616 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,618 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,640 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,819 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,825 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,832 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,833 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,850 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,862 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,889 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,905 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,996 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,996 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:23,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:23,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:23,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,086 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,100 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:07:24,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:07:24,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:07:24,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,247 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,259 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,262 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,264 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,266 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,267 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,267 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,269 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,279 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,325 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,371 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,371 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,427 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,427 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,429 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,432 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,446 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,472 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,472 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,479 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,485 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,523 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,526 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,665 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,746 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,746 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,750 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,762 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,768 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,774 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,778 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,778 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,799 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,799 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,802 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,802 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,812 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,819 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,822 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,825 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,826 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,828 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,833 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,859 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,862 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,870 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:12,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:12,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:12,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,150 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,165 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,165 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,176 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,184 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,190 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,193 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,196 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,208 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,210 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,217 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,219 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,220 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,221 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,222 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,225 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,228 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,230 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,231 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,233 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,236 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,237 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,238 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,238 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,239 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,240 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,241 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,243 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,245 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,248 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,250 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,250 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,252 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,253 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,257 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,259 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,262 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,264 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,267 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,269 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,275 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,279 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,279 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,280 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,282 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,290 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,308 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,315 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,334 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,338 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,388 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,388 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:13,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:13,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:13,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,127 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,138 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,152 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,156 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,162 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,163 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,168 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,168 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,168 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,170 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,180 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,185 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,196 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,199 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,206 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,208 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,212 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,214 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,215 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,218 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,225 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,225 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,226 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,227 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,228 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,229 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,231 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,242 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,244 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,245 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,246 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,247 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,249 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,254 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,257 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,257 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,259 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,259 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,263 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,265 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,266 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,267 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,267 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,271 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,279 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,279 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,280 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,282 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,283 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,294 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,294 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,301 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,301 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,303 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,303 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,316 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,316 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,343 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,343 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,346 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,346 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,347 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,347 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,374 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,374 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,376 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,379 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,379 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,559 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,566 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,566 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,596 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,610 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,618 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,618 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,633 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,762 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,765 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,765 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,765 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,776 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,785 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,791 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,793 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,804 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,807 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,807 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,816 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,816 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,819 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,819 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,822 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,825 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,826 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,828 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,833 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,836 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,836 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apostgreGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apostgreSELECT * FROM apostgre Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apostgreMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===bkingbaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===bkingbaseSELECT * FROM bkingbase Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===bkingbaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,954 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,961 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,961 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dstuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dstuSELECT * FROM dstu Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dstuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,994 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-03-13 17:13:44,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:44,999 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:44,999 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,003 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,003 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,007 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,025 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,063 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,069 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,071 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,084 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,095 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,113 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,115 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,120 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,123 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,129 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,129 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,136 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,136 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,145 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,145 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-03-13 17:13:45,147 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-03-13 17:13:45,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-03-13 17:13:45,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table