Преглед на файлове

提交截取功能

final
DESKTOP-58BB7H3\ZJH преди 3 месеца
родител
ревизия
0ce5ad53d5
променени са 23 файла, в които са добавени 1074 реда и са изтрити 95 реда
  1. Двоични данни
      .vs/CNAS_DBSync/v15/.suo
  2. Двоични данни
      .vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm
  3. Двоични данни
      .vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal
  4. Двоични данни
      AuthorizeDll/CNAS_Authorize.exe
  5. +12
    -3
      CNAS_DBSync/CNAS_DBSync.csproj
  6. +2
    -2
      CNAS_DBSync/frmCNASValue.cs
  7. +0
    -7
      CNAS_DBSync/frmServiceConfig.cs
  8. +51
    -51
      CNAS_DBSync/frmSplitParam.Designer.cs
  9. +6
    -18
      CNAS_DBSync/frmSplitParam.cs
  10. +181
    -0
      CNAS_DBSync/frmSplitParamnew.Designer.cs
  11. +76
    -0
      CNAS_DBSync/frmSplitParamnew.cs
  12. +120
    -0
      CNAS_DBSync/frmSplitParamnew.resx
  13. Двоични данни
      dll/CNAS_BalanceClient.exe
  14. +11
    -2
      dll/CNAS_BalanceClient.exe.config
  15. Двоични данни
      dll/CNAS_DBSync.exe
  16. Двоични данни
      dll/CNAS_RunSync.exe
  17. +3
    -11
      dll/CNAS_RunSync.exe.config
  18. Двоични данни
      dll/CNAS_SerialPort.dll
  19. Двоични данни
      dll/CNAS_SyncService.exe
  20. Двоични данни
      dll/CnasSynchronusClient.dll
  21. +1
    -1
      dll/Data/FormLockState.mes
  22. +611
    -0
      dll/ErrorLog/20250314.txt
  23. Двоични данни
      dll/WF-ChangeGUID.exe

Двоични данни
.vs/CNAS_DBSync/v15/.suo Целия файл


Двоични данни
.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm Целия файл


Двоични данни
.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal Целия файл


Двоични данни
AuthorizeDll/CNAS_Authorize.exe Целия файл


+ 12
- 3
CNAS_DBSync/CNAS_DBSync.csproj Целия файл

@@ -99,6 +99,12 @@
<Compile Include="frmLockPwd.Designer.cs">
<DependentUpon>frmLockPwd.cs</DependentUpon>
</Compile>
<Compile Include="frmSplitParam.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmSplitParam.Designer.cs">
<DependentUpon>frmSplitParam.cs</DependentUpon>
</Compile>
<Compile Include="frmStartEndSubstring.cs">
<SubType>Form</SubType>
</Compile>
@@ -173,11 +179,11 @@
<Compile Include="frmSourceSetting.Designer.cs">
<DependentUpon>frmSourceSetting.cs</DependentUpon>
</Compile>
<Compile Include="frmSplitParam.cs">
<Compile Include="frmSplitParamnew.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmSplitParam.Designer.cs">
<DependentUpon>frmSplitParam.cs</DependentUpon>
<Compile Include="frmSplitParamnew.Designer.cs">
<DependentUpon>frmSplitParamnew.cs</DependentUpon>
</Compile>
<Compile Include="frmSubstring.cs">
<SubType>Form</SubType>
@@ -241,6 +247,9 @@
<EmbeddedResource Include="frmSplitParam.resx">
<DependentUpon>frmSplitParam.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmSplitParamnew.resx">
<DependentUpon>frmSplitParamnew.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmStartEndSubstring.resx">
<DependentUpon>frmStartEndSubstring.cs</DependentUpon>
</EmbeddedResource>


+ 2
- 2
CNAS_DBSync/frmCNASValue.cs Целия файл

@@ -384,7 +384,7 @@ namespace CNAS_DBSync
if (dgvCnas.Rows[e.RowIndex].Cells["Value"].Value != null)
cnasFixed.Value = dgvCnas.Rows[e.RowIndex].Cells["Value"].Value.ToString();

