diff --git a/.vs/CNAS_DBSync/v15/.suo b/.vs/CNAS_DBSync/v15/.suo
index be2ea98..28229d4 100644
Binary files a/.vs/CNAS_DBSync/v15/.suo and b/.vs/CNAS_DBSync/v15/.suo differ
diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide
index 802a34a..82c7477 100644
Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide differ
diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm
index 5dd8df8..bc10db4 100644
Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm differ
diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal
index 94e4015..c4bba6a 100644
Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal differ
diff --git a/CNAS_DBSync/CNAS_DBSync.csproj b/CNAS_DBSync/CNAS_DBSync.csproj
index 012f8fc..bad89db 100644
--- a/CNAS_DBSync/CNAS_DBSync.csproj
+++ b/CNAS_DBSync/CNAS_DBSync.csproj
@@ -46,6 +46,10 @@
..\packages\log4net.2.0.8\lib\net40-full\log4net.dll
+
+ False
+ ..\dll\Oracle.ManagedDataAccess.dll
+
@@ -70,6 +74,7 @@
ActivationForm.cs
+
Form
@@ -242,6 +247,10 @@
{cb9b6d92-3cc4-46c6-92e8-a6fd0ad48041}
CnasSynchronusClient
+
+ {F4EC1B78-EFF4-4D04-AE79-631D220187AF}
+ CnasSynchronusDAL
+
{0c3243f5-729e-409c-b406-c6de56e632e0}
CnasSynchrousModel
diff --git a/CNAS_DBSync/SelectTableType.cs b/CNAS_DBSync/SelectTableType.cs
new file mode 100644
index 0000000..7bd988a
--- /dev/null
+++ b/CNAS_DBSync/SelectTableType.cs
@@ -0,0 +1,191 @@
+using CnasSynchronousCommon;
+using CnasSynchronusDAL;
+using CnasSynchrousModel;
+using Oracle.ManagedDataAccess.Client;
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Data.SqlClient;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace CNAS_DBSync
+{
+ public class SelectTableType
+ {
+ private static string connectionStr = "";
+ public static DataTable MySqlsec(string strTableName)
+ {
+ MySQLDAL mysql = new MySQLDAL();
+ DataTable tb = mysql.GetTableTypeAndLenth(strTableName);
+ return tb;
+ }
+
+ public static DataTable Sqlserversec(string strTableName, SyncInstrumentItemInfo t)
+ {
+
+ DataTable dt = new DataTable();
+ try
+ {
+ if (t.SyncInstrumentDSInfo.Host != "")
+ connectionStr = $"Data Source = {t.SyncInstrumentDSInfo.Host}; Initial Catalog = {t.SyncInstrumentDSInfo.ServerName}; User Id = {t.SyncInstrumentDSInfo.UserId}; Password = {t.SyncInstrumentDSInfo.UserPwd};";
+
+ string sql = string.Format(@"SELECT
+ c.name AS ColumnName,
+ t.name AS DataType,
+ c.max_length AS MaxLength,
+ c.is_nullable AS IsNullable,
+ c.default_object_id AS DefaultObjectId,
+ ep.value AS remark
+FROM
+ sys.columns c
+JOIN
+ sys.types t ON c.user_type_id = t.user_type_id
+ LEFT JOIN
+ sys.extended_properties ep
+ ON
+ c.object_id = ep.major_id
+ AND c.column_id = ep.minor_id
+ AND ep.name = 'MS_Description' -- 备注的属性名称
+WHERE
+ c.object_id = OBJECT_ID('{0}'); ", strTableName); //查询字符串
+ dt = GetDataTable(sql, new SqlParameter[] { });
+
+ }
+ catch (Exception ex)
+ {
+ //发生异常,写入日志
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+
+ }
+
+ ///
+ /// 查询操作
+ ///
+ ///
+ ///
+ public static DataTable GetDataTable(string sql, params SqlParameter[] sp)
+ {
+ using (SqlConnection conn = new SqlConnection(connectionStr))
+ {
+ conn.Open();
+ using (SqlDataAdapter sda = new SqlDataAdapter(sql, conn))
+ {
+ sda.SelectCommand.Parameters.AddRange(sp);
+ DataTable dt = new DataTable();
+ sda.Fill(dt);
+ return dt;
+ }
+ }
+ }
+
+
+ public static DataTable PostgreSql(string strTableName)
+ {
+
+ DataTable dt = new DataTable();
+ string strSql = string.Format(@"SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as 非空,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = '{0}'; ", strTableName);
+ try
+ {
+ dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+
+
+ }
+
+ public static DataTable DmSql(string strTableName)
+ {
+
+ DataTable dt = new DataTable();
+ string strSql = string.Format(@"SELECT
+ c.COLUMN_NAME AS ColumnName,
+ c.DATA_TYPE AS DataType,
+ c.DATA_LENGTH AS 字段长度,
+ c.NULLABLE AS 是否允许为空,
+ com.COMMENTS AS remark
+FROM
+ USER_TAB_COLUMNS c
+LEFT JOIN
+ USER_COL_COMMENTS com
+ON
+ c.TABLE_NAME = com.TABLE_NAME
+ AND c.COLUMN_NAME = com.COLUMN_NAME
+WHERE
+ c.TABLE_NAME = '{0}';", strTableName);
+ try
+ {
+ dt = DamengHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+
+
+ }
+
+ public static DataTable OrcSql(string strTableName, SyncInstrumentItemInfo t) {
+ connectionStr = $"Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST={t.SyncInstrumentDSInfo.Host})(PORT={t.SyncInstrumentDSInfo.Port}))" + $"(CONNECT_DATA=(SID={t.SyncInstrumentDSInfo.ServerName})));User Id={t.SyncInstrumentDSInfo.UserId};Password={t.SyncInstrumentDSInfo.UserPwd};";
+ DataTable dt = new DataTable();
+ string strSql = string.Format("select COLUMN_NAME AS ColumnName,NULLABLE AS IsNullable,DATA_TYPE AS DataType,DATA_LENGTH AS CharMaxLenth,DATA_LENGTH AS CharOcterLenth,DATA_PRECISION AS NumericPrecision,DATA_SCALE AS NumericScale from user_tab_columns where table_name='{0}'", strTableName.ToUpper());
+ try
+ {
+ dt = GetDataTable(strSql, new OracleParameter[] { });
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ ///
+ /// 查询操作
+ ///
+ ///
+ ///
+ public static DataTable GetDataTable(string sql, params OracleParameter[] sp)
+ {
+ DataTable dt = new DataTable();
+ try
+ {
+ using (OracleConnection conn = new OracleConnection(connectionStr))
+ {
+ conn.Open();
+ //using (OracleDataAdapter sda = new OracleDataAdapter("select * from t_weight_info where WEIGH_DATE > '2019-10-02 14:20:12'", conn))
+ using (OracleDataAdapter sda = new OracleDataAdapter(sql, conn))
+ {
+ sda.SelectCommand.Parameters.AddRange(sp);
+ sda.Fill(dt);
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+ }
+}
diff --git a/CNAS_DBSync/frmSyncParams.cs b/CNAS_DBSync/frmSyncParams.cs
index ddc0532..c37cb44 100644
--- a/CNAS_DBSync/frmSyncParams.cs
+++ b/CNAS_DBSync/frmSyncParams.cs
@@ -9,6 +9,7 @@ using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
+using System.Text.RegularExpressions;
using System.Windows.Forms;
using System.Xml.Linq;
using System.Xml.Serialization;
@@ -27,7 +28,7 @@ namespace CNAS_DBSync
private string strMode = "";
private string strTableInfoMode = ""; //获取所有表信息的方式;0为自动获取,1为手动输入
- public frmSyncParams(SyncInstrumentItemInfo syncInstrumentItem=null)
+ public frmSyncParams(SyncInstrumentItemInfo syncInstrumentItem = null)
{
InitializeComponent();
@@ -42,7 +43,7 @@ namespace CNAS_DBSync
dgvMapping.AutoGenerateColumns = false;
dgvMapping.RowHeadersVisible = false;
-
+
if (syncInstrumentItem != null)
{
strMode = "Reference";
@@ -52,7 +53,7 @@ namespace CNAS_DBSync
this.btnDel.Visible = false;
}
-
+
}
private void frmSyncParams_Load(object sender, EventArgs e)
@@ -65,10 +66,10 @@ namespace CNAS_DBSync
{
lstSyncInstrument = new List() { syncInstrumentItem };
}
-
+
//绑定数据源,填写相关内容
- if(lstSyncInstrument.Count!=0)
- dgvInstrument.DataSource = new BindingList(lstSyncInstrument);
+ if (lstSyncInstrument.Count != 0)
+ dgvInstrument.DataSource = new BindingList(lstSyncInstrument);
}
///
@@ -107,7 +108,7 @@ namespace CNAS_DBSync
lstDB.Add(currentSyncItem);
}
//重新保存信息
- bIfSaveSuccess=FileOperation.SaveLocalSyncInStrumentData(lstDB);
+ bIfSaveSuccess = FileOperation.SaveLocalSyncInStrumentData(lstDB);
//委托发送参数
this.ParamsChangedDelegate(syncInstrumentItem);
}
@@ -123,16 +124,16 @@ namespace CNAS_DBSync
MessageBox.Show("关键字段不允许为空!");
return;
}
- bIfSaveSuccess =FileOperation.SaveLocalSyncInStrumentData(lstSyncInstrument);
+ bIfSaveSuccess = FileOperation.SaveLocalSyncInStrumentData(lstSyncInstrument);
}
- if(bIfSaveSuccess)
+ if (bIfSaveSuccess)
MessageBox.Show("保存成功!");
else
MessageBox.Show("保存失败!");
}
catch (Exception ex)
{
- MessageBox.Show("保存失败!错误信息为:"+ex.Message.ToString());
+ MessageBox.Show("保存失败!错误信息为:" + ex.Message.ToString());
AppLog.Error(ex.Message);
}
}
@@ -142,7 +143,7 @@ namespace CNAS_DBSync
foreach (var item in lstSyncInstrument)
{
if (item.LstSyncPramas == null) continue;
- if (item.LstSyncPramas.Count <=0) continue;
+ if (item.LstSyncPramas.Count <= 0) continue;
if (item.LstSyncPramas.Where(s => s.IfDateField == true).Count() != 1)
{
bIfHave = false;
@@ -176,7 +177,7 @@ namespace CNAS_DBSync
frmSystemSetting frmSetting = new frmSystemSetting(lstSyncInstrument);
frmInstrumentCode frmCode = new frmInstrumentCode(lstSyncInstrument);
- frmSetting.InstrumentDelegate = delegate(SyncInstrumentItemInfo Instrumentitem)
+ frmSetting.InstrumentDelegate = delegate (SyncInstrumentItemInfo Instrumentitem)
{
lstSyncInstrument.Add(Instrumentitem);
@@ -186,7 +187,7 @@ namespace CNAS_DBSync
dgvInstrument_SelectionChanged(null, null);
};
- frmSetting.ShowDialog();
+ frmSetting.ShowDialog();
}
@@ -239,7 +240,7 @@ namespace CNAS_DBSync
private void dgvInstrument_SelectionChanged(object sender, EventArgs e)
{
- if (dgvInstrument.Rows.Count <= 0|| dgvInstrument.Rows[dgvInstrument.CurrentRow.Index].Cells[0].Value == null)
+ if (dgvInstrument.Rows.Count <= 0 || dgvInstrument.Rows[dgvInstrument.CurrentRow.Index].Cells[0].Value == null)
{
currentSyncItem = new SyncInstrumentItemInfo();
return;
@@ -263,20 +264,20 @@ namespace CNAS_DBSync
else
txtInstrumentColumn.Text = "";
- if (currentSyncItem.SyncInstrumentDSInfo != null&& currentSyncItem.SyncInstrumentDSInfo.InstrumentDataSourceType!=DataSourceType.None)
- {
+ if (currentSyncItem.SyncInstrumentDSInfo != null && currentSyncItem.SyncInstrumentDSInfo.InstrumentDataSourceType != DataSourceType.None)
+ {
dgvMapping.DataSource = new BindingList(currentSyncItem.LstSyncPramas);
- if(currentSyncItem.SyncInstrumentDSInfo.ServerName!="")
- btnLoadDBData_Click(sender, e);
+ if (currentSyncItem.SyncInstrumentDSInfo.ServerName != "")
+ btnLoadDBData_Click(sender, e);
}
else
- {
+ {
dgvMapping.DataSource = new BindingList();
}
}
else
{
- dgvMapping.DataSource =new BindingList();
+ dgvMapping.DataSource = new BindingList();
}
}
///
@@ -294,11 +295,29 @@ namespace CNAS_DBSync
InstrumentData instrumentData = InstrumentDataFact.CreateInstrumentDataSource(currentSyncItem.SyncInstrumentDSInfo, new object[] { "", "", "" });
//dictInstruTables = instrumentData.GetInstrumentData();
//dictInstruTables =
+ DataTable dtTableType = null;
string strTableName_Instru = cbxInstrument.Text.ToString();
- DataTable dtTableType = CnasDataOperationFact.CnasDataOperation().GetCNASTableTypeLenth(strTableName_Instru, currentSyncItem.SyncTargetDBInfo);
-
- //string strTableName_Instru = cbxInstrument.Text.ToString();
+ switch (currentSyncItem.SyncInstrumentDSInfo.InstrumentDataSourceType)
+ {
+ case DataSourceType.MySQL:
+ dtTableType = SelectTableType.MySqlsec(strTableName_Instru);
+ break;
+ case DataSourceType.Dm:
+ dtTableType = SelectTableType.DmSql(strTableName_Instru);
+ break;
+ case DataSourceType.Oracle:
+ dtTableType = SelectTableType.OrcSql(strTableName_Instru, currentSyncItem);
+ break;
+ case DataSourceType.PostgreSQL:
+ dtTableType = SelectTableType.PostgreSql(strTableName_Instru);
+ break;
+ case DataSourceType.SQL:
+ dtTableType = SelectTableType.Sqlserversec(strTableName_Instru, currentSyncItem);
+ break;
+ default:
+ break;
+ }
DataTable dtInstruShow = new DataTable();
dtInstruShow.Columns.Add("InstruFieldName");
dtInstruShow.Columns.Add("InstruDataType");
@@ -309,23 +328,7 @@ namespace CNAS_DBSync
}
dgvInstruDS.DataSource = dtInstruShow;
- //if (dictInstruTables.ContainsKey(strTableName_Instru))
- //{
- // DataTable dt = dictInstruTables[strTableName_Instru];
- // if (dt != null)
- // {
- // DataTable dtInstruShow = new DataTable();
- // dtInstruShow.Columns.Add("InstruFieldName");
- // dtInstruShow.Columns.Add("InstruDataType");
-
- // foreach (DataColumn dc in dt.Columns)
- // {
- // dtInstruShow.Rows.Add(new object[] { dc.ColumnName,dc.DataType});
- // }
-
-
- // }
- //}
+
}
///
@@ -339,26 +342,12 @@ namespace CNAS_DBSync
string strTableName_Cnas = cbxCnas.Text.ToString();
- //if (currentSyncItem.CnasInstrumentColumn != null && currentSyncItem.CnasInstrumentColumn != "")
- //{
- // DialogResult dr = MessageBox.Show("已存在配置完成的CNAS仪器对应列,切换表将导致该配置失效,是否继续?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
- // if (dr == DialogResult.No)
- // {
- // return;
- // }
- //}
-
DataTable dtTableStruct = CnasDataOperationFact.CnasDataOperation().GetCNASTableTypeLenth(strTableName_Cnas, currentSyncItem.SyncTargetDBInfo);
//从数据库中加载数据表结构
//DataTable dtTableStruct = CnasDataOperationFact.CnasDataOperation().GetCNASTablesStruct(strTableName_Cnas,currentSyncItem.SyncTargetDBInfo);
if (dtTableStruct != null)
{
-
- //DataTable dtTableType = CnasDataOperationFact.CnasDataOperation().GetCNASTableTypeLenth(strTableName_Instru, currentSyncItem.SyncTargetDBInfo);
-
- //string strTableName_Instru = cbxInstrument.Text.ToString();
-
DataTable dtCnasShow = new DataTable();
dtCnasShow.Columns.Add("CnasFieldName");
dtCnasShow.Columns.Add("CnasDataType");
@@ -378,7 +367,7 @@ namespace CNAS_DBSync
if (dtTableStruct.Columns.Count > 0)
{
- if (!string.IsNullOrWhiteSpace(currentSyncItem.CnasInstrumentColumn)&&dtTableStruct.Columns.Contains(currentSyncItem.CnasInstrumentColumn))
+ if (!string.IsNullOrWhiteSpace(currentSyncItem.CnasInstrumentColumn) && dtTableStruct.Columns.Contains(currentSyncItem.CnasInstrumentColumn))
{
cbxCNASColumn.Text = this.txtInstrumentColumn.Text = currentSyncItem.CnasInstrumentColumn;
}
@@ -400,7 +389,7 @@ namespace CNAS_DBSync
SyncParamasInfo syncParamas = new SyncParamasInfo();
if (currentSyncItem.LstSyncPramas == null) currentSyncItem.LstSyncPramas = new List();
-
+
if (dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper() == "ID")
{
MessageBox.Show("该字段为CNAS数据库保留字段,不允许插入数据,请重新选择!");
@@ -440,9 +429,9 @@ namespace CNAS_DBSync
//绑定数据
currentSyncItem.LstSyncPramas.Add(syncParamas);
- dgvMapping.DataSource= new BindingList(currentSyncItem.LstSyncPramas);
+ dgvMapping.DataSource = new BindingList(currentSyncItem.LstSyncPramas);
//选中最后一行
- dgvMapping.CurrentCell = dgvMapping.Rows[dgvMapping.Rows.Count-1].Cells[0];
+ dgvMapping.CurrentCell = dgvMapping.Rows[dgvMapping.Rows.Count - 1].Cells[0];
}
///
@@ -478,7 +467,7 @@ namespace CNAS_DBSync
frmDatabaseParams frmDatabase = new frmDatabaseParams(currentSyncItem);
frmDatabase.InstrumentDelegate = delegate (SyncInstrumentItemInfo Instrumentitem)
{
- this.currentSyncItem = Instrumentitem;
+ this.currentSyncItem = Instrumentitem;
};
frmDatabase.InstrumentItemData = delegate (Dictionary dict)
{
@@ -487,14 +476,12 @@ namespace CNAS_DBSync
frmDatabase.ShowDialog();
//加载数据
- if ((currentSyncItem.SyncInstrumentDSInfo.Host!=null&& currentSyncItem.SyncInstrumentDSInfo.Host.Length>0) || (currentSyncItem.SyncInstrumentDSInfo.Path!=null&& currentSyncItem.SyncInstrumentDSInfo.Path.Length>0))
+ if ((currentSyncItem.SyncInstrumentDSInfo.Host != null && currentSyncItem.SyncInstrumentDSInfo.Host.Length > 0) || (currentSyncItem.SyncInstrumentDSInfo.Path != null && currentSyncItem.SyncInstrumentDSInfo.Path.Length > 0))
btnLoadDBData_Click(null, null);
}
private void btnLoadDBData_Click(object sender, EventArgs e)
-
{
-
string strInstrumentCode = this.dgvInstrument.Rows[this.dgvInstrument.CurrentRow.Index].Cells[0].Value.ToString();
strTableInfoMode = FileOperation.GetSystemFormatConfigData(strInstrumentCode).TableInfoMode;
@@ -504,10 +491,10 @@ namespace CNAS_DBSync
//cbxCnas.DropDownStyle = ComboBoxStyle.DropDown;
}
int iReturn = 0;
- if (strTableInfoMode=="0")
- iReturn=LoadSourceAndTargetData(true);
+ if (strTableInfoMode == "0")
+ iReturn = LoadSourceAndTargetData(true);
else
- iReturn= LoadSourceAndTargetData();
+ iReturn = LoadSourceAndTargetData();
switch (iReturn)
{
case -1:
@@ -546,7 +533,7 @@ namespace CNAS_DBSync
///
///
///
- public int LoadSourceAndTargetData(bool bIfLoading=false)
+ public int LoadSourceAndTargetData(bool bIfLoading = false)
{
//检查配置信息
if (currentSyncItem.SyncInstrumentDSInfo == null) return -1;
@@ -585,7 +572,7 @@ namespace CNAS_DBSync
{
List lstCnasTables = new List();
foreach (DataRow dr in dtCNAS.Rows)
- {
+ {
if (dtCNAS.Columns.Contains("TABNAME"))
lstCnasTables.Add(dr["TABNAME"].ToString());
else if (dtCNAS.Columns.Contains("table_name"))
@@ -625,19 +612,63 @@ namespace CNAS_DBSync
{
if (currentSyncItem.SyncInstrumentDSInfo == null) return -1;
if (currentSyncItem.SyncTargetDBInfo == null) return -2;
+ SqlServerFormatConfig SqlServerFormat = FileOperation.GetFormatConfigData("SqlServerFormatConfig.xml");
+
+ string sql = SqlServerFormat.AutoSql.SqlServerViewSql;
+
+ cbxInstrument.Text = ExtractTableNames(sql);
if (cbxInstrument.Text == "") return -6;
int returnValue = 1;
//根据手动输入来源库的表名加载字段
- InstrumentData instrumentData = InstrumentDataFact.CreateInstrumentDataSource(currentSyncItem.SyncInstrumentDSInfo, new object[] { cbxInstrument.Text, "", "" });
- DataTable dataTableStruct = instrumentData.GetInstrumentDataStruct();
+
+
+
+ InstrumentData instrumentData = InstrumentDataFact.CreateInstrumentDataSource(currentSyncItem.SyncInstrumentDSInfo, new object[] { "", "", "" });
+ //dictInstruTables = instrumentData.GetInstrumentData();
+ //dictInstruTables =
+ DataTable dataTableStruct = null;
+ string strTableName_Instru = cbxInstrument.Text.ToString();
+
+ switch (currentSyncItem.SyncInstrumentDSInfo.InstrumentDataSourceType)
+ {
+ case DataSourceType.MySQL:
+ dataTableStruct = SelectTableType.MySqlsec(cbxInstrument.Text);
+ break;
+ case DataSourceType.Dm:
+ dataTableStruct = SelectTableType.DmSql(cbxInstrument.Text);
+ break;
+ case DataSourceType.Oracle:
+ dataTableStruct = SelectTableType.OrcSql(cbxInstrument.Text, currentSyncItem);
+ break;
+ case DataSourceType.PostgreSQL:
+ dataTableStruct = SelectTableType.PostgreSql(cbxInstrument.Text);
+ break;
+ case DataSourceType.SQL:
+ dataTableStruct = SelectTableType.Sqlserversec(cbxInstrument.Text, currentSyncItem);
+ break;
+ default:
+ break;
+ }
+ DataTable dtInstruShow = new DataTable();
+ dtInstruShow.Columns.Add("InstruFieldName");
+ dtInstruShow.Columns.Add("InstruDataType");
+ dtInstruShow.Columns.Add("remark");
+ if (dataTableStruct != null)
+ {
+ for (int i = 0; i < dataTableStruct.Rows.Count; i++)
+ {
+ dtInstruShow.Rows.Add(new object[] { dataTableStruct.Rows[i]["ColumnName"], dataTableStruct.Rows[i]["DataType"], dataTableStruct.Rows[i]["remark"] });
+ }
+ }
+ dgvInstruDS.DataSource = dtInstruShow;
+
+
if (dataTableStruct != null && dataTableStruct.Columns.Count > 0)
{
dictInstruTables.Clear();
dictInstruTables.Add(cbxInstrument.Text, dataTableStruct);
- cbxInstrument_SelectedIndexChanged(null, null);
-
//return 1;
}
else
@@ -676,6 +707,37 @@ namespace CNAS_DBSync
return returnValue;
}
+
+ public string ExtractTableNames(string sql)
+ {
+ // 预处理:去除注释、统一空格
+ sql = Regex.Replace(sql, @"(--.*)|(\/\*[\s\S]*?\*\/)", "", RegexOptions.Multiline);
+ sql = Regex.Replace(sql, @"\s+", " ");
+
+ // 定义匹配模式
+ var patterns = new Dictionary
+ {
+ { "SELECT", @"(?:FROM|JOIN)\s+([\w\.]+)(?:\s+AS\s+\w+)?" },
+ { "INSERT", @"INSERT\s+INTO\s+([\w\.]+)" },
+ { "UPDATE", @"UPDATE\s+([\w\.]+)" },
+ { "DELETE", @"DELETE\s+FROM\s+([\w\.]+)" }
+ };
+
+ var tables = new HashSet();
+ foreach (var pattern in patterns.Values)
+ {
+ var matches = Regex.Matches(sql, pattern, RegexOptions.IgnoreCase);
+ foreach (Match match in matches)
+ {
+ if (match.Groups[1].Success)
+ tables.Add(match.Groups[1].Value.Trim());
+ }
+ }
+ if (tables.Count == 0)
+ return "";
+ else
+ return tables.ToList()[0];
+ }
private void dgvMapping_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (dgvMapping.CurrentCell == null) return;
@@ -756,7 +818,7 @@ namespace CNAS_DBSync
MessageBox.Show("请先指定至少一个映射字段。");
return;
}
- frmSourceFilter frm = new frmSourceFilter(currentSyncItem,strTableInfoMode);
+ frmSourceFilter frm = new frmSourceFilter(currentSyncItem, strTableInfoMode);
frm.sourceDataFilterHandler = delegate (SourceDataFilter dataFilter)
{
currentSyncItem.SourceFilter = dataFilter;
@@ -805,7 +867,7 @@ namespace CNAS_DBSync
cbxCNASColumn.Top = txtInstrumentColumn.Top;
cbxCNASColumn.Height = txtInstrumentColumn.Height;
cbxCNASColumn.Width = txtInstrumentColumn.Width;
- cbxCNASColumn.Location= txtInstrumentColumn.Location;
+ cbxCNASColumn.Location = txtInstrumentColumn.Location;
cbxCNASColumn.Visible = true;
}
@@ -850,7 +912,7 @@ namespace CNAS_DBSync
private void tsmHelper_Click(object sender, EventArgs e)
{
- string strHelpFilePath = FileHelper.getBasePath()+ @"\Helper.CHM";
+ string strHelpFilePath = FileHelper.getBasePath() + @"\Helper.CHM";
//Help.ShowHelp(null, strHelpFilePath, HelpNavigator.TopicId, "1");
//Help.ShowHelpIndex(this, strHelpFilePath);
System.Diagnostics.Process.Start(strHelpFilePath);
diff --git a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs
index 9f21e32..3c80fbb 100644
--- a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs
+++ b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs
@@ -428,7 +428,7 @@ namespace CnasSynchronusDAL
{
string strTableName = dr[0].ToString();
AppLog.Error("===---===" + strTableName + "GetTableStruct(strTableName, )");
- dictTables.Add(strTableName.ToUpper(), GetTableStruct(strTableName, "", ""));
+ dictTables.Add(strTableName, GetTableStruct(strTableName, "", ""));
}
}
diff --git a/CnasSynchronusDAL/DAL/SQLDAL.cs b/CnasSynchronusDAL/DAL/SQLDAL.cs
index d5d004a..c4f1d0d 100644
--- a/CnasSynchronusDAL/DAL/SQLDAL.cs
+++ b/CnasSynchronusDAL/DAL/SQLDAL.cs
@@ -17,8 +17,8 @@ namespace CnasSynchronusDAL
private static string connectionStr ="";
public static void CreateConnection(SqlServerOpenParams t)
{
- if (!string.IsNullOrWhiteSpace(t.StrConnecttion))
- SqlServerDAL.connectionStr = $"Data Source = {t.StrHost}; Initial Catalog = {t.StrServer}; User Id = {t.StrUser}; Password = {t.StrPwd};Port={t.StrPort}";
+ if (!string.IsNullOrWhiteSpace(t.StrConnecttion)|| t.StrConnecttion=="")
+ SqlServerDAL.connectionStr = $"Data Source = {t.StrHost}; Initial Catalog = {t.StrServer}; User Id = {t.StrUser}; Password = {t.StrPwd};";
else
SqlServerDAL.connectionStr = t.StrConnecttion;
}
@@ -181,7 +181,7 @@ namespace CnasSynchronusDAL
/// 获取所有数据字段,然后记录其中是否存在需要特殊处理的字段
///
///
- private static Dictionary GetSpecialOperaField(string strTableName)
+ public static Dictionary GetSpecialOperaField(string strTableName)
{
Dictionary DictFiled = new Dictionary();
DataTable dt = new DataTable();
diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe
index 08bcbd2..3a93bd4 100644
Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ
diff --git a/dll/CNAS_RunSync.exe b/dll/CNAS_RunSync.exe
index e55b708..324d1dc 100644
Binary files a/dll/CNAS_RunSync.exe and b/dll/CNAS_RunSync.exe differ
diff --git a/dll/CNAS_RunSync.exe.config b/dll/CNAS_RunSync.exe.config
index d6a9636..596ea5b 100644
--- a/dll/CNAS_RunSync.exe.config
+++ b/dll/CNAS_RunSync.exe.config
@@ -1,4 +1,4 @@
-
+
@@ -50,7 +50,9 @@
-
+
+
+
@@ -74,5 +76,11 @@
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll
index 3e1d051..0afff99 100644
Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ
diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll
index afcc316..56ed73b 100644
Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ
diff --git a/dll/ErrorLog/20250218.txt b/dll/ErrorLog/20250218.txt
index 91f6753..c3100e8 100644
--- a/dll/ErrorLog/20250218.txt
+++ b/dll/ErrorLog/20250218.txt
@@ -17897,3 +17897,20 @@
¼ʱ䣺2025-02-18 11:55:16,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'boiler_quality_copy1'System.Data.DataSet
¼ʱ䣺2025-02-18 11:55:16,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'boiler_quality_copy1'System.Data.DataSet
¼ʱ䣺2025-02-18 11:55:16,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'boiler_quality_copy1'System.Data.DataSet
+¼ʱ䣺2025-02-18 17:12:24,543 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-18 17:12:24,578 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-18 17:12:27,035 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-18 17:12:27,042 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-18 17:12:28,490 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-18 17:12:28,498 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-18 17:12:51,693 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ:ConnectionString δʼ
+¼ʱ䣺2025-02-18 17:13:54,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-18 17:13:54,211 ߳ID:[1]- :MySQLDAL :GetTableTypeAndLenth Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-18 17:14:45,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-18 17:14:45,067 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
diff --git a/dll/ErrorLog/20250219.txt b/dll/ErrorLog/20250219.txt
new file mode 100644
index 0000000..8b6f1ce
--- /dev/null
+++ b/dll/ErrorLog/20250219.txt
@@ -0,0 +1,9800 @@
+¼ʱ䣺2025-02-19 09:27:08,234 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:27:08,271 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:27:10,689 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:27:10,697 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:27:12,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:27:12,641 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 09:28:03,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 09:28:03,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:35:23,101 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:35:23,139 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:35:25,418 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:35:25,425 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:35:26,885 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:35:26,893 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 09:36:22,052 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - SQL Server )
+¼ʱ䣺2025-02-19 09:36:42,303 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - SQL Server )
+¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:37:59,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:40:14,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:40:14,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 09:40:14,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
+¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:12:26,682 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:12:26,716 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:12:28,940 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:12:28,947 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:12:30,452 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:12:30,460 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:16,772 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:16,807 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:19,099 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:19,106 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:20,670 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:20,678 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:26:58,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 10:26:58,483 ߳ID:[1]- :MySQLDAL :GetTableTypeAndLenth Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 10:26:58,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 10:26:58,523 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 10:30:19,417 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:30:19,452 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:30:21,920 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:30:21,927 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:30:23,374 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:30:23,382 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:31:22,020 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unknown database 'cnas'
+¼ʱ䣺2025-02-19 10:31:28,260 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:31:28,261 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:31:28,262 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:31:28,480 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:31:28,554 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:31:28,555 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:31:28,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:33:35,525 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: "'ColumnName'"
+
+POSITION: 23
+¼ʱ䣺2025-02-19 10:33:35,531 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: "'ColumnName'"
+
+POSITION: 23
+¼ʱ䣺2025-02-19 10:45:50,899 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:42601: "'ColumnName'"
+
+POSITION: 23
+¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:46:16,620 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction
+¼ʱ䣺2025-02-19 10:46:16,626 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction
+¼ʱ䣺2025-02-19 10:46:24,636 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:NpgsqlTransaction
+¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:33,919 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:34,126 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:12,131 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:12,198 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:23,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:49:23,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,334 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,577 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,632 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'STU'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 10:51:49,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:52:15,796 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:52:15,831 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:52:18,015 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:52:18,022 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:52:19,487 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:52:19,495 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:53:56,181 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:53:56,182 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:53:56,183 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:53:56,403 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:53:56,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:53:56,545 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:53:56,616 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:53:56,617 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:54:03,488 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:03,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:03,617 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:13,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 10:54:13,196 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 10:54:29,218 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:29,277 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:29,394 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 10:54:49,497 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:54:49,532 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:54:51,185 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:54:51,192 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:54:52,749 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:54:52,757 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 10:56:22,916 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 10:56:22,922 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 10:56:22,929 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 10:57:13,533 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:The ConnectionString property has not been initialized.
+¼ʱ䣺2025-02-19 11:05:10,679 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:05:10,713 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:05:12,932 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:05:12,939 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:05:14,406 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:05:14,414 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:05:57,236 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:05:57,242 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:05:57,248 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:06:05,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ:
+ [sql]: {SELECT
+ COLUMN_NAME AS 'ColumnName',
+ NULLABLE AS 'IsNullable',
+ DATA_TYPE AS 'DataType',
+ DATA_LENGTH AS 'CharMaxLenth',
+ DATA_LENGTH AS 'CharOcterLenth',
+ DATA_PRECISION AS 'NumericPrecision',
+ DATA_SCALE AS 'NumericScale'
+ FROM USER_TAB_COLUMNS
+ WHERE TABLE_NAME = 'STU'};
+¼ʱ䣺2025-02-19 11:06:05,640 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ:
+ [sql]: {SELECT
+ COLUMN_NAME AS 'ColumnName',
+ NULLABLE AS 'IsNullable',
+ DATA_TYPE AS 'DataType',
+ DATA_LENGTH AS 'CharMaxLenth',
+ DATA_LENGTH AS 'CharOcterLenth',
+ DATA_PRECISION AS 'NumericPrecision',
+ DATA_SCALE AS 'NumericScale'
+ FROM USER_TAB_COLUMNS
+ WHERE TABLE_NAME = 'STU'};
+¼ʱ䣺2025-02-19 11:08:24,907 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 56 [']ִ:
+ [sql]: {SELECT
+ COLUMN_NAME AS 'ColumnName',
+ NULLABLE AS 'IsNullable',
+ DATA_TYPE AS 'DataType',
+ DATA_LENGTH AS 'CharMaxLenth',
+ DATA_LENGTH AS 'CharOcterLenth',
+ DATA_PRECISION AS 'NumericPrecision',
+ DATA_SCALE AS 'NumericScale'
+ FROM USER_TAB_COLUMNS
+ WHERE TABLE_NAME = 'STU'};
+¼ʱ䣺2025-02-19 11:13:38,201 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
+Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
+FROM USER_TAB_COLUMNS
+WHERE TABLE_NAME = 'STU';};
+¼ʱ䣺2025-02-19 11:13:38,207 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
+Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
+FROM USER_TAB_COLUMNS
+WHERE TABLE_NAME = 'STU';};
+¼ʱ䣺2025-02-19 11:14:08,488 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ:
+Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
+FROM USER_TAB_COLUMNS
+WHERE TABLE_NAME = 'STU';};
+¼ʱ䣺2025-02-19 11:14:21,443 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
+Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
+FROM USER_TAB_COLUMNS
+WHERE TABLE_NAME = 'STU';};
+¼ʱ䣺2025-02-19 11:14:21,450 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
+Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
+FROM USER_TAB_COLUMNS
+WHERE TABLE_NAME = 'STU';};
+¼ʱ䣺2025-02-19 11:14:32,145 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ:
+Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
+FROM USER_TAB_COLUMNS
+WHERE TABLE_NAME = 'STU';};
+¼ʱ䣺2025-02-19 11:25:27,296 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ:
+ [sql]: {SELECT
+ a.COLUMN_NAME AS 'InstruFieldName',
+ b.COMMENTS AS 'remark',
+ a.DATA_TYPE || CASE
+ WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
+ WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
+ ELSE ''
+ END AS 'InstruDataType'
+FROM
+ ALL_TAB_COLUMNS a
+LEFT JOIN
+ ALL_COL_COMMENTS b
+ ON a.OWNER = b.OWNER
+ AND a.TABLE_NAME = b.TABLE_NAME
+ AND a.COLUMN_NAME = b.COLUMN_NAME
+WHERE
+ a.TABLE_NAME = 'STU'
+
+ORDER BY
+ a.COLUMN_ID;};
+¼ʱ䣺2025-02-19 11:25:27,303 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ:
+ [sql]: {SELECT
+ a.COLUMN_NAME AS 'InstruFieldName',
+ b.COMMENTS AS 'remark',
+ a.DATA_TYPE || CASE
+ WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
+ WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
+ ELSE ''
+ END AS 'InstruDataType'
+FROM
+ ALL_TAB_COLUMNS a
+LEFT JOIN
+ ALL_COL_COMMENTS b
+ ON a.OWNER = b.OWNER
+ AND a.TABLE_NAME = b.TABLE_NAME
+ AND a.COLUMN_NAME = b.COLUMN_NAME
+WHERE
+ a.TABLE_NAME = 'STU'
+
+ORDER BY
+ a.COLUMN_ID;};
+¼ʱ䣺2025-02-19 11:26:15,401 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 52 [']ִ:
+ [sql]: {SELECT
+ a.COLUMN_NAME AS 'InstruFieldName',
+ b.COMMENTS AS 'remark',
+ a.DATA_TYPE || CASE
+ WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
+ WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
+ ELSE ''
+ END AS 'InstruDataType'
+FROM
+ ALL_TAB_COLUMNS a
+LEFT JOIN
+ ALL_COL_COMMENTS b
+ ON a.OWNER = b.OWNER
+ AND a.TABLE_NAME = b.TABLE_NAME
+ AND a.COLUMN_NAME = b.COLUMN_NAME
+WHERE
+ a.TABLE_NAME = 'STU'
+
+ORDER BY
+ a.COLUMN_ID;};
+¼ʱ䣺2025-02-19 11:30:18,078 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ:
+ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
+ *
+FROM
+ ALL_COL_COMMENTS
+
+
+
+WHERE
+ ALL_COL_COMMENTS.TABLE_NAME = 'STU'
+
+ORDER BY
+ ALL_COL_COMMENTS.COLUMN_ID;};
+¼ʱ䣺2025-02-19 11:30:18,084 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ:
+ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
+ *
+FROM
+ ALL_COL_COMMENTS
+
+
+
+WHERE
+ ALL_COL_COMMENTS.TABLE_NAME = 'STU'
+
+ORDER BY
+ ALL_COL_COMMENTS.COLUMN_ID;};
+¼ʱ䣺2025-02-19 11:30:44,490 ߳ID:[1]- :SelectTableType :DmSql Ϣ:12 иִ:
+ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
+ *
+FROM
+ ALL_COL_COMMENTS
+
+
+
+WHERE
+ ALL_COL_COMMENTS.TABLE_NAME = 'STU'
+
+ORDER BY
+ ALL_COL_COMMENTS.COLUMN_ID;};
+¼ʱ䣺2025-02-19 11:31:49,841 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ:
+ [sql]: {SELECT
+ *
+FROM
+ ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
+¼ʱ䣺2025-02-19 11:31:49,848 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ:
+ [sql]: {SELECT
+ *
+FROM
+ ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
+¼ʱ䣺2025-02-19 11:33:10,383 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 4 , 59 [TABLE_NAME]ִ:
+ [sql]: {SELECT
+ *
+FROM
+ ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
+¼ʱ䣺2025-02-19 11:34:23,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:34:23,507 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:34:34,320 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:34:34,326 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:34:34,332 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:34:59,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:34:59,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:38:48,756 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:48,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:48,981 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:48,987 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:49,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:51,457 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:51,590 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:38:51,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:38:51,647 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:09,449 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:09,574 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:09,728 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:09,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 11:39:11,704 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:11,840 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:11,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:39:11,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:19,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:39:20,048 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1
+¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:49,390 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 11:40:58,387 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:58,495 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:58,767 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 11:41:00,360 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:41:00,462 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:41:00,541 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 11:41:00,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:41:00,592 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 11:54:34,034 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:54:34,072 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:54:36,330 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:54:36,337 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:54:37,790 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:54:37,799 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 11:56:00,854 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:56:00,861 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 11:56:00,866 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 12:07:38,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 12:07:38,446 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:18:05,245 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:18:05,281 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:18:11,386 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:18:11,394 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:18:13,797 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:18:13,806 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:21:47,076 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:21:47,111 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:21:54,597 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:21:54,605 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:22:00,120 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:22:00,128 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:26:41,436 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:26:41,497 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:26:45,810 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:26:45,817 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:26:49,569 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:26:49,578 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:27:19,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:27:19,953 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:31:17,948 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:17,985 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:20,928 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:20,935 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:22,842 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:22,850 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:30,336 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:30,342 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:57,760 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:31:57,766 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:32:22,452 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:32:22,458 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:33:13,362 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:33:13,370 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:34:55,230 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:34:55,265 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:34:58,992 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:34:59,000 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:35:02,544 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:35:02,552 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:35:07,581 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:35:07,588 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:07,162 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:07,197 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:11,263 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:11,276 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:13,551 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:13,560 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:37:44,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:37:44,687 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:41:06,641 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:06,677 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:12,000 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:12,007 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:14,599 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:14,608 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:37,600 ߳ID:[1]- :SqlServerDAL :GetAllTableNameAndStructure Ϣ:ѳɹӣڵ¼з (provider: Shared Memory Provider, error: 0 - ܵһκν̡)
+¼ʱ䣺2025-02-19 14:41:44,038 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:41:44,044 ߳ID:[1]- :SelectTableType :DmSql Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:43:04,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:43:04,095 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:43:16,867 ߳ID:[1]- :SqlServerDAL :GetAllTableNameAndStructure Ϣ:û 'SYSDBA' ¼ʧܡ
+¼ʱ䣺2025-02-19 14:43:47,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,493 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,511 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,514 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,514 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,519 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,526 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:43:47,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:43:47,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:43:47,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:43:47,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:43:47,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:43:47,575 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,575 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,610 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,618 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,666 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,698 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,721 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,745 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,756 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,756 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,762 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,762 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,763 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,763 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,763 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,763 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,782 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,782 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,782 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,782 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,782 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,794 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,794 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,794 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,794 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,800 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,800 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,809 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,809 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,810 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,832 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,836 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,836 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,836 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,836 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,846 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,866 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,870 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,892 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,895 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,895 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,939 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,992 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,992 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:47,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:47,997 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:47,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-02-19 14:43:47,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:47,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,000 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,000 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,007 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,007 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:48,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:43:48,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-02-19 14:43:48,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:48,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:48,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:43:50,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:50,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:50,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:50,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:50,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:50,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:50,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:50,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:58,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:58,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:58,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:58,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:58,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:58,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:58,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:43:58,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:58,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:43:58,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:04,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:44:04,329 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:44:20,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:20,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:20,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:20,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:20,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:20,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:20,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:20,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:20,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:20,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:44:22,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:44:22,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:44:22,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,759 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:44:22,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:44:22,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:44:22,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,785 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,785 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,793 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,800 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,800 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,800 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,810 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,812 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,822 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,822 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,822 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,837 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,839 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,839 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,846 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,848 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,853 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,853 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,863 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,865 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,868 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,886 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,898 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,905 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,905 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,912 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,922 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,931 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:22,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:22,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:22,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:44:22,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:22,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,000 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,000 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,030 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,030 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,030 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,035 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,035 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,054 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,065 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,075 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,086 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,091 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,091 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,093 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,095 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,122 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,130 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,141 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,141 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,143 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,155 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,157 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,161 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,172 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,181 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,190 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,190 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,191 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,191 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,193 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:44:23,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-02-19 14:44:23,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,208 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:44:23,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:23,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:40,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:40,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:40,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:40,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:40,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:40,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:40,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:43,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:43,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:43,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:43,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:43,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:45,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:45,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:45,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:45,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:45,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:45,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:45,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:45,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:45,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:45,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:46,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:46,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:46,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:46,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:46,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:47,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:47,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:47,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:47,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:47,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:48,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:48,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:44:48,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:48,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:44:48,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:45:44,963 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:45:45,000 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:45:47,040 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:45:47,048 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:45:49,118 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:45:49,126 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:46:24,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,236 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,240 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,243 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,245 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,246 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,247 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,248 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,248 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,248 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,248 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,253 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,253 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,263 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,265 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,268 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,268 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,268 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:46:24,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:46:24,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:46:24,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:46:24,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:46:24,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:46:24,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,325 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,334 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,376 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,376 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,382 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,382 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,382 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,382 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,421 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,430 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,430 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,435 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,457 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,468 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,477 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,477 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,497 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,503 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,515 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,518 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,542 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,571 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,591 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,596 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,602 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,608 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,608 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,640 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,646 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,660 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,665 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,686 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,686 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,721 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,721 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,738 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:46:24,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-02-19 14:46:24,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:46:24,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:24,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:24,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:28,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:28,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:28,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:28,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:28,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:28,374 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:28,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:28,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:28,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:28,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:29,427 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:46:29,433 ߳ID:[1]- :SelectTableType :DmSql Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:46:59,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:59,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:59,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:59,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:59,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:59,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:59,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:46:59,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:59,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:46:59,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,189 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,192 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,192 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,199 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,201 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,212 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,213 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,213 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,216 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,216 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,216 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,216 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,218 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:47:19,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:47:19,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
+¼ʱ䣺2025-02-19 14:47:19,240 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,240 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:47:19,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:47:19,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
+¼ʱ䣺2025-02-19 14:47:19,262 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,263 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,264 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,266 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,268 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,268 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,273 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,273 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,276 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,276 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,276 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,276 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,280 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,282 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,283 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,287 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,297 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,297 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,307 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,307 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,312 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,314 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,318 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,319 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,319 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,322 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,322 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,329 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,331 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,341 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,341 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,341 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,362 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,362 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,374 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,386 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,398 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,398 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,400 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,400 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,402 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,402 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,407 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,407 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,423 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,433 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,445 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,445 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,460 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,460 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,468 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,470 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,473 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,473 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,474 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,474 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,475 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,484 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,484 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,489 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,496 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,496 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,515 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,520 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,526 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,545 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,545 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,548 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,553 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,554 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,565 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,577 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,586 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,596 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,602 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,605 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,607 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,631 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,645 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,645 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,653 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,677 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,680 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,683 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,690 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,690 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,693 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,698 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,706 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,709 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,714 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 14:47:19,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-02-19 14:47:19,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 14:47:19,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,826 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,826 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:19,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:20,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:20,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:20,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:20,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:20,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:20,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:20,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:47:20,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:20,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:20,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:47:54,348 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:47:54,385 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:47:56,446 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:47:56,454 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:47:58,721 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:47:58,730 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:14,375 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:14,412 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:16,609 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:16,618 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:18,141 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:18,150 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:51:43,848 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 14:51:59,647 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:51:59,654 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:51:59,661 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:52:00,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:52:00,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:52:00,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:52:00,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:52:00,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:52:00,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:52:00,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:52:00,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:52:00,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:52:00,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:52:35,153 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:52:35,185 ߳ID:[1]- :DmDAL :GetDataByDateColumn Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:11,922 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:11,958 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:13,997 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:14,004 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:15,522 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:15,530 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:19,651 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:57:19,657 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:09,696 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:09,731 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:11,789 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:11,797 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:13,675 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:13,683 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
+
+¼ʱ䣺2025-02-19 14:58:35,583 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:35,589 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:35,595 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:36,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:36,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:36,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:36,220 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:36,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:36,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:36,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:36,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:41,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:41,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:41,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:41,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:41,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:41,553 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:41,560 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:41,565 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:42,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:42,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:42,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:42,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:42,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:42,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:42,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:42,556 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:42,563 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:42,569 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:58:43,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:43,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:43,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:43,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:43,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:43,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:43,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:43,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:43,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:43,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:48,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:48,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:58:48,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:48,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:58:48,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:27,293 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:59:27,301 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:59:27,307 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 14:59:27,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:59:27,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:59:27,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:27,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:27,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:28,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:59:28,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:59:28,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:28,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:28,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:49,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:59:49,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 14:59:49,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:49,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 14:59:49,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE ''System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:01,652 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:01,653 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:01,654 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:01,799 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:01,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:01,940 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 15:00:01,941 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 15:00:01,941 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:01,941 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:01,942 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:02,006 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:02,077 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:02,077 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 15:00:02,080 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:02,080 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:02,080 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:02,146 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:02,192 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:02,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 15:00:02,242 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 15:00:10,914 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:10,915 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:10,915 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:10,989 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:11,030 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,545 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:12,546 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:12,546 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,674 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,675 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-19 15:00:12,675 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-19 15:00:12,675 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:12,675 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:12,675 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,755 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,814 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,814 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-19 15:00:12,819 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:12,819 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:12,819 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,890 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,935 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = 'stu'; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:12,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 15:00:12,977 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
+¼ʱ䣺2025-02-19 15:00:14,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:14,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
+¼ʱ䣺2025-02-19 15:00:14,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:14,985 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,040 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
+ a.attname as ColumnName,
+ format_type(a.atttypid, a.atttypmod) as DataType,
+ a.attnotnull as ǿ,
+ col_description(a.attrelid, a.attnum) as remark
+ FROM
+ pg_class as c, pg_attribute as a
+ where
+ a.attrelid = c.oid
+ and
+ a.attnum > 0
+ and
+ c.relname = ''; System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,290 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 15:00:15,297 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 15:00:15,304 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
+Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
+¼ʱ䣺2025-02-19 15:00:15,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 15:00:15,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 15:00:15,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 15:00:15,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-19 15:00:15,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
+¼ʱ䣺2025-02-19 15:00:15,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
diff --git a/dll/Newtonsoft.Json.dll b/dll/Newtonsoft.Json.dll
index 55d537f..7af125a 100644
Binary files a/dll/Newtonsoft.Json.dll and b/dll/Newtonsoft.Json.dll differ