frmStartEndSubstring frmSplitParam = new frmStartEndSubstring(cnasFixed);
frmSplitParam frmSplitParam = new frmSplitParam(cnasFixed);
if (frmSplitParam.ShowDialog() == DialogResult.OK)
{
if (frmSplitParam.conditionvalue.Value != null && frmSplitParam.conditionvalue.Value.ToString() != "")
@@ -418,7 +418,7 @@ namespace CNAS_DBSync
if (dgvCnas.Rows[e.RowIndex].Cells["Value"].Value != null)
cnasFixed.Value = dgvCnas.Rows[e.RowIndex].Cells["Value"].Value.ToString();

frmSplitParam frmSplitParam = new frmSplitParam(cnasFixed);
frmSplitParamnew frmSplitParam = new frmSplitParamnew(cnasFixed);
if (frmSplitParam.ShowDialog() == DialogResult.OK)
{
if (frmSplitParam.conditionvalue.Value != null && frmSplitParam.conditionvalue.Value.ToString() != "")


+ 0
- 7
CNAS_DBSync/frmServiceConfig.cs Целия файл

@@ -1,18 +1,11 @@
using CnasSynchronousCommon;
using CnasSynchronusClient;
using CnasSynchrousModel;
using Microsoft.Win32;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Windows.Forms;
using System.Xml.Serialization;



+ 51
- 51
CNAS_DBSync/frmSplitParam.Designer.cs Целия файл

@@ -31,13 +31,13 @@
this.pnlAll = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.cbxPrama2 = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.txtPrama1 = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.cbxPrama2 = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.pnlAll.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
@@ -50,12 +50,12 @@
this.pnlAll.Location = new System.Drawing.Point(0, 0);
this.pnlAll.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.pnlAll.Name = "pnlAll";
this.pnlAll.Size = new System.Drawing.Size(661, 305);
this.pnlAll.Size = new System.Drawing.Size(435, 188);
this.pnlAll.TabIndex = 1;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(533, 263);
this.btnOK.Location = new System.Drawing.Point(336, 149);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(90, 30);
this.btnOK.TabIndex = 1;
@@ -75,55 +75,17 @@
this.groupBox1.Controls.Add(this.txtPrama1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(611, 224);
this.groupBox1.Size = new System.Drawing.Size(414, 131);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "条件SubString参数";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 180);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(492, 20);
this.label3.TabIndex = 10;
this.label3.Text = "(说明:若操作字符串中不存在或存在多个截断字符,则直接返回初始字符串)";
//
// cbxPrama2
//
this.cbxPrama2.FormattingEnabled = true;
this.cbxPrama2.Items.AddRange(new object[] {
"L",
"R"});
this.cbxPrama2.Location = new System.Drawing.Point(75, 103);
this.cbxPrama2.Name = "cbxPrama2";
this.cbxPrama2.Size = new System.Drawing.Size(121, 28);
this.cbxPrama2.TabIndex = 9;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(199, 108);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(104, 20);
this.label5.TabIndex = 7;
this.label5.Text = "(截断终止位)";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(200, 35);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(114, 20);
this.label4.TabIndex = 6;
this.label4.Text = "(截断起始位)";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(18, 107);
this.label2.Location = new System.Drawing.Point(18, 63);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(63, 20);
this.label2.Size = new System.Drawing.Size(51, 17);
this.label2.TabIndex = 3;
this.label2.Text = "参数2:";
//
@@ -132,7 +94,7 @@
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(18, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(63, 20);
this.label1.Size = new System.Drawing.Size(51, 17);
this.label1.TabIndex = 1;
this.label1.Text = "参数1:";
//
@@ -140,14 +102,52 @@
//
this.txtPrama1.Location = new System.Drawing.Point(75, 31);
this.txtPrama1.Name = "txtPrama1";
this.txtPrama1.Size = new System.Drawing.Size(121, 27);
this.txtPrama1.Size = new System.Drawing.Size(121, 23);
this.txtPrama1.TabIndex = 0;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(200, 35);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(64, 17);
this.label4.TabIndex = 6;
this.label4.Text = "(截断字符)";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(199, 64);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(195, 17);
this.label5.TabIndex = 7;
this.label5.Text = "(截断后返回左侧(L)/右侧(R)的内容)";
//
// cbxPrama2
//
this.cbxPrama2.FormattingEnabled = true;
this.cbxPrama2.Items.AddRange(new object[] {
"L",
"R"});
this.cbxPrama2.Location = new System.Drawing.Point(75, 59);
this.cbxPrama2.Name = "cbxPrama2";
this.cbxPrama2.Size = new System.Drawing.Size(121, 25);
this.cbxPrama2.TabIndex = 9;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 96);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(394, 17);
this.label3.TabIndex = 10;
this.label3.Text = "(说明:若操作字符串中不存在或存在多个截断字符,则直接返回初始字符串)";
//
// frmSplitParam
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(661, 305);
this.ClientSize = new System.Drawing.Size(435, 188);
this.Controls.Add(this.pnlAll);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;


+ 6
- 18
CNAS_DBSync/frmSplitParam.cs Целия файл

@@ -32,27 +32,15 @@ namespace CNAS_DBSync
MessageBox.Show("参数2不能为空。");
return;
}
//if (this.cbxPrama2.Text != "L" && this.cbxPrama2.Text != "R")
//{
// MessageBox.Show("参数2不符合规则,请重新选择。");
// return;
//}


try
if (this.cbxPrama2.Text != "L" && this.cbxPrama2.Text != "R")
{
int values1 = Convert.ToInt32(this.txtPrama1.Text) - 1;
int values2 = Convert.ToInt32(this.cbxPrama2.Text) ;
this.conditionvalue.Value = "{"+ values1 + ","+ values2 + "}";
this.DialogResult = DialogResult.OK;
this.Close();
MessageBox.Show("参数2不符合规则,请重新选择。");
return;
}
catch (Exception)
{

}
this.conditionvalue.Value = "{"+ this.txtPrama1.Text + ","+ this.cbxPrama2.Text + "}";
this.DialogResult = DialogResult.OK;
this.Close();
}

private void frmSplitParam_Load(object sender, EventArgs e)


+ 181
- 0
CNAS_DBSync/frmSplitParamnew.Designer.cs Целия файл

@@ -0,0 +1,181 @@
namespace CNAS_DBSync
{
partial class frmSplitParamnew
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.pnlAll = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.cbxPrama2 = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.txtPrama1 = new System.Windows.Forms.TextBox();
this.pnlAll.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// pnlAll
//
this.pnlAll.Controls.Add(this.btnOK);
this.pnlAll.Controls.Add(this.groupBox1);
this.pnlAll.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlAll.Location = new System.Drawing.Point(0, 0);
this.pnlAll.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.pnlAll.Name = "pnlAll";
this.pnlAll.Size = new System.Drawing.Size(661, 305);
this.pnlAll.TabIndex = 1;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(533, 263);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(90, 30);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.SystemColors.Control;
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.cbxPrama2);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.txtPrama1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(611, 224);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "条件SubString参数";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 180);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(492, 20);
this.label3.TabIndex = 10;
this.label3.Text = "(说明:若操作字符串中不存在或存在多个截断字符,则直接返回初始字符串)";
//
// cbxPrama2
//
this.cbxPrama2.FormattingEnabled = true;
this.cbxPrama2.Items.AddRange(new object[] {
"L",
"R"});
this.cbxPrama2.Location = new System.Drawing.Point(75, 103);
this.cbxPrama2.Name = "cbxPrama2";
this.cbxPrama2.Size = new System.Drawing.Size(121, 28);
this.cbxPrama2.TabIndex = 9;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(199, 108);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(104, 20);
this.label5.TabIndex = 7;
this.label5.Text = "(截断终止位)";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(200, 35);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(114, 20);
this.label4.TabIndex = 6;
this.label4.Text = "(截断起始位)";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(18, 107);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(63, 20);
this.label2.TabIndex = 3;
this.label2.Text = "参数2:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(18, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(63, 20);
this.label1.TabIndex = 1;
this.label1.Text = "参数1:";
//
// txtPrama1
//
this.txtPrama1.Location = new System.Drawing.Point(75, 31);
this.txtPrama1.Name = "txtPrama1";
this.txtPrama1.Size = new System.Drawing.Size(121, 27);
this.txtPrama1.TabIndex = 0;
//
// frmSplitParam
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(661, 305);
this.Controls.Add(this.pnlAll);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmSplitParam";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "添加参数(SubString)";
this.Load += new System.EventHandler(this.frmSplitParam_Load);
this.pnlAll.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);

}

#endregion

private System.Windows.Forms.Panel pnlAll;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtPrama1;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox cbxPrama2;
private System.Windows.Forms.Label label3;
}
}

+ 76
- 0
CNAS_DBSync/frmSplitParamnew.cs Целия файл

@@ -0,0 +1,76 @@
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 frmSplitParamnew : Form
{
public CnasConditionMapValue conditionvalue { get; set; }
public frmSplitParamnew(CnasConditionMapValue conditionvalue)
{
InitializeComponent();

this.conditionvalue = conditionvalue;
}

private void btnOK_Click(object sender, EventArgs e)
{
if (this.txtPrama1.Text == "")
{
MessageBox.Show("参数1不能为空。");
return;
}
if (this.cbxPrama2.Text == "")
{
MessageBox.Show("参数2不能为空。");
return;
}
//if (this.cbxPrama2.Text != "L" && this.cbxPrama2.Text != "R")
//{
// MessageBox.Show("参数2不符合规则,请重新选择。");
// return;
//}


try
{
int values1 = Convert.ToInt32(this.txtPrama1.Text) - 1;
int values2 = Convert.ToInt32(this.cbxPrama2.Text) ;
this.conditionvalue.Value = "{"+ values1 + ","+ values2 + "}";
this.DialogResult = DialogResult.OK;
this.Close();
}
catch (Exception)
{

}
}

private void frmSplitParam_Load(object sender, EventArgs e)
{
if (this.conditionvalue == null) return;
if (this.conditionvalue.Value == null) return;
if (this.conditionvalue.Condition != MapCondition.SubString) return;

//根据旧值显示控件默认值
if (this.conditionvalue.Value.ToString()!= "")
{
string[] strConditionValues = this.conditionvalue.Value.ToString().Split(new string[] { "{",",","}" }, StringSplitOptions.RemoveEmptyEntries);
if (strConditionValues.Length == 2)
{
this.txtPrama1.Text = strConditionValues[0];
this.cbxPrama2.Text = strConditionValues[1];
}
}
}
}
}

+ 120
- 0
CNAS_DBSync/frmSplitParamnew.resx Целия файл

@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.

mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

Двоични данни
dll/CNAS_BalanceClient.exe Целия файл


+ 11
- 2
dll/CNAS_BalanceClient.exe.config Целия файл

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="System.Configuration.IgnoreSectionHandler" />
@@ -72,5 +72,14 @@
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.0.114.0" newVersion="1.0.114.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /></startup></configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>

Двоични данни
dll/CNAS_DBSync.exe Целия файл


Двоични данни
dll/CNAS_RunSync.exe Целия файл


+ 3
- 11
dll/CNAS_RunSync.exe.config Целия файл

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
@@ -50,9 +50,7 @@
</filter>
</appender>
</log4net>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /></startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
@@ -76,11 +74,5 @@
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.0.114.0" newVersion="1.0.114.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
</configuration>

Двоични данни
dll/CNAS_SerialPort.dll Целия файл


Двоични данни
dll/CNAS_SyncService.exe Целия файл


Двоични данни
dll/CnasSynchronusClient.dll Целия файл


+ 1
- 1
dll/Data/FormLockState.mes Целия файл

@@ -1 +1 @@
ROcwvAcTAdc=
NP9n/U1T4F8=

+ 611
- 0
dll/ErrorLog/20250314.txt Целия файл

@@ -0,0 +1,611 @@
记录时间:2025-03-14 10:03:37,009 线程ID:[1]- 错误描述:类名:MySQLHelper 方法名:ExecuteDataSet 信息:Access denied for user 'root'@'localhost' (using password: YES)
记录时间:2025-03-14 10:03:37,024 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableNames 信息:Access denied for user 'root'@'localhost' (using password: YES)
记录时间:2025-03-14 10:03:53,031 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,032 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
记录时间:2025-03-14 10:03:53,034 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,034 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,034 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
记录时间:2025-03-14 10:03:53,035 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,035 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,035 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
记录时间:2025-03-14 10:03:53,036 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,036 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,036 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
记录时间:2025-03-14 10:03:53,038 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,038 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===authorizedqualificationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,038 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
记录时间:2025-03-14 10:03:53,039 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,039 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===authorizedqualification_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,039 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
记录时间:2025-03-14 10:03:53,040 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,040 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===basicrequirementsGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,040 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
记录时间:2025-03-14 10:03:53,041 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,041 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===boiler_qualityGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,041 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
记录时间:2025-03-14 10:03:53,042 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,042 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===boiler_quality_copy1GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,042 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
记录时间:2025-03-14 10:03:53,043 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,043 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===boilerquanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,043 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
记录时间:2025-03-14 10:03:53,044 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,044 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===calibrationcertificateGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,045 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
记录时间:2025-03-14 10:03:53,046 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,046 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===chdmdmesbGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,046 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
记录时间:2025-03-14 10:03:53,048 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,048 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,048 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
记录时间:2025-03-14 10:03:53,049 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,049 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,049 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
记录时间:2025-03-14 10:03:53,059 线程ID:[1]- 错误描述:类名:MySQLHelper 方法名:ExecuteDataSet 信息:Table 'cnas.report_insulatingoil' doesn't exist
记录时间:2025-03-14 10:03:53,064 线程ID:[1]- 错误描述:类名:MySQLHelper 方法名:ExecuteDataSet 信息:Table 'cnas.report_insulatingoil' doesn't exist
记录时间:2025-03-14 10:03:53,069 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:Table 'cnas.report_insulatingoil' doesn't exist
记录时间:2025-03-14 10:03:53,069 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===cnas.reportmainGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,069 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
记录时间:2025-03-14 10:03:53,075 线程ID:[1]- 错误描述:类名:MySQLHelper 方法名:ExecuteDataSet 信息:Table 'cnas.reportmain' doesn't exist
记录时间:2025-03-14 10:03:53,079 线程ID:[1]- 错误描述:类名:MySQLHelper 方法名:ExecuteDataSet 信息:Table 'cnas.reportmain' doesn't exist
记录时间:2025-03-14 10:03:53,083 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:Table 'cnas.reportmain' doesn't exist
记录时间:2025-03-14 10:03:53,083 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===cnas_analysis_dataGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,083 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
记录时间:2025-03-14 10:03:53,085 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,085 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coalmonthcheckGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,085 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
记录时间:2025-03-14 10:03:53,086 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,086 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,086 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
记录时间:2025-03-14 10:03:53,088 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,088 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,088 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
记录时间:2025-03-14 10:03:53,089 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,089 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coaltransporterGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,089 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
记录时间:2025-03-14 10:03:53,090 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,090 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coalvendorGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,090 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
记录时间:2025-03-14 10:03:53,091 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,091 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,091 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
记录时间:2025-03-14 10:03:53,092 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,092 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,092 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
记录时间:2025-03-14 10:03:53,093 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,094 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===compactapprovalrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,094 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
记录时间:2025-03-14 10:03:53,095 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,095 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===complaindisposerecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,095 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
记录时间:2025-03-14 10:03:53,096 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,096 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===complainthandlingreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,096 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
记录时间:2025-03-14 10:03:53,097 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,097 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,097 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
记录时间:2025-03-14 10:03:53,098 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,098 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,098 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
记录时间:2025-03-14 10:03:53,099 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,099 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===customerinformationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,099 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
记录时间:2025-03-14 10:03:53,100 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,100 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===customersurveyGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,101 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
记录时间:2025-03-14 10:03:53,102 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,102 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===deleteinfoGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,102 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
记录时间:2025-03-14 10:03:53,103 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,103 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===dictGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,103 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===dictSELECT * FROM dict Where 0=1
记录时间:2025-03-14 10:03:53,104 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,104 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,104 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
记录时间:2025-03-14 10:03:53,105 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,105 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===editreportrerecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,105 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
记录时间:2025-03-14 10:03:53,106 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,106 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===employeerecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,106 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
记录时间:2025-03-14 10:03:53,108 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,108 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===environmentalrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,108 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
记录时间:2025-03-14 10:03:53,109 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,109 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===equimentcheckGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,115 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
记录时间:2025-03-14 10:03:53,117 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,117 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===equipmentrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,117 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
记录时间:2025-03-14 10:03:53,118 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,118 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===examinemehotdcheckGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,118 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
记录时间:2025-03-14 10:03:53,120 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,120 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===expiredstandardsampleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,120 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
记录时间:2025-03-14 10:03:53,121 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,121 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===externalfilecontrollistGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,121 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
记录时间:2025-03-14 10:03:53,122 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,122 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===externalfileoncontrollistGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,122 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
记录时间:2025-03-14 10:03:53,124 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,124 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===externalpowerGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,124 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
记录时间:2025-03-14 10:03:53,125 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,125 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===externalpower_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,125 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
记录时间:2025-03-14 10:03:53,126 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,126 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,126 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
记录时间:2025-03-14 10:03:53,127 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,127 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===externalserviceprovisionGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,127 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
记录时间:2025-03-14 10:03:53,128 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,128 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilitiesenvironmentGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,128 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
记录时间:2025-03-14 10:03:53,129 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,129 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilitycheckplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,130 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
记录时间:2025-03-14 10:03:53,131 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,131 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilitycheckrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,131 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
记录时间:2025-03-14 10:03:53,132 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,132 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilityenableapplyGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,132 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
记录时间:2025-03-14 10:03:53,133 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,133 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,133 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
记录时间:2025-03-14 10:03:53,134 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,134 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilitymaintainrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,134 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
记录时间:2025-03-14 10:03:53,135 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,135 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilitysmaintainplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,135 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
记录时间:2025-03-14 10:03:53,136 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,136 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===facilityuserecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,137 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
记录时间:2025-03-14 10:03:53,138 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,138 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fileborrowingGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,138 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
记录时间:2025-03-14 10:03:53,139 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,139 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fileeditapplicationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,139 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
记录时间:2025-03-14 10:03:53,140 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,140 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===filereviewrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,140 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
记录时间:2025-03-14 10:03:53,141 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,141 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fl_assayGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,141 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
记录时间:2025-03-14 10:03:53,142 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,142 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fl_receive_batchsGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,142 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
记录时间:2025-03-14 10:03:53,143 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,144 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fl_receivesGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,144 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
记录时间:2025-03-14 10:03:53,145 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,145 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fl_sampleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,145 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
记录时间:2025-03-14 10:03:53,146 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,146 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fl_sample_makeGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,146 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
记录时间:2025-03-14 10:03:53,147 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,147 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===foreignpersonapprovalGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,147 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
记录时间:2025-03-14 10:03:53,149 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,149 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,149 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
记录时间:2025-03-14 10:03:53,150 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,150 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,150 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
记录时间:2025-03-14 10:03:53,151 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,151 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,151 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
记录时间:2025-03-14 10:03:53,153 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,153 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,153 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
记录时间:2025-03-14 10:03:53,154 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,154 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,154 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
记录时间:2025-03-14 10:03:53,155 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,155 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fpm_tcoalweightGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,155 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
记录时间:2025-03-14 10:03:53,156 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,156 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===fuelsendquanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,156 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
记录时间:2025-03-14 10:03:53,157 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,157 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===globalparamGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,157 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===globalparamSELECT * FROM globalparam Where 0=1
记录时间:2025-03-14 10:03:53,158 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,158 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===industrialverification_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,158 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
记录时间:2025-03-14 10:03:53,159 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,159 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===interimverificationplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,159 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
记录时间:2025-03-14 10:03:53,160 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,160 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===interimverificationrecordsGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,160 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
记录时间:2025-03-14 10:03:53,161 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,162 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===interimverificationrecords_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,162 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
记录时间:2025-03-14 10:03:53,163 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,163 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalashGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,163 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalashSELECT * FROM internalash Where 0=1
记录时间:2025-03-14 10:03:53,164 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,164 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalcalorificGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,164 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
记录时间:2025-03-14 10:03:53,165 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,165 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalcarbonGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,165 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
记录时间:2025-03-14 10:03:53,166 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,166 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalfilecontrollistGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,166 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
记录时间:2025-03-14 10:03:53,167 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,167 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalfileoncontrollistGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,167 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
记录时间:2025-03-14 10:03:53,168 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,168 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalhydrogenGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,168 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
记录时间:2025-03-14 10:03:53,169 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,169 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalpowerGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,169 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
记录时间:2025-03-14 10:03:53,170 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,170 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalqualitycontrolGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,170 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
记录时间:2025-03-14 10:03:53,171 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,171 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreportsulfurGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,171 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
记录时间:2025-03-14 10:03:53,172 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,172 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewcheckGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,172 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
记录时间:2025-03-14 10:03:53,173 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,173 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,173 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
记录时间:2025-03-14 10:03:53,174 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,174 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewimplementationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,174 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
记录时间:2025-03-14 10:03:53,175 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,175 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,175 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
记录时间:2025-03-14 10:03:53,176 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,176 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,176 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
记录时间:2025-03-14 10:03:53,177 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,177 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewyearplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,177 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
记录时间:2025-03-14 10:03:53,178 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,178 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,178 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
记录时间:2025-03-14 10:03:53,179 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,179 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internaltestingcommissioningGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,179 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
记录时间:2025-03-14 10:03:53,180 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,180 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===internalvolatileGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,180 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
记录时间:2025-03-14 10:03:53,181 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,181 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===labbasicinfoGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,181 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
记录时间:2025-03-14 10:03:53,183 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,183 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===labfactoryinfoGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,183 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
记录时间:2025-03-14 10:03:53,184 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,184 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===laboratoryqualityreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,184 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
记录时间:2025-03-14 10:03:53,185 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,185 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,185 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
记录时间:2025-03-14 10:03:53,185 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,185 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===laboratoryreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,185 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
记录时间:2025-03-14 10:03:53,186 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,186 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===labtestcapabilityGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,187 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
记录时间:2025-03-14 10:03:53,188 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,188 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===macaddressGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,188 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===macaddressSELECT * FROM macaddress Where 0=1
记录时间:2025-03-14 10:03:53,189 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,189 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===makereport_sample_infoGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,189 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
记录时间:2025-03-14 10:03:53,190 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,190 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,190 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
记录时间:2025-03-14 10:03:53,191 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,191 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewinputGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,191 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
记录时间:2025-03-14 10:03:53,192 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,192 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewoutputGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,192 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
记录时间:2025-03-14 10:03:53,193 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,193 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,193 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
记录时间:2025-03-14 10:03:53,194 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,195 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,195 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
记录时间:2025-03-14 10:03:53,196 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,196 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,196 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
记录时间:2025-03-14 10:03:53,197 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,197 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===managementreviewreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,197 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
记录时间:2025-03-14 10:03:53,198 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,198 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===mechanicaloperationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,198 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
记录时间:2025-03-14 10:03:53,199 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,199 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===mineGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,199 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===mineSELECT * FROM mine Where 0=1
记录时间:2025-03-14 10:03:53,200 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,200 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===monitoringplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,200 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
记录时间:2025-03-14 10:03:53,201 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,201 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===noticecontractdeviationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,201 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
记录时间:2025-03-14 10:03:53,202 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,202 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===nz_threecode_viewGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,202 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
记录时间:2025-03-14 10:03:53,206 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,206 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===observationitemrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,206 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
记录时间:2025-03-14 10:03:53,207 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,207 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,207 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
记录时间:2025-03-14 10:03:53,209 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,209 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===officialtestreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,209 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
记录时间:2025-03-14 10:03:53,210 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,210 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===officialtestreport_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,210 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
记录时间:2025-03-14 10:03:53,211 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,211 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===onportsamplereportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,211 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
记录时间:2025-03-14 10:03:53,212 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,212 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,212 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
记录时间:2025-03-14 10:03:53,213 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,213 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,213 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
记录时间:2025-03-14 10:03:53,214 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,214 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===orgGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,214 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===orgSELECT * FROM org Where 0=1
记录时间:2025-03-14 10:03:53,215 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,215 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===organizationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,215 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===organizationSELECT * FROM organization Where 0=1
记录时间:2025-03-14 10:03:53,216 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,216 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===oxygenrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,216 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
记录时间:2025-03-14 10:03:53,217 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,217 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===oxygenrecord_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,217 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
记录时间:2025-03-14 10:03:53,218 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,218 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===postmanagementGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,218 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
记录时间:2025-03-14 10:03:53,219 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,219 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===purchaseapplicationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,219 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
记录时间:2025-03-14 10:03:53,220 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,220 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,220 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
记录时间:2025-03-14 10:03:53,221 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,221 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===qualityhandbookGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,221 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
记录时间:2025-03-14 10:03:53,222 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,222 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===qualitypolicyobjGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,222 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
记录时间:2025-03-14 10:03:53,223 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,223 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===report_insulatingoilGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,223 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
记录时间:2025-03-14 10:03:53,224 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,224 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===report_newgreaseGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,224 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
记录时间:2025-03-14 10:03:53,225 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,225 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===report_newoilGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,225 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
记录时间:2025-03-14 10:03:53,225 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,225 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===report_usingoilGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,225 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
记录时间:2025-03-14 10:03:53,226 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,226 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===reportissuerecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,226 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
记录时间:2025-03-14 10:03:53,227 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,227 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===reportmainGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,227 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===reportmainSELECT * FROM reportmain Where 0=1
记录时间:2025-03-14 10:03:53,228 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,228 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===riskevaluationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,228 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
记录时间:2025-03-14 10:03:53,229 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,229 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_ashGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,229 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
记录时间:2025-03-14 10:03:53,230 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,230 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_autoGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,230 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
记录时间:2025-03-14 10:03:53,231 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,231 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,231 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
记录时间:2025-03-14 10:03:53,232 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,232 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_chnGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,232 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
记录时间:2025-03-14 10:03:53,233 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,233 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,233 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
记录时间:2025-03-14 10:03:53,234 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,234 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_stadGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,234 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
记录时间:2025-03-14 10:03:53,235 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,235 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,235 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
记录时间:2025-03-14 10:03:53,236 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,236 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,236 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
记录时间:2025-03-14 10:03:53,237 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,238 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===safetyrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,238 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
记录时间:2025-03-14 10:03:53,244 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,244 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===safetyrecord_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,244 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
记录时间:2025-03-14 10:03:53,245 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,245 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sample_batchid_codeGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,246 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
记录时间:2025-03-14 10:03:53,247 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,247 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sampleaccessrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,247 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
记录时间:2025-03-14 10:03:53,248 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,248 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sampledestroyrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,248 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
记录时间:2025-03-14 10:03:53,249 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,249 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sampleparamterGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,249 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
记录时间:2025-03-14 10:03:53,250 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,250 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sampletakerecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,250 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
记录时间:2025-03-14 10:03:53,251 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,251 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===samplingmakereportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,251 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
记录时间:2025-03-14 10:03:53,253 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,253 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===samplingmakereport_logGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,253 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
记录时间:2025-03-14 10:03:53,254 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,254 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===samplingrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,254 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
记录时间:2025-03-14 10:03:53,255 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,255 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===samplingrecord_logGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,255 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
记录时间:2025-03-14 10:03:53,257 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,257 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===scheduleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,257 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===scheduleSELECT * FROM schedule Where 0=1
记录时间:2025-03-14 10:03:53,258 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,258 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===secondarycoalrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,258 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
记录时间:2025-03-14 10:03:53,259 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,259 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sievingrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,259 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
记录时间:2025-03-14 10:03:53,260 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,260 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===sievingrecord_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,260 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
记录时间:2025-03-14 10:03:53,261 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,261 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===simplifiedreportGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,261 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
记录时间:2025-03-14 10:03:53,262 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,262 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===softwareverificationrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,262 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
记录时间:2025-03-14 10:03:53,263 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,263 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===standardchangeassessmentGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,263 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
记录时间:2025-03-14 10:03:53,264 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,264 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,264 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
记录时间:2025-03-14 10:03:53,265 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,265 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,265 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
记录时间:2025-03-14 10:03:53,266 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,266 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===standardverificationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,266 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
记录时间:2025-03-14 10:03:53,267 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,267 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,267 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
记录时间:2025-03-14 10:03:53,268 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,268 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,268 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
记录时间:2025-03-14 10:03:53,269 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,269 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===stationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,269 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===stationSELECT * FROM station Where 0=1
记录时间:2025-03-14 10:03:53,270 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,270 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===supervisionrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,270 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
记录时间:2025-03-14 10:03:53,271 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,271 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===supplierevaluationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,271 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
记录时间:2025-03-14 10:03:53,272 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,272 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===t_css_sampleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,272 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
记录时间:2025-03-14 10:03:53,273 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,273 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,273 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
记录时间:2025-03-14 10:03:53,274 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,274 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,275 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
记录时间:2025-03-14 10:03:53,276 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,276 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,276 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
记录时间:2025-03-14 10:03:53,277 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,277 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===tablemanagementGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,277 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
记录时间:2025-03-14 10:03:53,278 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,278 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===tableparamGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,278 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===tableparamSELECT * FROM tableparam Where 0=1
记录时间:2025-03-14 10:03:53,279 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,279 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===tcoalbatchGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,279 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
记录时间:2025-03-14 10:03:53,280 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,280 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===tcoalbatchassayGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,280 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
记录时间:2025-03-14 10:03:53,281 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,281 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===tcoalsampleGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,281 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
记录时间:2025-03-14 10:03:53,282 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,282 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===tcoalweightGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,282 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
记录时间:2025-03-14 10:03:53,283 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,283 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===test888GetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,283 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===test888SELECT * FROM test888 Where 0=1
记录时间:2025-03-14 10:03:53,284 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,284 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===testitemGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,284 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===testitemSELECT * FROM testitem Where 0=1
记录时间:2025-03-14 10:03:53,286 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,286 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===testmethodvalidationGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,286 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
记录时间:2025-03-14 10:03:53,287 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,287 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===timerGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,287 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===timerSELECT * FROM timer Where 0=1
记录时间:2025-03-14 10:03:53,288 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,288 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===totalwaterrecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,288 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
记录时间:2025-03-14 10:03:53,289 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,289 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===trainappraiseGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,289 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
记录时间:2025-03-14 10:03:53,290 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,290 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===trainplanGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,290 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===trainplanSELECT * FROM trainplan Where 0=1
记录时间:2025-03-14 10:03:53,291 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,291 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===trainrecordandsignGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,291 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
记录时间:2025-03-14 10:03:53,292 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,292 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===untitledGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,292 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===untitledSELECT * FROM untitled Where 0=1
记录时间:2025-03-14 10:03:53,293 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===untitledMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,293 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_analysis_dataGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,293 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
记录时间:2025-03-14 10:03:53,294 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,294 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_boiler_qualityGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,294 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
记录时间:2025-03-14 10:03:53,296 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,296 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_ashGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,296 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
记录时间:2025-03-14 10:03:53,296 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,296 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_calorificGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,296 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
记录时间:2025-03-14 10:03:53,297 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,297 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_chnGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,297 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
记录时间:2025-03-14 10:03:53,297 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,297 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_moistureGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,297 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
记录时间:2025-03-14 10:03:53,298 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,298 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_stadGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,298 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
记录时间:2025-03-14 10:03:53,298 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,298 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,298 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
记录时间:2025-03-14 10:03:53,299 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,299 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_rulu_volatileGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,299 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
记录时间:2025-03-14 10:03:53,299 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,299 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_tcoalbatchGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,299 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
记录时间:2025-03-14 10:03:53,300 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,300 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===view_tcoalweightGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,300 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
记录时间:2025-03-14 10:03:53,300 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:03:53,300 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetAllTableNameAndStructure 信息:===---===wasterecordGetTableStruct(strTableName, )
记录时间:2025-03-14 10:03:53,300 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
记录时间:2025-03-14 10:03:53,301 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
记录时间:2025-03-14 10:04:05,533 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-222-===act_ge_bytearraySELECT * FROM act_ge_bytearray Where 0=1
记录时间:2025-03-14 10:04:05,535 线程ID:[1]- 错误描述:类名:MySQLDAL 方法名:GetTableStruct 信息:===-333-===act_ge_bytearrayMySQLHelper.ExecuteDataSet(strSql)Table

Двоични данни
dll/WF-ChangeGUID.exe Целия файл


Loading…
Отказ
Запис