diff --git a/.vs/CNAS_DBSync/v15/.suo b/.vs/CNAS_DBSync/v15/.suo
index ae8df38..3a499ed 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-shm b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-shm
index a117898..678d1c2 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 c8a64da..e629b65 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_Authorize/App.config b/CNAS_Authorize/App.config
new file mode 100644
index 0000000..a5fb8f8
--- /dev/null
+++ b/CNAS_Authorize/App.config
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CNAS_Authorize/App.xaml b/CNAS_Authorize/App.xaml
new file mode 100644
index 0000000..c690a3d
--- /dev/null
+++ b/CNAS_Authorize/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/CNAS_Authorize/App.xaml.cs b/CNAS_Authorize/App.xaml.cs
new file mode 100644
index 0000000..a58c4a9
--- /dev/null
+++ b/CNAS_Authorize/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace CNAS_Authorize
+{
+ ///
+ /// App.xaml 的交互逻辑
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/CNAS_Authorize/CNAS_Authorize.csproj b/CNAS_Authorize/CNAS_Authorize.csproj
new file mode 100644
index 0000000..c283acc
--- /dev/null
+++ b/CNAS_Authorize/CNAS_Authorize.csproj
@@ -0,0 +1,123 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {9B4A6989-A7A6-41C0-ADFE-D470EB972D79}
+ WinExe
+ Properties
+ CNAS_Authorize
+ CNAS_Authorize
+ v4.8
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+ Always
+
+
+
+
+ {8E0E5F2E-2BA2-4952-9F31-34C072CD86B3}
+ CnasSynchronousCommon
+
+
+ {CB9B6D92-3CC4-46C6-92E8-A6FD0AD48041}
+ CnasSynchronusBLL
+
+
+ {0C3243F5-729E-409C-B406-C6DE56E632E0}
+ CnasSynchrousModel
+
+
+
+
+
\ No newline at end of file
diff --git a/CNAS_Authorize/MachineAuth.cs b/CNAS_Authorize/MachineAuth.cs
new file mode 100644
index 0000000..8bd8bbb
--- /dev/null
+++ b/CNAS_Authorize/MachineAuth.cs
@@ -0,0 +1,243 @@
+using CnasSynchronusClient;
+using CnasSynchrousModel;
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace CNAS_Authorize
+{
+ public class Machine
+ {
+ public string FactoryName { get; set; }
+ public string MachineCode { get; set; }
+ public string ImportTime { get; set; }
+ public bool IsGenerated { get; set; }
+
+ public Machine(string name, string code, string time, bool isGen)
+ {
+ FactoryName = name;
+ MachineCode = code;
+ ImportTime = time;
+ IsGenerated = isGen;
+ }
+
+ }
+
+ class MachineAuth
+ {
+ ///
+ /// 所有数据行
+ ///
+ private List m_machines;
+ ///
+ /// 编码过滤
+ ///
+ private string m_filter_code;
+ ///
+ /// 名称过滤
+ ///
+ private string m_filter_factory;
+ //以下都是过滤过的数据
+ ///
+ /// 过滤过的数据
+ ///
+ private List m_rangle;
+ ///
+ /// 过滤过的当前页
+ ///
+ private List m_page;
+ ///
+ /// 每页数量
+ ///
+ private int m_pageSize;
+ ///
+ /// 页号
+ ///
+ private int m_pageIndex;
+ ///
+ /// 总页数
+ ///
+ private int m_pageCount;
+
+
+ public MachineAuth()
+ {
+ m_pageSize = 10;
+ m_pageIndex = 1;
+ }
+ DataBaseInfo targetDataBase = new DataBaseInfo();
+ public void Load()
+ {
+ //加载CNAS数据库配置
+ targetDataBase = FileOperation.GetLocalCnasDB();
+ if (!CnasDataOperationFact.CnasDataOperation().TestConnect(targetDataBase))
+ {
+ MessageBox.Show("CNAS数据库无法正常连接...", "提示");
+ return;
+ }
+
+
+ m_machines = new List();
+ ////1.加载数据
+ DataTable dtmacaddressinfo = CnasDataOperationFact.CnasDataOperation().GetTableData(targetDataBase, "select * from macaddress");
+ if (dtmacaddressinfo != null && dtmacaddressinfo.Rows.Count > 0)
+ {
+ List lstCnasTables = new List();
+ foreach (DataRow dr in dtmacaddressinfo.Rows)
+ {
+ Machine m = new Machine( dr["PLANTCODE"].ToString(), dr["MAC_ADDRESS"].ToString(), dr["CREATETIME"].ToString(), true);
+ m_machines.Add(m);
+ lstCnasTables.Add(dr["MAC_ADDRESS"].ToString());
+ }
+ }
+
+ m_rangle = new List();
+ m_rangle.AddRange(m_machines);
+
+ m_pageSize = 10;
+ m_pageIndex = 1;
+ m_pageCount = (m_rangle.Count / m_pageSize) + (m_rangle.Count % m_pageSize == 0 ? 0 : 1);
+
+ m_page = getPageData(m_pageIndex);
+
+ }
+
+ public int PageSize
+ {
+ get { return m_pageSize; }
+ set
+ {
+ m_pageSize = value;
+ updateView();
+ }
+ }
+
+ public string CurrentPage
+ {
+ get
+ {
+ return m_pageCount == 0 ? "" : string.Format("{0} / {1}", m_pageIndex, m_pageCount);
+ }
+ set
+ {
+
+ }
+ }
+
+ public int TotalCount
+ {
+ get
+ {
+ return m_machines == null ? 0 : m_machines.Count;
+ }
+ set
+ {
+
+ }
+ }
+
+ private void updateView()
+ {
+ List view = new List();
+ if (!string.IsNullOrEmpty(m_filter_code) || !string.IsNullOrEmpty(m_filter_factory))
+ {
+ foreach (Machine item in m_machines)
+ {
+ bool flag = true;
+ if (!string.IsNullOrEmpty(m_filter_code))
+ {
+ if (item.MachineCode.IndexOf(m_filter_code) == -1)
+ {
+ flag = false;
+ }
+ }
+ if (!string.IsNullOrEmpty(m_filter_factory))
+ {
+ if (item.FactoryName.IndexOf(m_filter_factory) == -1)
+ {
+ flag = false;
+ }
+ }
+ if (flag)
+ {
+ view.Add(item);
+ }
+ }
+ }
+ else
+ {
+ view.AddRange(m_machines);
+ }
+ m_rangle = view;
+ m_pageIndex = 1;
+ m_pageCount = (m_rangle.Count / m_pageSize) + (m_rangle.Count % m_pageSize == 0 ? 0 : 1);
+ m_page = getPageData(m_pageIndex);
+ }
+
+ public void ChangeFilter(string code, string factory)
+ {
+ this.m_filter_code = code;
+ this.m_filter_factory = factory;
+
+ updateView();
+ }
+
+ public List Page
+ {
+ get
+ {
+ return m_page;
+ }
+ }
+
+ private List getPageData(int pageIndex)
+ {
+ int index = (pageIndex - 1) * m_pageSize;
+ List page = new List(m_pageSize);
+ for (int i = 0; i < m_pageSize && index < m_rangle.Count; i++)
+ {
+ page.Add(m_rangle[index]);
+ index++;
+ }
+ return page;
+ }
+
+ public List NextPage(out bool ok)
+ {
+ int index = m_pageIndex * m_pageSize;
+ if (m_rangle == null || index >= m_rangle.Count)
+ {
+ ok = false;
+ return null;
+ }
+
+ m_pageIndex++;
+ m_page = getPageData(m_pageIndex);
+
+ ok = true;
+ return m_page;
+ }
+
+ public List PrevPage(out bool ok)
+ {
+ if (m_pageIndex == 1 || m_rangle == null)
+ {
+ ok = false;
+ return null;
+ }
+ m_pageIndex--;
+
+ m_page = getPageData(m_pageIndex);
+
+ ok = true;
+ return m_page;
+
+ }
+
+
+ }
+}
diff --git a/CNAS_Authorize/MainWindow.xaml b/CNAS_Authorize/MainWindow.xaml
new file mode 100644
index 0000000..ffa3d7e
--- /dev/null
+++ b/CNAS_Authorize/MainWindow.xaml
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CNAS_Authorize/MainWindow.xaml.cs b/CNAS_Authorize/MainWindow.xaml.cs
new file mode 100644
index 0000000..5744375
--- /dev/null
+++ b/CNAS_Authorize/MainWindow.xaml.cs
@@ -0,0 +1,204 @@
+using CnasSynchronousCommon;
+using CnasSynchronusClient;
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Linq;
+using System.Security.Cryptography;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace CNAS_Authorize
+{
+ ///
+ /// MainWindow.xaml 的交互逻辑
+ ///
+ public partial class MainWindow : Window
+ {
+
+ private MachineAuth m_machines;
+
+ public MainWindow()
+ {
+ InitializeComponent();
+
+ }
+
+ private void Window_Loaded(object sender, RoutedEventArgs e)
+ {
+ this.LoadData();
+ }
+
+ private void LoadData()
+ {
+ m_machines = new MachineAuth();
+ m_machines.Load();
+ dataGrid.ItemsSource = m_machines.Page;
+ this.DataContext = m_machines;
+ }
+
+ private void Window_SizeChanged(object sender, SizeChangedEventArgs e)
+ {
+ if (this.Width < 500) return;
+ dataGrid.Width = this.Width - 48;
+ dataGrid.Height = centerPanel.Height;
+
+ //设置列宽
+ double colWidth = this.Width - 60;// centerPanel.Width;
+ for (int i = 1; i < dataGrid.Columns.Count; i++)
+ {
+ colWidth = colWidth - dataGrid.Columns[i].Width.Value;
+ }
+ if (colWidth > 0)
+ dataGrid.Columns[0].Width = colWidth;
+
+ edtMachine.Width = this.Width - lbMachine.Width - btnQuery.Width - 48;
+ edtFactory.Width = edtMachine.Width;
+
+ }
+
+ private void refreshBind()
+ {
+ this.DataContext = null;
+ this.DataContext = m_machines;
+ }
+
+ private void PrevPage_Click(object sender, RoutedEventArgs e)
+ {
+ bool ok;
+ List page = m_machines.PrevPage(out ok);
+ if (ok)
+ {
+ dataGrid.ItemsSource = page;
+ refreshBind();
+ }
+
+
+ }
+
+ private void NextPage_Click(object sender, RoutedEventArgs e)
+ {
+ bool ok;
+ List page = m_machines.NextPage(out ok);
+ if (ok)
+ {
+ dataGrid.ItemsSource = page;
+ refreshBind();
+ }
+
+ }
+
+ private void Query_Click(object sender, RoutedEventArgs e)
+ {
+ m_machines.ChangeFilter(edtMachine.Text.Trim(), edtFactory.Text.Trim());
+ dataGrid.ItemsSource = m_machines.Page;
+ refreshBind();
+ }
+
+ private void ConfirmImport_Click(object sender, RoutedEventArgs e)
+ {
+
+ //加载CNAS数据库配置
+ var targetDataBase = FileOperation.GetLocalCnasDB();
+ if (!CnasDataOperationFact.CnasDataOperation().TestConnect(targetDataBase))
+ {
+ MessageBox.Show("CNAS数据库无法正常连接...", "提示");
+ return;
+ }
+
+ var existData = CnasDataOperationFact.CnasDataOperation().GetTableData(targetDataBase, $"select * from macaddress where MAC_ADDRESS='{edtMachine.Text.Trim()}'");
+ if(existData!=null&& existData.Rows.Count > 0)
+ {
+ MessageBox.Show("已经导入!");
+ return;
+ }
+ StringBuilder sb = new StringBuilder();
+ sb.AppendFormat($"insert into macaddress(MAC_ADDRESS,PLANTCODE,CREATETIME,FACILITY_STYLE) VALUES('{edtMachine.Text.Trim()}','{edtFactory.Text.Trim()}',now(),'999')");
+
+ //1.加载数据
+ var flag = CnasDataOperationFact.CnasDataOperation().InsertTableData(targetDataBase, sb.ToString());
+ if (flag)
+ {
+ AppLog.ServiceInfo("导入成功");
+ MessageBox.Show("导入成功...", "提示");
+ this.LoadData();
+ }
+ else
+ {
+ MessageBox.Show("导入失败...", "提示");
+ }
+ }
+
+ private void DownloadActivationCode_Click(object sender, RoutedEventArgs e)
+ {
+ var button = sender as Button;
+ var machine = button.DataContext as Machine;
+ if (machine != null)
+ {
+ try
+ {
+ // 生成激活码
+ string activationCode = GenerateActivationCode(machine.MachineCode);
+
+ // 创建保存文件对话框
+ var saveFileDialog = new Microsoft.Win32.SaveFileDialog
+ {
+ FileName = $"激活码_{machine.MachineCode}_{DateTime.Now:yyyyMMdd}",
+ DefaultExt = ".txt",
+ Filter = "文本文件|*.txt"
+ };
+
+ if (saveFileDialog.ShowDialog() == true)
+ {
+ // 将激活码写入文件
+ System.IO.File.WriteAllText(saveFileDialog.FileName, activationCode);
+ MessageBox.Show("激活码已成功保存!", "提示", MessageBoxButton.OK, MessageBoxImage.Information);
+
+ // 更新状态
+ machine.IsGenerated = true;
+ refreshBind();
+ }
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show($"下载激活码失败: {ex.Message}", "错误", MessageBoxButton.OK, MessageBoxImage.Error);
+ }
+ }
+ }
+
+ private string GenerateActivationCode(string machineCode)
+ {
+ // 这里实现激活码生成算法
+ // 示例:简单的加密算法,实际应用中应该使用更安全的加密方式
+ using (var md5 = System.Security.Cryptography.MD5.Create())
+ {
+ // 加入时间戳使得生成的激活码具有时效性
+ string input = machineCode + DateTime.Now.ToString("yyyyMMdd");
+ byte[] inputBytes = Encoding.UTF8.GetBytes(input);
+ byte[] hashBytes = md5.ComputeHash(inputBytes);
+
+ // 转换为16进制字符串
+ StringBuilder sb = new StringBuilder();
+ for (int i = 0; i < hashBytes.Length; i++)
+ {
+ sb.Append(hashBytes[i].ToString("X2"));
+ // 每4个字符添加一个分隔符,提高可读性
+ if ((i + 1) % 4 == 0 && i != hashBytes.Length - 1)
+ {
+ sb.Append("-");
+ }
+ }
+ return sb.ToString();
+ }
+ }
+ }
+}
diff --git a/CNAS_Authorize/Properties/AssemblyInfo.cs b/CNAS_Authorize/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..4477ae4
--- /dev/null
+++ b/CNAS_Authorize/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// 有关程序集的一般信息由以下
+// 控制。更改这些特性值可修改
+// 与程序集关联的信息。
+[assembly: AssemblyTitle("CNAS_Authorize")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("CNAS_Authorize")]
+[assembly: AssemblyCopyright("Copyright © 2025")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+//将 ComVisible 设置为 false 将使此程序集中的类型
+//对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型,
+//请将此类型的 ComVisible 特性设置为 true。
+[assembly: ComVisible(false)]
+
+//若要开始生成可本地化的应用程序,请
+// 中的 .csproj 文件中
+//例如,如果您在源文件中使用的是美国英语,
+//使用的是美国英语,请将 设置为 en-US。 然后取消
+//对以下 NeutralResourceLanguage 特性的注释。 更新
+//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //主题特定资源词典所处位置
+ //(当资源未在页面
+ //或应用程序资源字典中找到时使用)
+ ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
+ //(当资源未在页面
+ //、应用程序或任何主题专用资源字典中找到时使用)
+)]
+
+
+// 程序集的版本信息由下列四个值组成:
+//
+// 主版本
+// 次版本
+// 生成号
+// 修订号
+//
+//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
+// 方法是按如下所示使用“*”: :
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/CNAS_Authorize/Properties/Resources.Designer.cs b/CNAS_Authorize/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..015f89f
--- /dev/null
+++ b/CNAS_Authorize/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本: 4.0.30319.42000
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+//
+//------------------------------------------------------------------------------
+
+namespace CNAS_Authorize.Properties
+{
+
+
+ ///
+ /// 强类型资源类,用于查找本地化字符串等。
+ ///
+ // 此类是由 StronglyTypedResourceBuilder
+ // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
+ // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen
+ // (以 /str 作为命令选项),或重新生成 VS 项目。
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// 返回此类使用的缓存 ResourceManager 实例。
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CNAS_Authorize.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// 覆盖当前线程的 CurrentUICulture 属性
+ /// 使用此强类型的资源类的资源查找。
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/CNAS_Authorize/Properties/Resources.resx b/CNAS_Authorize/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/CNAS_Authorize/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/CNAS_Authorize/Properties/Settings.Designer.cs b/CNAS_Authorize/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..d1756a9
--- /dev/null
+++ b/CNAS_Authorize/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace CNAS_Authorize.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/CNAS_Authorize/Properties/Settings.settings b/CNAS_Authorize/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/CNAS_Authorize/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CNAS_BalanceClient/frmHistory.cs b/CNAS_BalanceClient/frmHistory.cs
index 3dc5fba..3452492 100644
--- a/CNAS_BalanceClient/frmHistory.cs
+++ b/CNAS_BalanceClient/frmHistory.cs
@@ -30,7 +30,8 @@ namespace CNAS_BalanceClient
private void comType_SelectedValueChanged(object sender, EventArgs e)
{
- switch (comType.SelectedItem)
+ string selectedItem = comType.SelectedItem == null ? "" : comType.SelectedItem.ToString();
+ switch (selectedItem)
{
case "全水分":
dgvQuanShuiFen.Visible = true;
@@ -71,7 +72,8 @@ namespace CNAS_BalanceClient
if (this.txtCode.Text.Trim() != "")
lstFilterData = lstFilterData.Where(s => s.Sample_Number == this.txtCode.Text.Trim()).ToList();
//筛选类型
- switch (comType.SelectedItem)
+ string selectedIteem = comType.SelectedItem == null ? "" : comType.SelectedItem.ToString();
+ switch (selectedIteem)
{
case "全水分":
lstFilterData = lstFilterData.Where(s => s.DataType == "ARB").ToList();
diff --git a/CNAS_DBSync.sln b/CNAS_DBSync.sln
index 74cd24b..5e192fa 100644
--- a/CNAS_DBSync.sln
+++ b/CNAS_DBSync.sln
@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.28307.705
+# Visual Studio 14
+VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CnasSynchronusDAL", "CnasSynchronusDAL\CnasSynchronusDAL.csproj", "{F4EC1B78-EFF4-4D04-AE79-631D220187AF}"
EndProject
@@ -31,6 +31,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WF-ChangeGUID", "WF-ChangeG
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CNAS_SerialPort", "CNAS_SerialPort\CNAS_SerialPort.csproj", "{ABB56058-B6FD-4747-A4E9-9C9361D6D993}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CNAS_Authorize", "CNAS_Authorize\CNAS_Authorize.csproj", "{9B4A6989-A7A6-41C0-ADFE-D470EB972D79}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -93,6 +95,10 @@ Global
{ABB56058-B6FD-4747-A4E9-9C9361D6D993}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ABB56058-B6FD-4747-A4E9-9C9361D6D993}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ABB56058-B6FD-4747-A4E9-9C9361D6D993}.Release|Any CPU.Build.0 = Release|Any CPU
+ {9B4A6989-A7A6-41C0-ADFE-D470EB972D79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {9B4A6989-A7A6-41C0-ADFE-D470EB972D79}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {9B4A6989-A7A6-41C0-ADFE-D470EB972D79}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {9B4A6989-A7A6-41C0-ADFE-D470EB972D79}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/CNAS_DBSync/ActivationForm.Designer.cs b/CNAS_DBSync/ActivationForm.Designer.cs
new file mode 100644
index 0000000..d85e224
--- /dev/null
+++ b/CNAS_DBSync/ActivationForm.Designer.cs
@@ -0,0 +1,115 @@
+namespace CNAS_DBSync
+{
+ partial class ActivationForm
+ {
+ private System.ComponentModel.IContainer components = null;
+
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ private void InitializeComponent()
+ {
+ this.lblTitle = new System.Windows.Forms.Label();
+ this.lblDescription = new System.Windows.Forms.Label();
+ this.lblActivationCode = new System.Windows.Forms.Label();
+ this.txtActivationCode = new System.Windows.Forms.TextBox();
+ this.btnActivate = new System.Windows.Forms.Button();
+ this.lnkDownloadCode = new System.Windows.Forms.LinkLabel();
+ this.SuspendLayout();
+ //
+ // lblTitle
+ //
+ this.lblTitle.Location = new System.Drawing.Point(0, 0);
+ this.lblTitle.Name = "lblTitle";
+ this.lblTitle.Size = new System.Drawing.Size(100, 23);
+ this.lblTitle.TabIndex = 0;
+ //
+ // lblDescription
+ //
+ this.lblDescription.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.lblDescription.ForeColor = System.Drawing.Color.Red;
+ this.lblDescription.Location = new System.Drawing.Point(20, 60);
+ this.lblDescription.Name = "lblDescription";
+ this.lblDescription.Size = new System.Drawing.Size(560, 40);
+ this.lblDescription.TabIndex = 1;
+ this.lblDescription.Text = "请点击上方按钮下载机器识别码,然后将机器识别码发给平台管理员申请授权文件后进行激活,激活后才可正常使用取数仪器客户端。";
+ //
+ // lblActivationCode
+ //
+ this.lblActivationCode.AutoSize = true;
+ this.lblActivationCode.Location = new System.Drawing.Point(20, 120);
+ this.lblActivationCode.Name = "lblActivationCode";
+ this.lblActivationCode.Size = new System.Drawing.Size(69, 20);
+ this.lblActivationCode.TabIndex = 2;
+ this.lblActivationCode.Text = "激活码:";
+ //
+ // txtActivationCode
+ //
+ this.txtActivationCode.Location = new System.Drawing.Point(20, 140);
+ this.txtActivationCode.Multiline = true;
+ this.txtActivationCode.Name = "txtActivationCode";
+ this.txtActivationCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.txtActivationCode.Size = new System.Drawing.Size(840, 225);
+ this.txtActivationCode.TabIndex = 0;
+ //
+ // btnActivate
+ //
+ this.btnActivate.Location = new System.Drawing.Point(370, 460);
+ this.btnActivate.Name = "btnActivate";
+ this.btnActivate.Size = new System.Drawing.Size(100, 30);
+ this.btnActivate.TabIndex = 3;
+ this.btnActivate.Text = "输入激活";
+ this.btnActivate.Click += new System.EventHandler(this.btnActivate_Click);
+ //
+ // lnkDownloadCode
+ //
+ this.lnkDownloadCode.ActiveLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(102)))), ((int)(((byte)(204)))));
+ this.lnkDownloadCode.AutoSize = true;
+ this.lnkDownloadCode.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.lnkDownloadCode.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.lnkDownloadCode.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(102)))), ((int)(((byte)(204)))));
+ this.lnkDownloadCode.Location = new System.Drawing.Point(20, 23);
+ this.lnkDownloadCode.Name = "lnkDownloadCode";
+ this.lnkDownloadCode.Size = new System.Drawing.Size(129, 23);
+ this.lnkDownloadCode.TabIndex = 4;
+ this.lnkDownloadCode.TabStop = true;
+ this.lnkDownloadCode.Text = "下载机器识别码";
+ this.lnkDownloadCode.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkDownloadCode_LinkClicked);
+ //
+ // ActivationForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(909, 563);
+ this.Controls.Add(this.lblTitle);
+ this.Controls.Add(this.lblDescription);
+ this.Controls.Add(this.lblActivationCode);
+ this.Controls.Add(this.txtActivationCode);
+ this.Controls.Add(this.btnActivate);
+ this.Controls.Add(this.lnkDownloadCode);
+ this.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
+ this.MaximizeBox = false;
+ this.MinimizeBox = false;
+ this.Name = "ActivationForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "下载机器识别码";
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ private System.Windows.Forms.Label lblTitle;
+ private System.Windows.Forms.Label lblDescription;
+ private System.Windows.Forms.Label lblActivationCode;
+ private System.Windows.Forms.TextBox txtActivationCode;
+ private System.Windows.Forms.Button btnActivate;
+ private System.Windows.Forms.LinkLabel lnkDownloadCode;
+ }
+}
\ No newline at end of file
diff --git a/CNAS_DBSync/ActivationForm.cs b/CNAS_DBSync/ActivationForm.cs
new file mode 100644
index 0000000..d585811
--- /dev/null
+++ b/CNAS_DBSync/ActivationForm.cs
@@ -0,0 +1,210 @@
+using System;
+using System.Text;
+using System.Windows.Forms;
+using System.Management;
+using System.Net.NetworkInformation;
+using System.Collections.Generic;
+using System.IO;
+using System.Configuration;
+
+namespace CNAS_DBSync
+{
+ public partial class ActivationForm : Form
+ {
+ private const string ACTIVATION_FILE = "activation.config";
+
+ public bool IsActivated { get; private set; }
+
+ public ActivationForm()
+ {
+ InitializeComponent();
+ IsActivated = false;
+ }
+
+ // 检查是否已激活
+ public bool CheckActivation()
+ {
+ try
+ {
+ string activationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ACTIVATION_FILE);
+ if (File.Exists(activationPath))
+ {
+ string machineCode = GetMachineCode();
+ string savedMachineCode = File.ReadAllText(activationPath);
+ return machineCode == savedMachineCode;
+ }
+ }
+ catch
+ {
+ // 如果读取失败,返回未激活状态
+ }
+ return false;
+ }
+
+ private void SaveActivation()
+ {
+ try
+ {
+ string activationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ACTIVATION_FILE);
+ File.WriteAllText(activationPath, GetMachineCode());
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show($"保存激活状态失败:{ex.Message}", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning);
+ }
+ }
+
+ private void btnActivate_Click(object sender, EventArgs e)
+ {
+ string activationCode = txtActivationCode.Text.Trim();
+ if (string.IsNullOrEmpty(activationCode))
+ {
+ MessageBox.Show("请输入激活码!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
+ return;
+ }
+
+ try
+ {
+ if (ValidateActivationCode(activationCode))
+ {
+ IsActivated = true;
+ SaveActivation(); // 保存激活状态
+ this.DialogResult = DialogResult.OK;
+ this.Close();
+ }
+ else
+ {
+ MessageBox.Show("激活码无效!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show($"激活失败:{ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ private void lnkDownloadCode_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
+ {
+ try
+ {
+ string machineCode = GetMachineCode();
+
+ // 创建保存文件对话框
+ var saveFileDialog = new SaveFileDialog
+ {
+ FileName = $"机器码_{DateTime.Now:yyyyMMdd}",
+ DefaultExt = ".txt",
+ Filter = "文本文件|*.txt"
+ };
+
+ if (saveFileDialog.ShowDialog() == DialogResult.OK)
+ {
+ File.WriteAllText(saveFileDialog.FileName, machineCode);
+ MessageBox.Show("机器码已成功保存!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ }
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show($"获取机器码失败:{ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ private string GetMachineCode()
+ {
+ StringBuilder machineCode = new StringBuilder();
+
+ // 获取CPU ID
+ string cpuId = GetCPUId();
+ machineCode.Append(cpuId);
+
+ // 获取所有MAC地址
+ List macAddresses = GetMACAddresses();
+ foreach (string mac in macAddresses)
+ {
+ machineCode.Append("_").Append(mac);
+ }
+
+ return machineCode.ToString();
+ }
+
+ private string GetCPUId()
+ {
+ try
+ {
+ using (ManagementClass mc = new ManagementClass("Win32_Processor"))
+ {
+ ManagementObjectCollection moc = mc.GetInstances();
+ foreach (ManagementObject mo in moc)
+ {
+ return mo.Properties["ProcessorId"].Value.ToString();
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ throw new Exception("获取CPU ID失败: " + ex.Message);
+ }
+ return string.Empty;
+ }
+
+ private List GetMACAddresses()
+ {
+ List macAddresses = new List();
+ try
+ {
+ NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();
+ foreach (NetworkInterface adapter in nics)
+ {
+ // 只获取物理网卡的MAC地址
+ if (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet ||
+ adapter.NetworkInterfaceType == NetworkInterfaceType.Wireless80211)
+ {
+ string mac = adapter.GetPhysicalAddress().ToString();
+ if (!string.IsNullOrEmpty(mac))
+ {
+ macAddresses.Add(mac);
+ }
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ throw new Exception("获取MAC地址失败: " + ex.Message);
+ }
+ return macAddresses;
+ }
+
+ private bool ValidateActivationCode(string activationCode)
+ {
+ // 使用实际的机器码来验证
+ string machineCode = GetMachineCode();
+ return GenerateActivationCode(machineCode) == activationCode;
+ }
+
+ private string GenerateActivationCode(string machineCode)
+ {
+ // 这里实现激活码生成算法
+ // 示例:简单的加密算法,实际应用中应该使用更安全的加密方式
+ using (var md5 = System.Security.Cryptography.MD5.Create())
+ {
+ // 加入时间戳使得生成的激活码具有时效性
+ string input = machineCode + DateTime.Now.ToString("yyyyMMdd");
+ byte[] inputBytes = Encoding.UTF8.GetBytes(input);
+ byte[] hashBytes = md5.ComputeHash(inputBytes);
+
+ // 转换为16进制字符串
+ StringBuilder sb = new StringBuilder();
+ for (int i = 0; i < hashBytes.Length; i++)
+ {
+ sb.Append(hashBytes[i].ToString("X2"));
+ // 每4个字符添加一个分隔符,提高可读性
+ if ((i + 1) % 4 == 0 && i != hashBytes.Length - 1)
+ {
+ sb.Append("-");
+ }
+ }
+ return sb.ToString();
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CNAS_DBSync/ActivationForm.resx b/CNAS_DBSync/ActivationForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/CNAS_DBSync/ActivationForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/CNAS_DBSync/App.config b/CNAS_DBSync/App.config
index 56dbf4a..1eff40e 100644
--- a/CNAS_DBSync/App.config
+++ b/CNAS_DBSync/App.config
@@ -4,10 +4,15 @@
+
+
+
-
-
+
+
@@ -72,4 +77,11 @@
-
+
+
+
+
+
+
+
+
diff --git a/CNAS_DBSync/CNAS_DBSync.csproj b/CNAS_DBSync/CNAS_DBSync.csproj
index 05873df..012f8fc 100644
--- a/CNAS_DBSync/CNAS_DBSync.csproj
+++ b/CNAS_DBSync/CNAS_DBSync.csproj
@@ -63,6 +63,13 @@
+
+ Form
+
+
+ ActivationForm.cs
+
+
Form
@@ -156,6 +163,9 @@
+
+ ActivationForm.cs
+
frmAddSubtract.cs
diff --git a/CNAS_DBSync/CNAS_DBSync.frmDatabaseParams.resources b/CNAS_DBSync/CNAS_DBSync.frmDatabaseParams.resources
new file mode 100644
index 0000000..1506b72
Binary files /dev/null and b/CNAS_DBSync/CNAS_DBSync.frmDatabaseParams.resources differ
diff --git a/CNAS_DBSync/FormSizeHelper.cs b/CNAS_DBSync/FormSizeHelper.cs
new file mode 100644
index 0000000..fdd24b6
--- /dev/null
+++ b/CNAS_DBSync/FormSizeHelper.cs
@@ -0,0 +1,264 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+using System.Windows.Forms;
+using System.Configuration;
+using System.Collections;
+using System.Drawing;
+using System.IO;
+
+using CnasSynchronousCommon;
+using System.Xml;
+
+namespace CNAS_DBSync
+{
+
+ struct FieldLine
+ {
+ Label label;
+ Control editor;
+ Button button;
+ int size;
+
+ public FieldLine(Label label, Control editor, Button button = null)
+ {
+ this.label = label;
+ this.editor = editor;
+ this.button = button;
+ int count = 0;
+ if (label != null) count++;
+ if (editor != null) count++;
+ if (button != null) count++;
+ size = count;
+ }
+
+ public Label Label
+ {
+ get
+ {
+ return label;
+ }
+ }
+ public Control Editor
+ {
+ get
+ {
+ return editor;
+ }
+ }
+
+ public Button Button
+ {
+ get
+ {
+ return button;
+ }
+ }
+
+ }
+
+ ///
+ /// 设置容器内编辑字段位置的公共算法
+ ///
+ class FormSizeHelper
+ {
+ private static readonly string strLocalConfigPath = FileHelper.getBasePath() + @"\Data\";
+ private static readonly string FormSizeXml = "FormSize.xml";
+ private static readonly FormSizeHelper instance;
+ private Hashtable formSizes;
+
+ // 静态构造函数确保线程安全且延迟加载。
+ static FormSizeHelper() {
+ instance = new FormSizeHelper();
+ }
+
+ // 防止外部实例化。
+ private FormSizeHelper() {
+ Init();
+ }
+ public static FormSizeHelper Instance => instance; // 提供全局访问点。
+
+ public static void Arrange(Panel container, FieldLine[] fields, int span1 = 1, int span2 = 1)
+ {
+ int colLabel = 0;
+ int colEditor = 0;
+ int colButton = 0;
+
+ int lbLeft = -1;
+ for (int i = 0; i < fields.Length; i++)
+ {
+ if (lbLeft == -1)
+ {
+ if (fields[i].Label != null)
+ lbLeft = fields[i].Label.Left;
+ }
+ else if (fields[i].Label != null && fields[i].Label.Left >= 0 && fields[i].Label.Left < lbLeft)
+ {
+ lbLeft = fields[i].Label.Left;
+ }
+ }
+
+ int width = lbLeft < 0 ? (container.Width * 80 / 100) : (container.Width-lbLeft*2);
+ int marginLeft = (container.Width - width) / 2;
+
+ for (int i=0;i< fields.Length; i++)
+ {
+ if(fields[i].Label != null && fields[i].Label.Width > colLabel)
+ {
+ colLabel = fields[i].Label.Width;
+ }
+ if (fields[i].Button != null && fields[i].Button.Width > colButton)
+ {
+ colButton = fields[i].Button.Width;
+ }
+ }
+
+ colEditor = width - (colLabel + span1 + span2 + colButton);
+
+ for (int i = 0; i < fields.Length; i++)
+ {
+ //Label不动
+
+ //改变Editor
+ if (fields[i].Editor != null)
+ {
+ if(fields[i].Editor is TextBox)
+ {
+ TextBox tb = (TextBox)fields[i].Editor;
+ //tb.Left = marginLeft + colLabel + span1;
+ tb.Width = colEditor;
+ if(fields[i].Button != null)
+ {
+ fields[i].Button.Left = tb.Left + colEditor + span2;
+ }
+ }
+
+
+ if(fields[i].Editor is CheckBox)
+ {
+ //不动
+ }
+
+ if(fields[i].Editor is ComboBox)
+ {
+ ComboBox tb = (ComboBox)fields[i].Editor;
+ //tb.Left = marginLeft + colLabel + span1;
+ tb.Width = colEditor;
+ if (fields[i].Button != null)
+ {
+ fields[i].Button.Left = tb.Left + colEditor + span2;
+ }
+ }
+
+ }
+
+ }
+
+
+ }
+
+ private static bool ValidBound(Form form, int x, int y, int w, int h)
+ {
+ if (x>=0 && y >= 0 && w>0 && h > 0)
+{
+ Screen screen = Screen.FromControl(form);
+ Rectangle r = screen.Bounds;
+ return (x + w < r.Width && y + h < r.Height);
+ }
+
+ return false;
+ }
+
+ private void Init()
+ {
+ formSizes = new Hashtable(10);
+ string strUrl = strLocalConfigPath + FormSizeXml;
+ try
+ {
+ if (!File.Exists(strUrl)) return;
+
+ XmlDocument doc = new XmlDocument();
+ doc.Load(strUrl);
+ XmlNode root = doc.DocumentElement;
+ foreach (XmlNode node in root.ChildNodes)
+ {
+ string formname = node.Name;
+ string value = node.InnerText;
+ formSizes.Add(formname, value);
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+
+ }
+
+ public List LoadDefaultSize(Form form, string key, out bool changed)
+ {
+ changed = false;
+ if (formSizes.ContainsKey(key))
+ {
+ string value = formSizes[key] as string;
+ string[] values = value.Split(',');
+ if (values.Length >= 4)
+ {
+ int x, y, w, h;
+ if (int.TryParse(values[0], out x) && int.TryParse(values[1], out y) &&
+ int.TryParse(values[2], out w) && int.TryParse(values[3], out h))
+ {
+ if (ValidBound(form, x, y, w, h))
+ {
+ form.Left = x;
+ form.Top = y;
+ form.Width = w;
+ form.Height = h;
+ changed = true;
+ }
+ }
+
+ if (changed && values.Length > 4)
+ {
+ List list = new List(values.Length - 4);
+ for (int i = 4; i < values.Length; i++)
+ {
+ list.Add(values[i]);
+ }
+ return list;
+ }
+ }
+ }
+ return null;
+ }
+
+ public bool SaveDefaultSize(string key, string value)
+ {
+ if (!string.IsNullOrEmpty(key) && !string.IsNullOrEmpty(value))
+ {
+ formSizes[key] = value;
+ StringBuilder sb = new StringBuilder();
+ sb.Append("\n\n");
+ foreach(object k in formSizes.Keys)
+ {
+ string line = string.Format("<{0}>{1}{0}>", k, formSizes[k]);
+ sb.Append(line).Append("\n");
+ }
+ sb.Append("");
+ try
+ {
+ bool bIfSuccess = FileHelper.SaveLocalFile(strLocalConfigPath, FormSizeXml, sb.ToString());
+ return bIfSuccess;
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ }
+ return true;
+ }
+
+ }
+}
diff --git a/CNAS_DBSync/Program.cs b/CNAS_DBSync/Program.cs
index a61e25d..a879b82 100644
--- a/CNAS_DBSync/Program.cs
+++ b/CNAS_DBSync/Program.cs
@@ -23,8 +23,26 @@ namespace CNAS_DBSync
/*CheckAvailability(ref strMsg);*/
if (strMsg == "")
{
- if (new frmOperationPwd().ShowDialog() == DialogResult.OK)
- Application.Run(new frmSyncParams());
+ // 检查是否已激活
+ if (! (new ActivationForm()).CheckActivation())
+ {
+ // 未激活,显示激活窗口
+ using (var activationForm = new ActivationForm())
+ {
+ if (activationForm.ShowDialog() == DialogResult.OK)
+ {
+ // 激活成功,显示主窗口
+ if (new frmOperationPwd().ShowDialog() == DialogResult.OK)
+ Application.Run(new frmSyncParams());
+ }
+ }
+ }
+ else
+ {
+ // 已激活,直接显示主窗口
+ if (new frmOperationPwd().ShowDialog() == DialogResult.OK)
+ Application.Run(new frmSyncParams());
+ }
}
else
MessageBox.Show(strMsg);
diff --git a/CNAS_DBSync/Properties/Settings.Designer.cs b/CNAS_DBSync/Properties/Settings.Designer.cs
index 91aabe9..8620461 100644
--- a/CNAS_DBSync/Properties/Settings.Designer.cs
+++ b/CNAS_DBSync/Properties/Settings.Designer.cs
@@ -12,7 +12,7 @@ namespace CNAS_DBSync.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.0.3.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
@@ -26,11 +26,20 @@ namespace CNAS_DBSync.Properties {
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]
- [global::System.Configuration.DefaultSettingValueAttribute("Data Source=E:\\JXD\\CNASClient\\CNAS_DBSync\\dll\\database.db")]
+ [global::System.Configuration.DefaultSettingValueAttribute("Data Source=C:\\DEV\\CNAS\\CNASClient\\CNAS_DBSync\\dll\\database.db")]
public string ConnectionString {
get {
return ((string)(this["ConnectionString"]));
}
}
+
+ [global::System.Configuration.ApplicationScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string SyncParamSize {
+ get {
+ return ((string)(this["SyncParamSize"]));
+ }
+ }
}
}
diff --git a/CNAS_DBSync/Properties/Settings.settings b/CNAS_DBSync/Properties/Settings.settings
index 6000af3..85247f8 100644
--- a/CNAS_DBSync/Properties/Settings.settings
+++ b/CNAS_DBSync/Properties/Settings.settings
@@ -5,10 +5,13 @@
<?xml version="1.0" encoding="utf-16"?>
<SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <ConnectionString>Data Source=E:\JXD\CNASClient\CNAS_DBSync\dll\database.db</ConnectionString>
+ <ConnectionString>Data Source=C:\DEV\CNAS\CNASClient\CNAS_DBSync\dll\database.db</ConnectionString>
<ProviderName>Devart.Data.SQLite</ProviderName>
</SerializableConnectionString>
- Data Source=E:\JXD\CNASClient\CNAS_DBSync\dll\database.db
+ Data Source=C:\DEV\CNAS\CNASClient\CNAS_DBSync\dll\database.db
+
+
+
\ No newline at end of file
diff --git a/CNAS_DBSync/frmSourceSetting.Designer.cs b/CNAS_DBSync/frmSourceSetting.Designer.cs
index 997d6c2..7e8bb57 100644
--- a/CNAS_DBSync/frmSourceSetting.Designer.cs
+++ b/CNAS_DBSync/frmSourceSetting.Designer.cs
@@ -37,7 +37,7 @@
this.tabExcel = new System.Windows.Forms.TabPage();
this.txtExcelAutoSql = new System.Windows.Forms.TextBox();
this.txtExcelAutoSqlName = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
+ this.lbExcelDynQuery = new System.Windows.Forms.Label();
this.cbxExcelReadFolder = new System.Windows.Forms.CheckBox();
this.cbxExcelReadFile = new System.Windows.Forms.CheckBox();
this.cbxExcelNewVersion = new System.Windows.Forms.CheckBox();
@@ -46,7 +46,7 @@
this.lblExcelRemoteUser = new System.Windows.Forms.Label();
this.txtExcelFileNameFormat = new System.Windows.Forms.TextBox();
this.cbxExcelOldVersion = new System.Windows.Forms.CheckBox();
- this.label3 = new System.Windows.Forms.Label();
+ this.lbExcelDateFormat = new System.Windows.Forms.Label();
this.txtExcelSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
this.tabFoxPro = new System.Windows.Forms.TabPage();
this.txtFoxProSpecialMethodName = new System.Windows.Forms.TextBox();
@@ -158,9 +158,9 @@
//
this.pnlBottom.Controls.Add(this.btnOK);
this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.pnlBottom.Location = new System.Drawing.Point(0, 376);
+ this.pnlBottom.Location = new System.Drawing.Point(0, 504);
this.pnlBottom.Name = "pnlBottom";
- this.pnlBottom.Size = new System.Drawing.Size(669, 42);
+ this.pnlBottom.Size = new System.Drawing.Size(936, 42);
this.pnlBottom.TabIndex = 3;
//
// pnlTop
@@ -168,7 +168,7 @@
this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
this.pnlTop.Location = new System.Drawing.Point(0, 0);
this.pnlTop.Name = "pnlTop";
- this.pnlTop.Size = new System.Drawing.Size(669, 10);
+ this.pnlTop.Size = new System.Drawing.Size(936, 10);
this.pnlTop.TabIndex = 2;
//
// pnlCenter
@@ -177,7 +177,7 @@
this.pnlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlCenter.Location = new System.Drawing.Point(0, 10);
this.pnlCenter.Name = "pnlCenter";
- this.pnlCenter.Size = new System.Drawing.Size(669, 366);
+ this.pnlCenter.Size = new System.Drawing.Size(936, 494);
this.pnlCenter.TabIndex = 4;
//
// tabcDS
@@ -194,7 +194,7 @@
this.tabcDS.Location = new System.Drawing.Point(0, 0);
this.tabcDS.Name = "tabcDS";
this.tabcDS.SelectedIndex = 0;
- this.tabcDS.Size = new System.Drawing.Size(669, 366);
+ this.tabcDS.Size = new System.Drawing.Size(936, 494);
this.tabcDS.TabIndex = 7;
this.tabcDS.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabcDS_Selected);
//
@@ -202,7 +202,7 @@
//
this.tabExcel.Controls.Add(this.txtExcelAutoSql);
this.tabExcel.Controls.Add(this.txtExcelAutoSqlName);
- this.tabExcel.Controls.Add(this.label1);
+ this.tabExcel.Controls.Add(this.lbExcelDynQuery);
this.tabExcel.Controls.Add(this.cbxExcelReadFolder);
this.tabExcel.Controls.Add(this.cbxExcelReadFile);
this.tabExcel.Controls.Add(this.cbxExcelNewVersion);
@@ -211,12 +211,12 @@
this.tabExcel.Controls.Add(this.lblExcelRemoteUser);
this.tabExcel.Controls.Add(this.txtExcelFileNameFormat);
this.tabExcel.Controls.Add(this.cbxExcelOldVersion);
- this.tabExcel.Controls.Add(this.label3);
+ this.tabExcel.Controls.Add(this.lbExcelDateFormat);
this.tabExcel.Controls.Add(this.txtExcelSpecialDateColumnFormat);
- this.tabExcel.Location = new System.Drawing.Point(4, 26);
+ this.tabExcel.Location = new System.Drawing.Point(8, 45);
this.tabExcel.Name = "tabExcel";
this.tabExcel.Padding = new System.Windows.Forms.Padding(3);
- this.tabExcel.Size = new System.Drawing.Size(661, 336);
+ this.tabExcel.Size = new System.Drawing.Size(920, 441);
this.tabExcel.TabIndex = 0;
this.tabExcel.Text = "Excel";
this.tabExcel.UseVisualStyleBackColor = true;
@@ -226,7 +226,7 @@
this.txtExcelAutoSql.Location = new System.Drawing.Point(209, 193);
this.txtExcelAutoSql.Multiline = true;
this.txtExcelAutoSql.Name = "txtExcelAutoSql";
- this.txtExcelAutoSql.Size = new System.Drawing.Size(286, 101);
+ this.txtExcelAutoSql.Size = new System.Drawing.Size(501, 184);
this.txtExcelAutoSql.TabIndex = 48;
this.txtExcelAutoSql.Enter += new System.EventHandler(this.txtExcelAutoSql_Enter);
this.txtExcelAutoSql.Leave += new System.EventHandler(this.txtExcelAutoSql_Leave);
@@ -235,26 +235,26 @@
//
this.txtExcelAutoSqlName.Location = new System.Drawing.Point(209, 158);
this.txtExcelAutoSqlName.Name = "txtExcelAutoSqlName";
- this.txtExcelAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtExcelAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtExcelAutoSqlName.TabIndex = 47;
this.txtExcelAutoSqlName.Enter += new System.EventHandler(this.txtExcelAutoSqlName_Enter);
this.txtExcelAutoSqlName.Leave += new System.EventHandler(this.txtExcelAutoSqlName_Leave);
//
- // label1
+ // lbExcelDynQuery
//
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(97, 161);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(104, 17);
- this.label1.TabIndex = 46;
- this.label1.Text = "自定义查询语句:";
+ this.lbExcelDynQuery.AutoSize = true;
+ this.lbExcelDynQuery.Location = new System.Drawing.Point(97, 161);
+ this.lbExcelDynQuery.Name = "lbExcelDynQuery";
+ this.lbExcelDynQuery.Size = new System.Drawing.Size(206, 31);
+ this.lbExcelDynQuery.TabIndex = 46;
+ this.lbExcelDynQuery.Text = "自定义查询语句:";
//
// cbxExcelReadFolder
//
this.cbxExcelReadFolder.AutoSize = true;
- this.cbxExcelReadFolder.Location = new System.Drawing.Point(298, 121);
+ this.cbxExcelReadFolder.Location = new System.Drawing.Point(561, 121);
this.cbxExcelReadFolder.Name = "cbxExcelReadFolder";
- this.cbxExcelReadFolder.Size = new System.Drawing.Size(87, 21);
+ this.cbxExcelReadFolder.Size = new System.Drawing.Size(166, 35);
this.cbxExcelReadFolder.TabIndex = 32;
this.cbxExcelReadFolder.Text = "读取文件夹";
this.cbxExcelReadFolder.UseVisualStyleBackColor = true;
@@ -265,9 +265,9 @@
this.cbxExcelReadFile.AutoSize = true;
this.cbxExcelReadFile.Checked = true;
this.cbxExcelReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
- this.cbxExcelReadFile.Location = new System.Drawing.Point(209, 121);
+ this.cbxExcelReadFile.Location = new System.Drawing.Point(312, 121);
this.cbxExcelReadFile.Name = "cbxExcelReadFile";
- this.cbxExcelReadFile.Size = new System.Drawing.Size(75, 21);
+ this.cbxExcelReadFile.Size = new System.Drawing.Size(142, 35);
this.cbxExcelReadFile.TabIndex = 31;
this.cbxExcelReadFile.Text = "读取文件";
this.cbxExcelReadFile.UseVisualStyleBackColor = true;
@@ -276,9 +276,9 @@
// cbxExcelNewVersion
//
this.cbxExcelNewVersion.AutoSize = true;
- this.cbxExcelNewVersion.Location = new System.Drawing.Point(353, 14);
+ this.cbxExcelNewVersion.Location = new System.Drawing.Point(561, 14);
this.cbxExcelNewVersion.Name = "cbxExcelNewVersion";
- this.cbxExcelNewVersion.Size = new System.Drawing.Size(139, 21);
+ this.cbxExcelNewVersion.Size = new System.Drawing.Size(268, 35);
this.cbxExcelNewVersion.TabIndex = 25;
this.cbxExcelNewVersion.Text = "office 2007以后版本";
this.cbxExcelNewVersion.UseVisualStyleBackColor = true;
@@ -289,7 +289,7 @@
this.label22.AutoSize = true;
this.label22.Location = new System.Drawing.Point(90, 15);
this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(111, 17);
+ this.label22.Size = new System.Drawing.Size(218, 31);
this.label22.TabIndex = 24;
this.label22.Text = "Office Excel版本:";
//
@@ -298,7 +298,7 @@
this.lblExcelRemotePwd.AutoSize = true;
this.lblExcelRemotePwd.Location = new System.Drawing.Point(60, 121);
this.lblExcelRemotePwd.Name = "lblExcelRemotePwd";
- this.lblExcelRemotePwd.Size = new System.Drawing.Size(141, 17);
+ this.lblExcelRemotePwd.Size = new System.Drawing.Size(280, 31);
this.lblExcelRemotePwd.TabIndex = 10;
this.lblExcelRemotePwd.Text = "读取模式(文件/文件夹):";
//
@@ -307,7 +307,7 @@
this.lblExcelRemoteUser.AutoSize = true;
this.lblExcelRemoteUser.Location = new System.Drawing.Point(85, 87);
this.lblExcelRemoteUser.Name = "lblExcelRemoteUser";
- this.lblExcelRemoteUser.Size = new System.Drawing.Size(116, 17);
+ this.lblExcelRemoteUser.Size = new System.Drawing.Size(230, 31);
this.lblExcelRemoteUser.TabIndex = 8;
this.lblExcelRemoteUser.Text = "自定义文件名格式:";
//
@@ -315,7 +315,7 @@
//
this.txtExcelFileNameFormat.Location = new System.Drawing.Point(207, 84);
this.txtExcelFileNameFormat.Name = "txtExcelFileNameFormat";
- this.txtExcelFileNameFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtExcelFileNameFormat.Size = new System.Drawing.Size(230, 39);
this.txtExcelFileNameFormat.TabIndex = 6;
this.txtExcelFileNameFormat.Enter += new System.EventHandler(this.txtExcelFileNameFormat_Enter);
this.txtExcelFileNameFormat.Leave += new System.EventHandler(this.txtExcelFileNameFormat_Leave);
@@ -325,28 +325,28 @@
this.cbxExcelOldVersion.AutoSize = true;
this.cbxExcelOldVersion.Checked = true;
this.cbxExcelOldVersion.CheckState = System.Windows.Forms.CheckState.Checked;
- this.cbxExcelOldVersion.Location = new System.Drawing.Point(208, 14);
+ this.cbxExcelOldVersion.Location = new System.Drawing.Point(312, 14);
this.cbxExcelOldVersion.Name = "cbxExcelOldVersion";
- this.cbxExcelOldVersion.Size = new System.Drawing.Size(139, 21);
+ this.cbxExcelOldVersion.Size = new System.Drawing.Size(268, 35);
this.cbxExcelOldVersion.TabIndex = 4;
this.cbxExcelOldVersion.Text = "office 2007以前版本";
this.cbxExcelOldVersion.UseVisualStyleBackColor = true;
this.cbxExcelOldVersion.CheckedChanged += new System.EventHandler(this.cbxExcelOldVersion_CheckedChanged);
//
- // label3
+ // lbExcelDateFormat
//
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(97, 50);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(104, 17);
- this.label3.TabIndex = 5;
- this.label3.Text = "日期列特殊格式:";
+ this.lbExcelDateFormat.AutoSize = true;
+ this.lbExcelDateFormat.Location = new System.Drawing.Point(97, 50);
+ this.lbExcelDateFormat.Name = "lbExcelDateFormat";
+ this.lbExcelDateFormat.Size = new System.Drawing.Size(206, 31);
+ this.lbExcelDateFormat.TabIndex = 5;
+ this.lbExcelDateFormat.Text = "日期列特殊格式:";
//
// txtExcelSpecialDateColumnFormat
//
this.txtExcelSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 47);
this.txtExcelSpecialDateColumnFormat.Name = "txtExcelSpecialDateColumnFormat";
- this.txtExcelSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtExcelSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtExcelSpecialDateColumnFormat.TabIndex = 5;
this.txtExcelSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtExcelSpecialDateColumnFormat_Enter);
this.txtExcelSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtExcelSpecialDateColumnFormat_Leave);
@@ -366,10 +366,10 @@
this.tabFoxPro.Controls.Add(this.txtFoxProFileNameFormat);
this.tabFoxPro.Controls.Add(this.label39);
this.tabFoxPro.Controls.Add(this.txtFoxProSpecialDateColumnFormat);
- this.tabFoxPro.Location = new System.Drawing.Point(4, 26);
+ this.tabFoxPro.Location = new System.Drawing.Point(8, 45);
this.tabFoxPro.Name = "tabFoxPro";
this.tabFoxPro.Padding = new System.Windows.Forms.Padding(3);
- this.tabFoxPro.Size = new System.Drawing.Size(661, 336);
+ this.tabFoxPro.Size = new System.Drawing.Size(920, 441);
this.tabFoxPro.TabIndex = 6;
this.tabFoxPro.Text = "FoxPro";
this.tabFoxPro.UseVisualStyleBackColor = true;
@@ -378,7 +378,7 @@
//
this.txtFoxProSpecialMethodName.Location = new System.Drawing.Point(213, 221);
this.txtFoxProSpecialMethodName.Name = "txtFoxProSpecialMethodName";
- this.txtFoxProSpecialMethodName.Size = new System.Drawing.Size(230, 23);
+ this.txtFoxProSpecialMethodName.Size = new System.Drawing.Size(230, 39);
this.txtFoxProSpecialMethodName.TabIndex = 65;
this.txtFoxProSpecialMethodName.Enter += new System.EventHandler(this.txtFoxProSpecialMethodName_Enter);
this.txtFoxProSpecialMethodName.Leave += new System.EventHandler(this.txtFoxProSpecialMethodName_Leave);
@@ -398,7 +398,7 @@
this.label27.AutoSize = true;
this.label27.Location = new System.Drawing.Point(133, 224);
this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(68, 17);
+ this.label27.Size = new System.Drawing.Size(134, 31);
this.label27.TabIndex = 64;
this.label27.Text = "补充方法:";
//
@@ -407,7 +407,7 @@
this.label33.AutoSize = true;
this.label33.Location = new System.Drawing.Point(97, 127);
this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(104, 17);
+ this.label33.Size = new System.Drawing.Size(206, 31);
this.label33.TabIndex = 63;
this.label33.Text = "自定义查询语句:";
//
@@ -415,7 +415,7 @@
//
this.txtFoxProAutoSqlName.Location = new System.Drawing.Point(213, 124);
this.txtFoxProAutoSqlName.Name = "txtFoxProAutoSqlName";
- this.txtFoxProAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtFoxProAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtFoxProAutoSqlName.TabIndex = 58;
this.txtFoxProAutoSqlName.Enter += new System.EventHandler(this.txtFoxProAutoSqlName_Enter);
this.txtFoxProAutoSqlName.Leave += new System.EventHandler(this.txtFoxProAutoSqlName_Leave);
@@ -425,7 +425,7 @@
this.cbxFoxProReadFolder.AutoSize = true;
this.cbxFoxProReadFolder.Location = new System.Drawing.Point(296, 14);
this.cbxFoxProReadFolder.Name = "cbxFoxProReadFolder";
- this.cbxFoxProReadFolder.Size = new System.Drawing.Size(87, 21);
+ this.cbxFoxProReadFolder.Size = new System.Drawing.Size(166, 35);
this.cbxFoxProReadFolder.TabIndex = 62;
this.cbxFoxProReadFolder.Text = "读取文件夹";
this.cbxFoxProReadFolder.UseVisualStyleBackColor = true;
@@ -448,7 +448,7 @@
this.cbxFoxProReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxFoxProReadFile.Location = new System.Drawing.Point(215, 14);
this.cbxFoxProReadFile.Name = "cbxFoxProReadFile";
- this.cbxFoxProReadFile.Size = new System.Drawing.Size(75, 21);
+ this.cbxFoxProReadFile.Size = new System.Drawing.Size(142, 35);
this.cbxFoxProReadFile.TabIndex = 61;
this.cbxFoxProReadFile.Text = "读取文件";
this.cbxFoxProReadFile.UseVisualStyleBackColor = true;
@@ -459,7 +459,7 @@
this.label35.AutoSize = true;
this.label35.Location = new System.Drawing.Point(60, 15);
this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(141, 17);
+ this.label35.Size = new System.Drawing.Size(280, 31);
this.label35.TabIndex = 53;
this.label35.Text = "读取模式(文件/文件夹):";
//
@@ -468,7 +468,7 @@
this.label38.AutoSize = true;
this.label38.Location = new System.Drawing.Point(85, 90);
this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(116, 17);
+ this.label38.Size = new System.Drawing.Size(230, 31);
this.label38.TabIndex = 52;
this.label38.Text = "自定义文件名格式:";
//
@@ -476,7 +476,7 @@
//
this.txtFoxProFileNameFormat.Location = new System.Drawing.Point(213, 87);
this.txtFoxProFileNameFormat.Name = "txtFoxProFileNameFormat";
- this.txtFoxProFileNameFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtFoxProFileNameFormat.Size = new System.Drawing.Size(230, 39);
this.txtFoxProFileNameFormat.TabIndex = 51;
this.txtFoxProFileNameFormat.Enter += new System.EventHandler(this.txtFoxProFileNameFormat_Enter);
this.txtFoxProFileNameFormat.Leave += new System.EventHandler(this.txtFoxProFileNameFormat_Leave);
@@ -486,7 +486,7 @@
this.label39.AutoSize = true;
this.label39.Location = new System.Drawing.Point(97, 53);
this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(104, 17);
+ this.label39.Size = new System.Drawing.Size(206, 31);
this.label39.TabIndex = 49;
this.label39.Text = "日期列特殊格式:";
//
@@ -494,7 +494,7 @@
//
this.txtFoxProSpecialDateColumnFormat.Location = new System.Drawing.Point(213, 50);
this.txtFoxProSpecialDateColumnFormat.Name = "txtFoxProSpecialDateColumnFormat";
- this.txtFoxProSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtFoxProSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtFoxProSpecialDateColumnFormat.TabIndex = 50;
this.txtFoxProSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtFoxProSpecialDateColumnFormat_Enter);
this.txtFoxProSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtFoxProSpecialDateColumnFormat_Leave);
@@ -516,10 +516,10 @@
this.tabAccess.Controls.Add(this.cbxAccessOldVersion);
this.tabAccess.Controls.Add(this.label31);
this.tabAccess.Controls.Add(this.txtAccessSpecialDateColumnFormat);
- this.tabAccess.Location = new System.Drawing.Point(4, 26);
+ this.tabAccess.Location = new System.Drawing.Point(8, 45);
this.tabAccess.Name = "tabAccess";
this.tabAccess.Padding = new System.Windows.Forms.Padding(3);
- this.tabAccess.Size = new System.Drawing.Size(661, 336);
+ this.tabAccess.Size = new System.Drawing.Size(920, 441);
this.tabAccess.TabIndex = 1;
this.tabAccess.Text = "Access";
this.tabAccess.UseVisualStyleBackColor = true;
@@ -529,7 +529,7 @@
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(106, 53);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(95, 17);
+ this.label2.Size = new System.Drawing.Size(187, 31);
this.label2.TabIndex = 48;
this.label2.Text = "Access后缀名:";
//
@@ -537,7 +537,7 @@
//
this.txtAccessSuffix.Location = new System.Drawing.Point(205, 50);
this.txtAccessSuffix.Name = "txtAccessSuffix";
- this.txtAccessSuffix.Size = new System.Drawing.Size(230, 23);
+ this.txtAccessSuffix.Size = new System.Drawing.Size(230, 39);
this.txtAccessSuffix.TabIndex = 49;
this.txtAccessSuffix.Enter += new System.EventHandler(this.txtAccessSuffix_Enter);
this.txtAccessSuffix.Leave += new System.EventHandler(this.txtAccessSuffix_Leave);
@@ -547,7 +547,7 @@
this.cbxAccessReadFolder.AutoSize = true;
this.cbxAccessReadFolder.Location = new System.Drawing.Point(290, 161);
this.cbxAccessReadFolder.Name = "cbxAccessReadFolder";
- this.cbxAccessReadFolder.Size = new System.Drawing.Size(87, 21);
+ this.cbxAccessReadFolder.Size = new System.Drawing.Size(166, 35);
this.cbxAccessReadFolder.TabIndex = 47;
this.cbxAccessReadFolder.Text = "读取文件夹";
this.cbxAccessReadFolder.UseVisualStyleBackColor = true;
@@ -560,7 +560,7 @@
this.cbxAccessReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxAccessReadFile.Location = new System.Drawing.Point(208, 161);
this.cbxAccessReadFile.Name = "cbxAccessReadFile";
- this.cbxAccessReadFile.Size = new System.Drawing.Size(75, 21);
+ this.cbxAccessReadFile.Size = new System.Drawing.Size(142, 35);
this.cbxAccessReadFile.TabIndex = 46;
this.cbxAccessReadFile.Text = "读取文件";
this.cbxAccessReadFile.UseVisualStyleBackColor = true;
@@ -580,7 +580,7 @@
//
this.txtAccessAutoSqlName.Location = new System.Drawing.Point(205, 195);
this.txtAccessAutoSqlName.Name = "txtAccessAutoSqlName";
- this.txtAccessAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtAccessAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtAccessAutoSqlName.TabIndex = 43;
this.txtAccessAutoSqlName.Enter += new System.EventHandler(this.txtAccessAutoSqlName_Enter);
this.txtAccessAutoSqlName.Leave += new System.EventHandler(this.txtAccessAutoSqlName_Leave);
@@ -590,7 +590,7 @@
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(97, 198);
this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(104, 17);
+ this.label11.Size = new System.Drawing.Size(206, 31);
this.label11.TabIndex = 41;
this.label11.Text = "自定义查询语句:";
//
@@ -599,7 +599,7 @@
this.cbxAccessNewVersion.AutoSize = true;
this.cbxAccessNewVersion.Location = new System.Drawing.Point(352, 14);
this.cbxAccessNewVersion.Name = "cbxAccessNewVersion";
- this.cbxAccessNewVersion.Size = new System.Drawing.Size(139, 21);
+ this.cbxAccessNewVersion.Size = new System.Drawing.Size(268, 35);
this.cbxAccessNewVersion.TabIndex = 40;
this.cbxAccessNewVersion.Text = "office 2007以后版本";
this.cbxAccessNewVersion.UseVisualStyleBackColor = true;
@@ -610,7 +610,7 @@
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(80, 15);
this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(121, 17);
+ this.label15.Size = new System.Drawing.Size(238, 31);
this.label15.TabIndex = 39;
this.label15.Text = "Office Access版本:";
//
@@ -619,7 +619,7 @@
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(60, 161);
this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(141, 17);
+ this.label16.Size = new System.Drawing.Size(280, 31);
this.label16.TabIndex = 38;
this.label16.Text = "读取模式(文件/文件夹):";
//
@@ -628,7 +628,7 @@
this.label21.AutoSize = true;
this.label21.Location = new System.Drawing.Point(85, 127);
this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(116, 17);
+ this.label21.Size = new System.Drawing.Size(230, 31);
this.label21.TabIndex = 37;
this.label21.Text = "自定义文件名格式:";
//
@@ -636,7 +636,7 @@
//
this.txtAccessFileName.Location = new System.Drawing.Point(205, 124);
this.txtAccessFileName.Name = "txtAccessFileName";
- this.txtAccessFileName.Size = new System.Drawing.Size(230, 23);
+ this.txtAccessFileName.Size = new System.Drawing.Size(230, 39);
this.txtAccessFileName.TabIndex = 36;
this.txtAccessFileName.Enter += new System.EventHandler(this.txtAccessFileName_Enter);
this.txtAccessFileName.Leave += new System.EventHandler(this.txtAccessFileName_Leave);
@@ -648,7 +648,7 @@
this.cbxAccessOldVersion.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxAccessOldVersion.Location = new System.Drawing.Point(206, 14);
this.cbxAccessOldVersion.Name = "cbxAccessOldVersion";
- this.cbxAccessOldVersion.Size = new System.Drawing.Size(139, 21);
+ this.cbxAccessOldVersion.Size = new System.Drawing.Size(268, 35);
this.cbxAccessOldVersion.TabIndex = 33;
this.cbxAccessOldVersion.Text = "office 2007以前版本";
this.cbxAccessOldVersion.UseVisualStyleBackColor = true;
@@ -659,7 +659,7 @@
this.label31.AutoSize = true;
this.label31.Location = new System.Drawing.Point(97, 90);
this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(104, 17);
+ this.label31.Size = new System.Drawing.Size(206, 31);
this.label31.TabIndex = 34;
this.label31.Text = "日期列特殊格式:";
//
@@ -667,7 +667,7 @@
//
this.txtAccessSpecialDateColumnFormat.Location = new System.Drawing.Point(205, 87);
this.txtAccessSpecialDateColumnFormat.Name = "txtAccessSpecialDateColumnFormat";
- this.txtAccessSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtAccessSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtAccessSpecialDateColumnFormat.TabIndex = 35;
this.txtAccessSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtAccessSpecialDateColumnFormat_Enter);
this.txtAccessSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtAccessSpecialDateColumnFormat_Leave);
@@ -684,9 +684,9 @@
this.tabSQLite.Controls.Add(this.txtSqliteFileNameFormat);
this.tabSQLite.Controls.Add(this.label8);
this.tabSQLite.Controls.Add(this.txtSqliteSpecialDateColumnFormat);
- this.tabSQLite.Location = new System.Drawing.Point(4, 26);
+ this.tabSQLite.Location = new System.Drawing.Point(8, 45);
this.tabSQLite.Name = "tabSQLite";
- this.tabSQLite.Size = new System.Drawing.Size(661, 336);
+ this.tabSQLite.Size = new System.Drawing.Size(920, 441);
this.tabSQLite.TabIndex = 2;
this.tabSQLite.Text = "SQLLite";
this.tabSQLite.UseVisualStyleBackColor = true;
@@ -696,7 +696,7 @@
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(97, 123);
this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(104, 17);
+ this.label5.Size = new System.Drawing.Size(206, 31);
this.label5.TabIndex = 76;
this.label5.Text = "自定义查询语句:";
//
@@ -704,7 +704,7 @@
//
this.txtSqliteAutoSqlName.Location = new System.Drawing.Point(206, 120);
this.txtSqliteAutoSqlName.Name = "txtSqliteAutoSqlName";
- this.txtSqliteAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtSqliteAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtSqliteAutoSqlName.TabIndex = 72;
this.txtSqliteAutoSqlName.Enter += new System.EventHandler(this.txtSqliteAutoSqlName_Enter);
this.txtSqliteAutoSqlName.Leave += new System.EventHandler(this.txtSqliteAutoSqlName_Leave);
@@ -714,7 +714,7 @@
this.cbxSqliteReadFolder.AutoSize = true;
this.cbxSqliteReadFolder.Location = new System.Drawing.Point(288, 15);
this.cbxSqliteReadFolder.Name = "cbxSqliteReadFolder";
- this.cbxSqliteReadFolder.Size = new System.Drawing.Size(87, 21);
+ this.cbxSqliteReadFolder.Size = new System.Drawing.Size(166, 35);
this.cbxSqliteReadFolder.TabIndex = 75;
this.cbxSqliteReadFolder.Text = "读取文件夹";
this.cbxSqliteReadFolder.UseVisualStyleBackColor = true;
@@ -737,7 +737,7 @@
this.cbxSqliteReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxSqliteReadFile.Location = new System.Drawing.Point(206, 15);
this.cbxSqliteReadFile.Name = "cbxSqliteReadFile";
- this.cbxSqliteReadFile.Size = new System.Drawing.Size(75, 21);
+ this.cbxSqliteReadFile.Size = new System.Drawing.Size(142, 35);
this.cbxSqliteReadFile.TabIndex = 74;
this.cbxSqliteReadFile.Text = "读取文件";
this.cbxSqliteReadFile.UseVisualStyleBackColor = true;
@@ -748,7 +748,7 @@
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(60, 16);
this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(141, 17);
+ this.label6.Size = new System.Drawing.Size(280, 31);
this.label6.TabIndex = 71;
this.label6.Text = "读取模式(文件/文件夹):";
//
@@ -757,7 +757,7 @@
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(85, 88);
this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(116, 17);
+ this.label7.Size = new System.Drawing.Size(230, 31);
this.label7.TabIndex = 70;
this.label7.Text = "自定义文件名格式:";
//
@@ -765,7 +765,7 @@
//
this.txtSqliteFileNameFormat.Location = new System.Drawing.Point(206, 85);
this.txtSqliteFileNameFormat.Name = "txtSqliteFileNameFormat";
- this.txtSqliteFileNameFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtSqliteFileNameFormat.Size = new System.Drawing.Size(230, 39);
this.txtSqliteFileNameFormat.TabIndex = 69;
this.txtSqliteFileNameFormat.Enter += new System.EventHandler(this.txtSqliteFileNameFormat_Enter);
this.txtSqliteFileNameFormat.Leave += new System.EventHandler(this.txtSqliteFileNameFormat_Leave);
@@ -775,7 +775,7 @@
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(97, 53);
this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(104, 17);
+ this.label8.Size = new System.Drawing.Size(206, 31);
this.label8.TabIndex = 67;
this.label8.Text = "日期列特殊格式:";
//
@@ -783,7 +783,7 @@
//
this.txtSqliteSpecialDateColumnFormat.Location = new System.Drawing.Point(206, 50);
this.txtSqliteSpecialDateColumnFormat.Name = "txtSqliteSpecialDateColumnFormat";
- this.txtSqliteSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtSqliteSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtSqliteSpecialDateColumnFormat.TabIndex = 68;
this.txtSqliteSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtSqliteSpecialDateColumnFormat_Enter);
this.txtSqliteSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtSqliteSpecialDateColumnFormat_Leave);
@@ -797,9 +797,9 @@
this.tabSQLServer.Controls.Add(this.txtSqlServerConnection);
this.tabSQLServer.Controls.Add(this.label13);
this.tabSQLServer.Controls.Add(this.txtSqlServerSpecialDateColumnFormat);
- this.tabSQLServer.Location = new System.Drawing.Point(4, 26);
+ this.tabSQLServer.Location = new System.Drawing.Point(8, 45);
this.tabSQLServer.Name = "tabSQLServer";
- this.tabSQLServer.Size = new System.Drawing.Size(661, 336);
+ this.tabSQLServer.Size = new System.Drawing.Size(920, 441);
this.tabSQLServer.TabIndex = 3;
this.tabSQLServer.Text = "SQL Server";
this.tabSQLServer.UseVisualStyleBackColor = true;
@@ -809,7 +809,7 @@
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(98, 116);
this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(104, 17);
+ this.label9.Size = new System.Drawing.Size(206, 31);
this.label9.TabIndex = 76;
this.label9.Text = "自定义查询语句:";
//
@@ -817,7 +817,7 @@
//
this.txtSqlServerAutoSqlName.Location = new System.Drawing.Point(208, 113);
this.txtSqlServerAutoSqlName.Name = "txtSqlServerAutoSqlName";
- this.txtSqlServerAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtSqlServerAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtSqlServerAutoSqlName.TabIndex = 72;
this.txtSqlServerAutoSqlName.Enter += new System.EventHandler(this.txtSqlServerAutoSqlName_Enter);
this.txtSqlServerAutoSqlName.Leave += new System.EventHandler(this.txtSqlServerAutoSqlName_Leave);
@@ -837,7 +837,7 @@
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(86, 53);
this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(116, 17);
+ this.label12.Size = new System.Drawing.Size(230, 31);
this.label12.TabIndex = 70;
this.label12.Text = "自定义连接字符串:";
//
@@ -856,7 +856,7 @@
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(98, 18);
this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(104, 17);
+ this.label13.Size = new System.Drawing.Size(206, 31);
this.label13.TabIndex = 67;
this.label13.Text = "日期列特殊格式:";
//
@@ -864,7 +864,7 @@
//
this.txtSqlServerSpecialDateColumnFormat.Location = new System.Drawing.Point(208, 15);
this.txtSqlServerSpecialDateColumnFormat.Name = "txtSqlServerSpecialDateColumnFormat";
- this.txtSqlServerSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtSqlServerSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtSqlServerSpecialDateColumnFormat.TabIndex = 68;
this.txtSqlServerSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtSqlServerSpecialDateColumnFormat_Enter);
this.txtSqlServerSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtSqlServerSpecialDateColumnFormat_Leave);
@@ -876,9 +876,9 @@
this.tabMySql.Controls.Add(this.txtMySqlAutoSql);
this.tabMySql.Controls.Add(this.label18);
this.tabMySql.Controls.Add(this.txtMySqlSpecialDateColumnFormat);
- this.tabMySql.Location = new System.Drawing.Point(4, 26);
+ this.tabMySql.Location = new System.Drawing.Point(8, 45);
this.tabMySql.Name = "tabMySql";
- this.tabMySql.Size = new System.Drawing.Size(661, 336);
+ this.tabMySql.Size = new System.Drawing.Size(920, 441);
this.tabMySql.TabIndex = 4;
this.tabMySql.Text = "MySql";
this.tabMySql.UseVisualStyleBackColor = true;
@@ -888,7 +888,7 @@
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(99, 60);
this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(104, 17);
+ this.label14.Size = new System.Drawing.Size(206, 31);
this.label14.TabIndex = 86;
this.label14.Text = "自定义查询语句:";
//
@@ -896,7 +896,7 @@
//
this.txtMySqlAutoSqlName.Location = new System.Drawing.Point(207, 57);
this.txtMySqlAutoSqlName.Name = "txtMySqlAutoSqlName";
- this.txtMySqlAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtMySqlAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtMySqlAutoSqlName.TabIndex = 84;
this.txtMySqlAutoSqlName.Enter += new System.EventHandler(this.txtMySqlAutoSqlName_Enter);
this.txtMySqlAutoSqlName.Leave += new System.EventHandler(this.txtMySqlAutoSqlName_Leave);
@@ -916,7 +916,7 @@
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(97, 25);
this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(104, 17);
+ this.label18.Size = new System.Drawing.Size(206, 31);
this.label18.TabIndex = 80;
this.label18.Text = "日期列特殊格式:";
//
@@ -924,7 +924,7 @@
//
this.txtMySqlSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 22);
this.txtMySqlSpecialDateColumnFormat.Name = "txtMySqlSpecialDateColumnFormat";
- this.txtMySqlSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtMySqlSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtMySqlSpecialDateColumnFormat.TabIndex = 81;
this.txtMySqlSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtMySqlSpecialDateColumnFormat_Enter);
this.txtMySqlSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtMySqlSpecialDateColumnFormat_Leave);
@@ -936,10 +936,10 @@
this.tabOracle.Controls.Add(this.txtOracleAutoSql);
this.tabOracle.Controls.Add(this.label10);
this.tabOracle.Controls.Add(this.txtOracleSpecialDateColumnFormat);
- this.tabOracle.Location = new System.Drawing.Point(4, 26);
+ this.tabOracle.Location = new System.Drawing.Point(8, 45);
this.tabOracle.Name = "tabOracle";
this.tabOracle.Padding = new System.Windows.Forms.Padding(3);
- this.tabOracle.Size = new System.Drawing.Size(661, 336);
+ this.tabOracle.Size = new System.Drawing.Size(920, 441);
this.tabOracle.TabIndex = 5;
this.tabOracle.Text = "Oracle";
this.tabOracle.UseVisualStyleBackColor = true;
@@ -949,7 +949,7 @@
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(102, 65);
this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(104, 17);
+ this.label4.Size = new System.Drawing.Size(206, 31);
this.label4.TabIndex = 91;
this.label4.Text = "自定义查询语句:";
//
@@ -957,7 +957,7 @@
//
this.txtOracleAutoSqlName.Location = new System.Drawing.Point(210, 62);
this.txtOracleAutoSqlName.Name = "txtOracleAutoSqlName";
- this.txtOracleAutoSqlName.Size = new System.Drawing.Size(230, 23);
+ this.txtOracleAutoSqlName.Size = new System.Drawing.Size(230, 39);
this.txtOracleAutoSqlName.TabIndex = 89;
this.txtOracleAutoSqlName.Enter += new System.EventHandler(this.txtOracleAutoSqlName_Enter);
this.txtOracleAutoSqlName.Leave += new System.EventHandler(this.txtOracleAutoSqlName_Leave);
@@ -977,7 +977,7 @@
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(97, 30);
this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(104, 17);
+ this.label10.Size = new System.Drawing.Size(206, 31);
this.label10.TabIndex = 87;
this.label10.Text = "日期列特殊格式:";
//
@@ -985,7 +985,7 @@
//
this.txtOracleSpecialDateColumnFormat.Location = new System.Drawing.Point(210, 27);
this.txtOracleSpecialDateColumnFormat.Name = "txtOracleSpecialDateColumnFormat";
- this.txtOracleSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtOracleSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtOracleSpecialDateColumnFormat.TabIndex = 88;
this.txtOracleSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtOracleSpecialDateColumnFormat_Enter);
this.txtOracleSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtOracleSpecialDateColumnFormat_Leave);
@@ -1010,10 +1010,10 @@
this.tabTxt.Controls.Add(this.txtNormalFileNameFormat);
this.tabTxt.Controls.Add(this.label28);
this.tabTxt.Controls.Add(this.txtNormalFileSpecialDateColumnFormat);
- this.tabTxt.Location = new System.Drawing.Point(4, 26);
+ this.tabTxt.Location = new System.Drawing.Point(8, 45);
this.tabTxt.Name = "tabTxt";
this.tabTxt.Padding = new System.Windows.Forms.Padding(3);
- this.tabTxt.Size = new System.Drawing.Size(661, 336);
+ this.tabTxt.Size = new System.Drawing.Size(920, 441);
this.tabTxt.TabIndex = 7;
this.tabTxt.Text = "TXT";
this.tabTxt.UseVisualStyleBackColor = true;
@@ -1025,7 +1025,7 @@
this.cbxNormalFileNoCustomDate.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxNormalFileNoCustomDate.Location = new System.Drawing.Point(270, 283);
this.cbxNormalFileNoCustomDate.Name = "cbxNormalFileNoCustomDate";
- this.cbxNormalFileNoCustomDate.Size = new System.Drawing.Size(39, 21);
+ this.cbxNormalFileNoCustomDate.Size = new System.Drawing.Size(70, 35);
this.cbxNormalFileNoCustomDate.TabIndex = 67;
this.cbxNormalFileNoCustomDate.Text = "否";
this.cbxNormalFileNoCustomDate.UseVisualStyleBackColor = true;
@@ -1036,7 +1036,7 @@
this.cbxNormalFileCustomDate.AutoSize = true;
this.cbxNormalFileCustomDate.Location = new System.Drawing.Point(208, 283);
this.cbxNormalFileCustomDate.Name = "cbxNormalFileCustomDate";
- this.cbxNormalFileCustomDate.Size = new System.Drawing.Size(39, 21);
+ this.cbxNormalFileCustomDate.Size = new System.Drawing.Size(70, 35);
this.cbxNormalFileCustomDate.TabIndex = 66;
this.cbxNormalFileCustomDate.Text = "是";
this.cbxNormalFileCustomDate.UseVisualStyleBackColor = true;
@@ -1051,7 +1051,7 @@
0,
0});
this.numNormalFileStartIndex.Name = "numNormalFileStartIndex";
- this.numNormalFileStartIndex.Size = new System.Drawing.Size(120, 23);
+ this.numNormalFileStartIndex.Size = new System.Drawing.Size(120, 39);
this.numNormalFileStartIndex.TabIndex = 65;
this.numNormalFileStartIndex.Value = new decimal(new int[] {
1,
@@ -1064,7 +1064,7 @@
this.label20.AutoSize = true;
this.label20.Location = new System.Drawing.Point(61, 283);
this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(140, 17);
+ this.label20.Size = new System.Drawing.Size(278, 31);
this.label20.TabIndex = 64;
this.label20.Text = "是否由系统创建日期列:";
//
@@ -1073,7 +1073,7 @@
this.label19.AutoSize = true;
this.label19.Location = new System.Drawing.Point(97, 248);
this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(104, 17);
+ this.label19.Size = new System.Drawing.Size(206, 31);
this.label19.TabIndex = 62;
this.label19.Text = "数据行起始行号:";
//
@@ -1082,7 +1082,7 @@
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(97, 209);
this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(104, 17);
+ this.label17.Size = new System.Drawing.Size(206, 31);
this.label17.TabIndex = 60;
this.label17.Text = "分割数据行选型:";
//
@@ -1090,7 +1090,7 @@
//
this.txtNormalFileReadSplitMode.Location = new System.Drawing.Point(207, 206);
this.txtNormalFileReadSplitMode.Name = "txtNormalFileReadSplitMode";
- this.txtNormalFileReadSplitMode.Size = new System.Drawing.Size(230, 23);
+ this.txtNormalFileReadSplitMode.Size = new System.Drawing.Size(230, 39);
this.txtNormalFileReadSplitMode.TabIndex = 59;
this.txtNormalFileReadSplitMode.Enter += new System.EventHandler(this.txtNormalFileReadSplitMode_Enter);
this.txtNormalFileReadSplitMode.Leave += new System.EventHandler(this.txtNormalFileReadSplitMode_Leave);
@@ -1100,7 +1100,7 @@
this.label30.AutoSize = true;
this.label30.Location = new System.Drawing.Point(109, 170);
this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(92, 17);
+ this.label30.Size = new System.Drawing.Size(182, 31);
this.label30.TabIndex = 58;
this.label30.Text = "读取方法选型:";
//
@@ -1108,7 +1108,7 @@
//
this.txtNormalFileReadDataMode.Location = new System.Drawing.Point(207, 167);
this.txtNormalFileReadDataMode.Name = "txtNormalFileReadDataMode";
- this.txtNormalFileReadDataMode.Size = new System.Drawing.Size(230, 23);
+ this.txtNormalFileReadDataMode.Size = new System.Drawing.Size(230, 39);
this.txtNormalFileReadDataMode.TabIndex = 57;
this.txtNormalFileReadDataMode.Enter += new System.EventHandler(this.txtNormalFileReadDataMode_Enter);
this.txtNormalFileReadDataMode.Leave += new System.EventHandler(this.txtNormalFileReadDataMode_Leave);
@@ -1118,7 +1118,7 @@
this.label29.AutoSize = true;
this.label29.Location = new System.Drawing.Point(85, 132);
this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(116, 17);
+ this.label29.Size = new System.Drawing.Size(230, 31);
this.label29.TabIndex = 56;
this.label29.Text = "自定义文件后缀名:";
//
@@ -1126,7 +1126,7 @@
//
this.txtNormalFileSuffix.Location = new System.Drawing.Point(207, 129);
this.txtNormalFileSuffix.Name = "txtNormalFileSuffix";
- this.txtNormalFileSuffix.Size = new System.Drawing.Size(230, 23);
+ this.txtNormalFileSuffix.Size = new System.Drawing.Size(230, 39);
this.txtNormalFileSuffix.TabIndex = 55;
this.txtNormalFileSuffix.Enter += new System.EventHandler(this.txtNormalFileSuffix_Enter);
this.txtNormalFileSuffix.Leave += new System.EventHandler(this.txtNormalFileSuffix_Leave);
@@ -1136,7 +1136,7 @@
this.cbxNormalFileReadFolder.AutoSize = true;
this.cbxNormalFileReadFolder.Location = new System.Drawing.Point(288, 20);
this.cbxNormalFileReadFolder.Name = "cbxNormalFileReadFolder";
- this.cbxNormalFileReadFolder.Size = new System.Drawing.Size(87, 21);
+ this.cbxNormalFileReadFolder.Size = new System.Drawing.Size(166, 35);
this.cbxNormalFileReadFolder.TabIndex = 54;
this.cbxNormalFileReadFolder.Text = "读取文件夹";
this.cbxNormalFileReadFolder.UseVisualStyleBackColor = true;
@@ -1149,7 +1149,7 @@
this.cbxNormalFileReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbxNormalFileReadFile.Location = new System.Drawing.Point(207, 20);
this.cbxNormalFileReadFile.Name = "cbxNormalFileReadFile";
- this.cbxNormalFileReadFile.Size = new System.Drawing.Size(75, 21);
+ this.cbxNormalFileReadFile.Size = new System.Drawing.Size(142, 35);
this.cbxNormalFileReadFile.TabIndex = 53;
this.cbxNormalFileReadFile.Text = "读取文件";
this.cbxNormalFileReadFile.UseVisualStyleBackColor = true;
@@ -1160,7 +1160,7 @@
this.label25.AutoSize = true;
this.label25.Location = new System.Drawing.Point(60, 20);
this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(141, 17);
+ this.label25.Size = new System.Drawing.Size(280, 31);
this.label25.TabIndex = 52;
this.label25.Text = "读取模式(文件/文件夹):";
//
@@ -1169,7 +1169,7 @@
this.label26.AutoSize = true;
this.label26.Location = new System.Drawing.Point(85, 93);
this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(116, 17);
+ this.label26.Size = new System.Drawing.Size(230, 31);
this.label26.TabIndex = 51;
this.label26.Text = "自定义文件名格式:";
//
@@ -1177,7 +1177,7 @@
//
this.txtNormalFileNameFormat.Location = new System.Drawing.Point(207, 90);
this.txtNormalFileNameFormat.Name = "txtNormalFileNameFormat";
- this.txtNormalFileNameFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtNormalFileNameFormat.Size = new System.Drawing.Size(230, 39);
this.txtNormalFileNameFormat.TabIndex = 50;
this.txtNormalFileNameFormat.Enter += new System.EventHandler(this.txtNormalFileNameFormat_Enter);
this.txtNormalFileNameFormat.Leave += new System.EventHandler(this.txtNormalFileNameFormat_Leave);
@@ -1187,7 +1187,7 @@
this.label28.AutoSize = true;
this.label28.Location = new System.Drawing.Point(97, 56);
this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(104, 17);
+ this.label28.Size = new System.Drawing.Size(206, 31);
this.label28.TabIndex = 48;
this.label28.Text = "日期列特殊格式:";
//
@@ -1195,7 +1195,7 @@
//
this.txtNormalFileSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 53);
this.txtNormalFileSpecialDateColumnFormat.Name = "txtNormalFileSpecialDateColumnFormat";
- this.txtNormalFileSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 23);
+ this.txtNormalFileSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 39);
this.txtNormalFileSpecialDateColumnFormat.TabIndex = 49;
this.txtNormalFileSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtNormalFileSpecialDateColumnFormat_Enter);
this.txtNormalFileSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtNormalFileSpecialDateColumnFormat_Leave);
@@ -1208,14 +1208,14 @@
this.pnlAll.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlAll.Location = new System.Drawing.Point(0, 0);
this.pnlAll.Name = "pnlAll";
- this.pnlAll.Size = new System.Drawing.Size(669, 418);
+ this.pnlAll.Size = new System.Drawing.Size(936, 546);
this.pnlAll.TabIndex = 1;
//
// frmSourceSetting
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(14F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(669, 418);
+ this.ClientSize = new System.Drawing.Size(936, 546);
this.Controls.Add(this.pnlAll);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
@@ -1225,6 +1225,8 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "数据来源设置";
this.Load += new System.EventHandler(this.frmSourceSetting_Load);
+ this.Shown += new System.EventHandler(this.frmSourceSetting_Shown);
+ this.Resize += new System.EventHandler(this.frmSourceSetting_Resize);
this.pnlBottom.ResumeLayout(false);
this.pnlCenter.ResumeLayout(false);
this.tabcDS.ResumeLayout(false);
@@ -1263,7 +1265,7 @@
private System.Windows.Forms.Label lblExcelRemoteUser;
private System.Windows.Forms.TextBox txtExcelFileNameFormat;
private System.Windows.Forms.CheckBox cbxExcelOldVersion;
- private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.Label lbExcelDateFormat;
private System.Windows.Forms.TextBox txtExcelSpecialDateColumnFormat;
private System.Windows.Forms.TabPage tabFoxPro;
private System.Windows.Forms.TabPage tabAccess;
@@ -1303,7 +1305,7 @@
private System.Windows.Forms.Label label27;
private System.Windows.Forms.TextBox txtExcelAutoSql;
private System.Windows.Forms.TextBox txtExcelAutoSqlName;
- private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label lbExcelDynQuery;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtSqliteAutoSqlName;
private System.Windows.Forms.CheckBox cbxSqliteReadFolder;
diff --git a/CNAS_DBSync/frmSourceSetting.cs b/CNAS_DBSync/frmSourceSetting.cs
index d623ce3..e59484b 100644
--- a/CNAS_DBSync/frmSourceSetting.cs
+++ b/CNAS_DBSync/frmSourceSetting.cs
@@ -959,8 +959,36 @@ namespace CNAS_DBSync
{
cbxNormalFileCustomDate.Checked = !cbxNormalFileNoCustomDate.Checked;
}
+
#endregion
+ private void frmSourceSetting_Resize(object sender, EventArgs e)
+ {
+ arrayFields();
+ btnOK.Left = (this.Width - btnOK.Width) / 2;
+ }
+
+ private void frmSourceSetting_Shown(object sender, EventArgs e)
+ {
+ arrayFields();
+ btnOK.Left = (this.Width - btnOK.Width) / 2;
+ }
+
+ private void arrayFields() {
+ switch (tabcDS.SelectedIndex)
+ {
+ case 0:
+ FieldLine[] fields = {
+ new FieldLine(lbExcelDateFormat,txtExcelSpecialDateColumnFormat),
+ new FieldLine(lblExcelRemoteUser,txtExcelFileNameFormat),
+ new FieldLine(lbExcelDynQuery,txtExcelAutoSqlName)
+ };
+ FormSizeHelper.Arrange(tabExcel, fields);
+ txtExcelAutoSql.Width = txtExcelAutoSqlName.Width;
+ txtExcelAutoSql.Height = tabExcel.Height - txtExcelAutoSql.Top - 24;
+ break;
+ }
+ }
}
}
diff --git a/CNAS_RunSync/frmSynchrousMain.Designer.cs b/CNAS_RunSync/frmSynchrousMain.Designer.cs
index c022255..9a6d485 100644
--- a/CNAS_RunSync/frmSynchrousMain.Designer.cs
+++ b/CNAS_RunSync/frmSynchrousMain.Designer.cs
@@ -104,6 +104,8 @@
//
// menuButton
//
+ this.menuButton.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
+ this.menuButton.ImageScalingSize = new System.Drawing.Size(24, 24);
this.menuButton.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmDbSeting,
this.tsmSynchrousSetting,
@@ -111,28 +113,29 @@
this.menuButton.Location = new System.Drawing.Point(0, 0);
this.menuButton.Name = "menuButton";
this.menuButton.Padding = new System.Windows.Forms.Padding(7, 3, 0, 3);
- this.menuButton.Size = new System.Drawing.Size(934, 27);
+ this.menuButton.Size = new System.Drawing.Size(934, 34);
this.menuButton.TabIndex = 0;
this.menuButton.Text = "menuStrip1";
+ this.menuButton.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuButton_ItemClicked);
//
// tsmDbSeting
//
this.tsmDbSeting.Name = "tsmDbSeting";
- this.tsmDbSeting.Size = new System.Drawing.Size(96, 21);
+ this.tsmDbSeting.Size = new System.Drawing.Size(139, 28);
this.tsmDbSeting.Text = "数据库配置(&B)";
this.tsmDbSeting.Click += new System.EventHandler(this.tsmDbSeting_Click);
//
// tsmSynchrousSetting
//
this.tsmSynchrousSetting.Name = "tsmSynchrousSetting";
- this.tsmSynchrousSetting.Size = new System.Drawing.Size(83, 21);
+ this.tsmSynchrousSetting.Size = new System.Drawing.Size(120, 28);
this.tsmSynchrousSetting.Text = "同步配置(&S)";
this.tsmSynchrousSetting.Click += new System.EventHandler(this.tsmSynchrousSetting_Click);
//
// tsmHelper
//
this.tsmHelper.Name = "tsmHelper";
- this.tsmHelper.Size = new System.Drawing.Size(61, 21);
+ this.tsmHelper.Size = new System.Drawing.Size(88, 28);
this.tsmHelper.Text = "帮助(&H)";
this.tsmHelper.Click += new System.EventHandler(this.tsmHelper_Click);
//
@@ -174,7 +177,7 @@
//
// frmSynchrousMain
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(944, 621);
this.Controls.Add(this.pnlAll);
diff --git a/CNAS_RunSync/frmSynchrousMain.cs b/CNAS_RunSync/frmSynchrousMain.cs
index e64e86a..71062dd 100644
--- a/CNAS_RunSync/frmSynchrousMain.cs
+++ b/CNAS_RunSync/frmSynchrousMain.cs
@@ -109,5 +109,10 @@ namespace CNAS_RunSync
//Help.ShowHelp(null, strHelpFilePath, HelpNavigator.TopicId, "1");
System.Diagnostics.Process.Start(strHelpFilePath);
}
+
+ private void menuButton_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
+ {
+
+ }
}
}
diff --git a/CNAS_SyncService/SyncServiceOperation.cs b/CNAS_SyncService/SyncServiceOperation.cs
index 1365ee4..a6adaed 100644
--- a/CNAS_SyncService/SyncServiceOperation.cs
+++ b/CNAS_SyncService/SyncServiceOperation.cs
@@ -84,7 +84,8 @@ namespace CNAS_SyncService
strNowDate = DateTime.Now.ToString("yyyyMMdd");
//删除日志文件
string logDays = FileOperation.GetSystemFormatConfigData().ShowLogDays;
- if (int.TryParse(logDays, out int logday))
+ int logday;
+ if (int.TryParse(logDays, out logday))
AppLog.DeleteLog(logday);
}
diff --git a/CnasSynchronusClient/CnasInsertOperation.cs b/CnasSynchronusClient/CnasInsertOperation.cs
index a8d1ce8..450e6e1 100644
--- a/CnasSynchronusClient/CnasInsertOperation.cs
+++ b/CnasSynchronusClient/CnasInsertOperation.cs
@@ -162,23 +162,27 @@ namespace CnasSynchronusClient
ChangeStartEndSubStringConditonValue(item, drNewTarget);
break;
case MapCondition.Divided:
- if (double.TryParse(drNewTarget[item.ColumnName].ToString(), out double db1))
+ double db1, db2;
+ if (double.TryParse(drNewTarget[item.ColumnName].ToString(), out db1))
{
- if (double.TryParse(item.Value.ToString(), out double db2))
+ if (double.TryParse(item.Value.ToString(), out db2))
drNewTarget[item.ColumnName] = db1 / db2;
}
break;
case MapCondition.Multiplied:
- if (double.TryParse(drNewTarget[item.ColumnName].ToString(), out double db3))
+ double db3, db4;
+ if (double.TryParse(drNewTarget[item.ColumnName].ToString(), out db3))
{
- if (double.TryParse(item.Value.ToString(), out double db4))
+ if (double.TryParse(item.Value.ToString(), out db4))
drNewTarget[item.ColumnName] = db3 * db4;
}
break;
case MapCondition.DecimalDigits:
- if (double.TryParse(drNewTarget[item.ColumnName].ToString(), out double db5))
+ double db5;
+ int count;
+ if (double.TryParse(drNewTarget[item.ColumnName].ToString(), out db5))
{
- if (int.TryParse(item.Value.ToString(), out int count))
+ if (int.TryParse(item.Value.ToString(), out count))
drNewTarget[item.ColumnName] = Math.Round(db5, count);
}
break;
@@ -344,6 +348,8 @@ namespace CnasSynchronusClient
}
else
{
+ double result;
+ double conditionresult;
switch (item.Algorithm)
{
case "=":
@@ -360,22 +366,22 @@ namespace CnasSynchronusClient
break;
case ">":
if (dr[item.ColumnName] != null)
- if (double.TryParse(dr[item.ColumnName].ToString(), out double result) && double.TryParse(item.ConditionValue, out double conditionresult))
+ if (double.TryParse(dr[item.ColumnName].ToString(), out result) && double.TryParse(item.ConditionValue, out conditionresult))
bIsMatch = result > conditionresult ? true : false;
break;
case "<":
if (dr[item.ColumnName] != null)
- if (double.TryParse(dr[item.ColumnName].ToString(), out double result) && double.TryParse(item.ConditionValue, out double conditionresult))
+ if (double.TryParse(dr[item.ColumnName].ToString(), out result) && double.TryParse(item.ConditionValue, out conditionresult))
bIsMatch = result < conditionresult ? true : false;
break;
case ">=":
if (dr[item.ColumnName] != null)
- if (double.TryParse(dr[item.ColumnName].ToString(), out double result) && double.TryParse(item.ConditionValue, out double conditionresult))
+ if (double.TryParse(dr[item.ColumnName].ToString(), out result) && double.TryParse(item.ConditionValue, out conditionresult))
bIsMatch = result >= conditionresult ? true : false;
break;
case "<=":
if (dr[item.ColumnName] != null)
- if (double.TryParse(dr[item.ColumnName].ToString(), out double result) && double.TryParse(item.ConditionValue, out double conditionresult))
+ if (double.TryParse(dr[item.ColumnName].ToString(), out result) && double.TryParse(item.ConditionValue, out conditionresult))
bIsMatch = result <= conditionresult ? true : false;
break;
}
@@ -490,6 +496,7 @@ namespace CnasSynchronusClient
{
string strParam1 = strValues[0];
string strParam2 = strValues[2];
+ double db1, db2;
string[] strParam1s = strParam1.Split(new string[] { "[", "]" }, StringSplitOptions.RemoveEmptyEntries);
if (strParam1s.Length >= 1)
@@ -498,9 +505,9 @@ namespace CnasSynchronusClient
if (strParam2s.Length >= 1)
{
if (dtReadySource.Columns.Contains(strParam1s[0]) && dtReadySource.Columns.Contains(strParam2s[0]))
- if (double.TryParse(drSource[strParam1s[0]].ToString(), out double db1))
+ if (double.TryParse(drSource[strParam1s[0]].ToString(), out db1))
{
- if (double.TryParse(drSource[strParam2s[0]].ToString(), out double db2))
+ if (double.TryParse(drSource[strParam2s[0]].ToString(), out db2))
{
if (strParam1s.Length == 3)
db1 = GetDividedMultipliedData(db1, strParam1s[1], strParam1s[2]);
@@ -531,7 +538,8 @@ namespace CnasSynchronusClient
///
public double GetDividedMultipliedData(double db1, string strExpresstion, string strValue)
{
- if (double.TryParse(strValue, out double db2))
+ double db2;
+ if (double.TryParse(strValue, out db2))
{
db1 = strExpresstion == "*" ? db1 * db2 : db1 / db2;
}
diff --git a/CnasSynchronusClient/TargetCnasData/DB2CNASDataOperation.cs b/CnasSynchronusClient/TargetCnasData/DB2CNASDataOperation.cs
index 14510f6..be6e143 100644
--- a/CnasSynchronusClient/TargetCnasData/DB2CNASDataOperation.cs
+++ b/CnasSynchronusClient/TargetCnasData/DB2CNASDataOperation.cs
@@ -63,11 +63,21 @@ namespace CnasSynchronusClient
return db2DataBaseService.GetMaxTimeByTableName(dataBase, strTableName, strDateColumn, strInstrumentColumn, strInstrumentValue);
}
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
public int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos, string strInsturmentColumn, List lstFixedValue)
{
return db2DataBaseService.InsertDataToCNASTable(dt, dataBase, syncParamasInfos, strInsturmentColumn, lstFixedValue);
}
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
public bool TestConnect(DataBaseInfo dataBase)
{
return db2DataBaseService.TestConnect(dataBase.DBHost, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd, dataBase.DBPort);
diff --git a/CnasSynchronusClient/TargetCnasData/ICnasDataOperation.cs b/CnasSynchronusClient/TargetCnasData/ICnasDataOperation.cs
index 345bed1..ae77156 100644
--- a/CnasSynchronusClient/TargetCnasData/ICnasDataOperation.cs
+++ b/CnasSynchronusClient/TargetCnasData/ICnasDataOperation.cs
@@ -1,4 +1,6 @@
-using CnasSynchrousModel;
+using CnasSynchronousCommon;
+using CnasSynchronusDAL;
+using CnasSynchrousModel;
using System;
using System.Collections.Generic;
using System.Data;
@@ -52,6 +54,24 @@ namespace CnasSynchronusClient
///
///
bool CheckMacMessage(DataBaseInfo dataBase, string strMac);
+
+ ///
+ /// 获取某个表的数据
+ ///
+ ///
+ ///
+ ///
+ DataTable GetTableData(DataBaseInfo dataBase, string strSql);
+
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ ///
+ bool InsertTableData(DataBaseInfo dataBase, string strSql);
+
}
diff --git a/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperation.cs b/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperation.cs
index 830a9bb..f341989 100644
--- a/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperation.cs
+++ b/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperation.cs
@@ -1,4 +1,5 @@
-using CnasSynchronusDAL;
+using CnasSynchronousCommon;
+using CnasSynchronusDAL;
using CnasSynchronusIDAL;
using CnasSynchrousModel;
using System;
@@ -73,5 +74,45 @@ namespace CnasSynchronusClient
{
return mysqlDataBaseService.TestConnect(dataBase.DBHost, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd, dataBase.DBPort);
}
+
+
+ ///
+ /// 获取某个表的数据
+ ///
+ ///
+ ///
+ ///
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ DataTable dt = new DataTable();
+ try
+ {
+ dt = mysqlDataBaseService.GetTableData(dataBase, strSql);
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ ///
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ try
+ {
+ return mysqlDataBaseService.InsertTableData(dataBase, strSql);
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return false;
+ }
}
}
diff --git a/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperationByWeb.cs b/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperationByWeb.cs
index 2ffab57..156bc8c 100644
--- a/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperationByWeb.cs
+++ b/CnasSynchronusClient/TargetCnasData/MySQLCNASDataOperationByWeb.cs
@@ -321,5 +321,15 @@ namespace CnasSynchronusClient
}
return dt;
}
+
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
}
}
diff --git a/CnasSynchronusClient/TargetCnasData/OracleCnasDataOperation.cs b/CnasSynchronusClient/TargetCnasData/OracleCnasDataOperation.cs
index c5a2fed..84004fa 100644
--- a/CnasSynchronusClient/TargetCnasData/OracleCnasDataOperation.cs
+++ b/CnasSynchronusClient/TargetCnasData/OracleCnasDataOperation.cs
@@ -46,11 +46,21 @@ namespace CnasSynchronusClient
return oracleDatabaseService.GetMaxTimeByTableName(dataBase, strTableName, strDateColumn, strInstrumentColumn, strInstrumentValue);
}
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new System.NotImplementedException();
+ }
+
public int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos, string strInstrumentColumn, List lstFixedValue = null)
{
return oracleDatabaseService.InsertDataToCNASTable(dt, dataBase, syncParamasInfos, strInstrumentColumn, lstFixedValue);
}
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new System.NotImplementedException();
+ }
+
public bool TestConnect(DataBaseInfo dataBase)
{
return oracleDatabaseService.TestConnect(dataBase.DBHost, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd, dataBase.DBPort);
diff --git a/CnasSynchronusDAL/DAL/MySQLDAL.cs b/CnasSynchronusDAL/DAL/MySQLDAL.cs
index 4289d26..3266cb3 100644
--- a/CnasSynchronusDAL/DAL/MySQLDAL.cs
+++ b/CnasSynchronusDAL/DAL/MySQLDAL.cs
@@ -7,6 +7,7 @@ using MySql.Data.MySqlClient;
using CnasSynchronousCommon;
using CnasSynchrousModel;
using System.Reflection;
+using Devart.Common;
namespace CnasSynchronusDAL
{
@@ -553,5 +554,44 @@ namespace CnasSynchronusDAL
//返回数据
return dtNewFormat;
}
+
+ ///
+ /// 获取某个表的数据
+ ///
+ ///
+ ///
+ public DataTable GetTableData(string strSql)
+ {
+ DataTable dt = new DataTable();
+ try
+ {
+ dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ public bool InsertTableData(string strSql)
+ {
+
+ try
+ {
+ return MySQLHelper.ExecuteNonQuery(strSql)>0;
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return false;
+ }
+
}
}
diff --git a/CnasSynchronusDAL/Service/Db2DBService.cs b/CnasSynchronusDAL/Service/Db2DBService.cs
index a6c3d02..3f277b3 100644
--- a/CnasSynchronusDAL/Service/Db2DBService.cs
+++ b/CnasSynchronusDAL/Service/Db2DBService.cs
@@ -55,6 +55,11 @@ namespace CnasSynchronusDAL
return baseDAL.GetMaxTimeByTableName(strTableName, strDateColumn, strInstrumentColumn, strInstrumentValue);
}
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
public int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos,string strInstrumentColumn, List lstFixedValue = null)
{
SQLDB2DAL baseDAL = new SQLDB2DAL();
@@ -62,6 +67,11 @@ namespace CnasSynchronusDAL
return baseDAL.InsertCnasData(dt, syncParamasInfos, strInstrumentColumn, lstFixedValue);
}
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
public bool TestConnect(string strHost, string strName, string strUser, string strPwd, string strPort)
{
SQLDB2DAL basedal = new SQLDB2DAL();
diff --git a/CnasSynchronusDAL/Service/MySqlDBService.cs b/CnasSynchronusDAL/Service/MySqlDBService.cs
index a69f627..1af188b 100644
--- a/CnasSynchronusDAL/Service/MySqlDBService.cs
+++ b/CnasSynchronusDAL/Service/MySqlDBService.cs
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Data;
+using System.Data.Entity;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -106,6 +107,36 @@ namespace CnasSynchronusDAL
MySQLDAL mySQLBase = new MySQLDAL();
mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
return mySQLBase.GetMaxTimeByTableName(strTableName, strDateColumn, strInstrumentColumn, strInstrumentValue);
- }
+ }
+
+
+ ///
+ /// 获取某个表的数据
+ ///
+ ///
+ ///
+ ///
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ MySQLDAL mySQLBase = new MySQLDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+
+ return mySQLBase.GetTableData(strSql);
+ }
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ ///
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ MySQLDAL mySQLBase = new MySQLDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+
+ return mySQLBase.InsertTableData(strSql);
+ }
+
}
}
diff --git a/CnasSynchronusDAL/Service/OracleDBService.cs b/CnasSynchronusDAL/Service/OracleDBService.cs
index c0ecec3..4e220ad 100644
--- a/CnasSynchronusDAL/Service/OracleDBService.cs
+++ b/CnasSynchronusDAL/Service/OracleDBService.cs
@@ -75,12 +75,22 @@ namespace CnasSynchronusDAL
return OracleDAL.GetMaxTimeByTableName(strTableName, strDateColumn, strInstrumentColumn, strInstrumentValue);
}
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
public int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos, string strInstrumentColumn, List lstFixedValue = null)
{
OracleDAL.CreateConnection(dataBase.DBHost, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd, dataBase.DBPort);
return OracleDAL.InsertCnasData(dt, syncParamasInfos, lstFixedValue, strInstrumentColumn);
}
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ throw new NotImplementedException();
+ }
+
public bool TestConnect(string strHost, string strName, string strUser, string strPwd, string strPort)
{
OracleDAL.CreateConnection(strHost, strName, strUser, strPwd, strPort);
diff --git a/CnasSynchronusIDAL/ITargetDataBaseService.cs b/CnasSynchronusIDAL/ITargetDataBaseService.cs
index 0ad48a8..16d5408 100644
--- a/CnasSynchronusIDAL/ITargetDataBaseService.cs
+++ b/CnasSynchronusIDAL/ITargetDataBaseService.cs
@@ -44,7 +44,7 @@ namespace CnasSynchronusIDAL
///
///
///
- int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos,string strInstrumentColumn,List lstFixedValue = null);
+ int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos, string strInstrumentColumn, List lstFixedValue = null);
///
/// 获取所有表的数据类型和长度
@@ -61,7 +61,7 @@ namespace CnasSynchronusIDAL
///
///
///
- string GetMaxTimeByTableName(DataBaseInfo dataBase, string strTableName, string strDateColumn,string strInstrumentColumn,string strInstrumentValue);
+ string GetMaxTimeByTableName(DataBaseInfo dataBase, string strTableName, string strDateColumn, string strInstrumentColumn, string strInstrumentValue);
///
/// 根据用户名密码获取登陆信息
@@ -79,5 +79,22 @@ namespace CnasSynchronusIDAL
///
///
bool CheckMacMessage(DataBaseInfo dataBase, string strMac);
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ DataTable GetTableData(DataBaseInfo dataBase, string strSql);
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ ///
+ bool InsertTableData(DataBaseInfo dataBase, string strSql);
+
}
}
diff --git a/dll.zip b/dll.zip
deleted file mode 100644
index 4cb07ea..0000000
Binary files a/dll.zip and /dev/null differ
diff --git a/dll/CNASBalanceDBManage.exe b/dll/CNASBalanceDBManage.exe
index 316e262..4753767 100644
Binary files a/dll/CNASBalanceDBManage.exe and b/dll/CNASBalanceDBManage.exe differ
diff --git a/dll/CNASBalanceDBManage.vshost.exe b/dll/CNASBalanceDBManage.vshost.exe
new file mode 100644
index 0000000..681ab77
Binary files /dev/null and b/dll/CNASBalanceDBManage.vshost.exe differ
diff --git a/dll/CNASBalanceDBManage.vshost.exe.config b/dll/CNASBalanceDBManage.vshost.exe.config
new file mode 100644
index 0000000..b24213d
--- /dev/null
+++ b/dll/CNASBalanceDBManage.vshost.exe.config
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dll/CNASBalanceDBManage.vshost.exe.manifest b/dll/CNASBalanceDBManage.vshost.exe.manifest
new file mode 100644
index 0000000..061c9ca
--- /dev/null
+++ b/dll/CNASBalanceDBManage.vshost.exe.manifest
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dll/CNAS_BalanceClient.exe b/dll/CNAS_BalanceClient.exe
index 672f48f..13ea583 100644
Binary files a/dll/CNAS_BalanceClient.exe and b/dll/CNAS_BalanceClient.exe differ
diff --git a/dll/CNAS_BalanceClient.exe.config b/dll/CNAS_BalanceClient.exe.config
index 471ad0e..4c0c27d 100644
--- a/dll/CNAS_BalanceClient.exe.config
+++ b/dll/CNAS_BalanceClient.exe.config
@@ -1,56 +1,56 @@
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
-
-
+
+
-
\ No newline at end of file
+
diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe
index 64a74c8..cd25943 100644
Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ
diff --git a/dll/CNAS_DBSync.exe.config b/dll/CNAS_DBSync.exe.config
index 56dbf4a..1eff40e 100644
--- a/dll/CNAS_DBSync.exe.config
+++ b/dll/CNAS_DBSync.exe.config
@@ -4,10 +4,15 @@
+
+
+
-
-
+
+
@@ -72,4 +77,11 @@
-
+
+
+
+
+
+
+
+
diff --git a/dll/CNAS_DBSync.vshost.exe b/dll/CNAS_DBSync.vshost.exe
new file mode 100644
index 0000000..681ab77
Binary files /dev/null and b/dll/CNAS_DBSync.vshost.exe differ
diff --git a/dll/CNAS_DBSync.vshost.exe.config b/dll/CNAS_DBSync.vshost.exe.config
new file mode 100644
index 0000000..1eff40e
--- /dev/null
+++ b/dll/CNAS_DBSync.vshost.exe.config
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dll/CNAS_RunSync.exe b/dll/CNAS_RunSync.exe
index a4f0ebf..60b81a9 100644
Binary files a/dll/CNAS_RunSync.exe and b/dll/CNAS_RunSync.exe differ
diff --git a/dll/CNAS_SerialPort.dll b/dll/CNAS_SerialPort.dll
index a7e8cb0..4f0869c 100644
Binary files a/dll/CNAS_SerialPort.dll and b/dll/CNAS_SerialPort.dll differ
diff --git a/dll/CNAS_SyncService.exe b/dll/CNAS_SyncService.exe
index aa8fad3..e09911b 100644
Binary files a/dll/CNAS_SyncService.exe and b/dll/CNAS_SyncService.exe differ
diff --git a/dll/CNAS_SyncService.exe.config b/dll/CNAS_SyncService.exe.config
index 1b5747e..12752ef 100644
--- a/dll/CNAS_SyncService.exe.config
+++ b/dll/CNAS_SyncService.exe.config
@@ -1,68 +1,68 @@
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
+
-
\ No newline at end of file
+
diff --git a/dll/CnasLocalIDAL.dll b/dll/CnasLocalIDAL.dll
index 2480b4a..ed82ee4 100644
Binary files a/dll/CnasLocalIDAL.dll and b/dll/CnasLocalIDAL.dll differ
diff --git a/dll/CnasSynchronousCommon.dll b/dll/CnasSynchronousCommon.dll
index 0c157b1..02b4dde 100644
Binary files a/dll/CnasSynchronousCommon.dll and b/dll/CnasSynchronousCommon.dll differ
diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll
index fa8d3c4..3d43193 100644
Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ
diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll
index cabc81e..2eb98bd 100644
Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ
diff --git a/dll/CnasSynchronusIDAL.dll b/dll/CnasSynchronusIDAL.dll
index b8cd1ff..bc2ef78 100644
Binary files a/dll/CnasSynchronusIDAL.dll and b/dll/CnasSynchronusIDAL.dll differ
diff --git a/dll/CnasSynchrousModel.dll b/dll/CnasSynchrousModel.dll
index 7befb67..9c9044f 100644
Binary files a/dll/CnasSynchrousModel.dll and b/dll/CnasSynchrousModel.dll differ
diff --git a/dll/Data/FormSize.xml b/dll/Data/FormSize.xml
new file mode 100644
index 0000000..e138443
--- /dev/null
+++ b/dll/Data/FormSize.xml
@@ -0,0 +1,4 @@
+
+
+0,0,1727,1032,400
+
\ No newline at end of file
diff --git a/dll/Data/SyncCnasDataBase.mes b/dll/Data/SyncCnasDataBase.mes
index 3082000..f98f77b 100644
--- a/dll/Data/SyncCnasDataBase.mes
+++ b/dll/Data/SyncCnasDataBase.mes
@@ -1 +1 @@
-/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCPd+s16KzzZc3RYrVagEFqWUlC2NWJgBLtc+tMLc2HJkq++Ewf/5QYIWw0dwMY90kkel2nmqRBK0dWfVWDOZOpdcAY+4YOYSFG98a3Wg3WLDyR5VozZDPfA41720qsQqCR1q7YoyEApjVWEQyk+r9gLfaCY8Z1EtVtdmrzpENRhrpsyi0u4Kb2RDuUW7nDgf4qfJbApbw7Kdae7ke6EMlO9V671gjh/78m404bQXztnKfgNOlb+A4bujFMxbSO41eL0IJrzvvEJQ4UoMTYj6zSUr6hRC60+eUBkB19OZr4zdksO5+a+okvRV58HMYgf+qt2ZJi/8hFoQ==
\ No newline at end of file
+/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCPd+s16KzzZc3RYrVagEFqWUlC2NWJgBLtc+tMLc2HJkq++Ewf/5QYIWw0dwMY90kkel2nmqRBK0dWfVWDOZOpdcAY+4YOYSFG98a3Wg3WLDyR5VozZDPfA41720qsQqCR1q7YoyEApjVWEQyk+r9gLfaCY8Z1EtUxembAlb3j7elM+qBGcYnXd5Pb8M4TpopE/5fZCldOXIhfqAk5bYu6iMgHtcRH42D9X1cWE/19FUCq04Rt4BZKODKJAiSIU3YFyq7VBU+Ii3NHnw592fpfu09SHAs65vjpijd31AKUJzpTkvhBIBo3sJhknfamWRI=
\ No newline at end of file
diff --git a/dll/Data/SyncInStrumentData.mes b/dll/Data/SyncInStrumentData.mes
index 7a4496e..8cb275a 100644
--- a/dll/Data/SyncInStrumentData.mes
+++ b/dll/Data/SyncInStrumentData.mes
@@ -1 +1 @@
-/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCW1I/HueTuOJOcD40MLI2D0tMGBACgOQKJ6uY/zxinGkLrJDCtdmDmvCeR1n1Hv+sdVxRY8tWYGGLijvZWhOzTx+NIPsCCPxG2JhtyMdOmPXaw9rO2jOmxYYzqi+uTe4RSnvmlg2X5u1T39xZueFOnurq+m5Q3v1PRYgqU2LlZXdR+P4SwRnjM07xrUsBgEyB6DIJlrLWpuf3zIYTNaGpbsC4ELycWtPudfCVNDLSxlrKZyc9NpAT04XeJAwX8Lq2tp4OKijLU76pLxi1ISQOg2kkl+XdtRfktDNPOFSDAsFtMo4DoqH/YXyMh/Pa0dVcaDEkCdaDGD6QLi7OMnDephI7djzAxy1gTzaF3z4mGYx2zBU4lgOKBQi4IqPYP34yJnakvc7w6vYlbWwTSIZveu98wVuSo+z3C0CSK8MwitpWfFKvL9fb3kyvXuRKe9EU9gFfugDOl+kNbphhBR6eC+t6WLC0fERVA9bl+2/DQ5EoyM0s8xVUX+liTfQv8DXLga1OUYM3gxVZRZwinrRvpxbp3f/qQVDuIlrHqy7yof99P1QOsnNYewbDjgzEt3/dFK08t0wTIVPl/T4YYkdC2NmO5/vaQHRQjF/nedaeI+AucsteqE4/UqD8B6wUL00+UX5iD4SxDJjeeRWAxBmH8Z9JKRDr7ZjICWxEDT5/X2rRYyPRdug4XaSJyTfVsJ/5B58UBJph5BWhOhsZ90gkHojhKXd7LtMfe66eunn2OMlI0aaAqT822QSZQqI8fN7KkKppg/iAIOmW/ZrH1s+RTjpMOb9lQWDZewXHaZrG8Plakm/JSxKTlUm/bO+1VhEesz9NuXDRMhoC+iQwRUpJV3xepenueVhHZcfAzOdkAFOVwPnbDXjhMPzi6nJFiZU4OsjXSj7D+LGKAg3COv2r9Ao+Sxyi+XEhcw8XBPv3eq6vWN4jcVeijI1Sgv8dn8ywOaceEP4lh8lgj9T8ozFMG7dAdaeD6D4yp0zwe33XnfeNgKfBChft7gcrkJa+6EjWnzpUBUmA5VOF4OIXMp51vi+QdV2qfqvGsh04/twSDhx01qlP0lSrjDqbPj5FCsdONu3y33o/AIAj+OTHaapQBpodxTdPxSzv4iTMvd7/AhEtELnMPmul6NMksb79/Lnovul5oeRPZYewGLWaNHg1vs+grrNZXcZ4bKoWBn7ep2nte4Cu0glkAw6YyvgFxMrSlI7mf5mJZJuQlu7WcQxCBQIyP7+nBFoMuVM1VKar0KcxCfN1tOeHw3HEW+IQA6bN89b4Eubbzfy+FviSCT4tZ943lZ/1f409dTnHN1EBO7T4vYaY2Cvb2GpkYUDPF89wicWLEvnl0JEiyA39RAnYOna+JbluiifgNcxMea77nPIyJFeRpRLso9Cf3r1Xhpqrrf8xnTSJJt0nni5FkVHZ3tzHbTPVQBHmQ5Bb5DZ05RLG8kO2jHV+CKPvDQ+wv0ycr71CnobJAOs/W4j3kVUtBhO7kbLO1w/kyZpKNzZU/Qrm91T9h7S4mJvImq7UIP24N16s08xk/03UEMTQXj70KOER86iPln8TuiT1oM/TZWcVhhK9Vo7UUSteHGOrnyw1kp54xD/74dNxEAXDkuXfuPq9T0i0Q74au412DUgi5/taF/SUeLU0JFPdIXhgM2dWMmXnOepBSZGD6S2WuxJOPdOTuaVCI8z6AZptO4ksb3os23WJJdPAzj3zHkMD5jG32BOECF1IUa049JKPhFC5jEqTN5R0C2NkDnkBEYKg9ASNTNComyyRGCTW+2mFzXFzv1iqdXH/gEaQ+DPTqJGc1JiH+Qf1YVjnSTW1m5XeFW4aiotV7UfNYWrgporzeJeOHs84zBKHVfDlcN6h56J3d29eZqfBByd5yi/XX1OO9s7o60EtSOEieLRR5t4tsmXO7NqWivEhFYLzniRVmuzUZzKtKXjlESID2/DhjP9zpn3b+4UPjBoCupbSeYGGTD+K77bOxNBpZbklavi9LOE+oA7YFvzzc9ElhwhDt91GNql3Dwg12+pxiMB1r8Pt8/Gd8dvfXKDHaTVUvTA2BLA9pNJQBIRtv3SM+SoIwY7LNvegPA2Bqp60XH2f8UDQJaCuY3A1S+ZuLSXOomlOe28CR0A/luBggT3mEawLcIs4PdgCC8wycEmIIW1geIxh4QvOS/U8VbbkDNnel8KzYCHEr4nbUl6HYAQ/ZOHuyILiX7ZxSIomC87vicE+yYyVhH/gOplE9K/bm+2RDaf2uhVbOv9bszV3dVyjOGFXkszmSX/s3/AnQ8fi2oqKln8LdIygWqBIox824BHupei/ietH6hUFcYSTsFmY=
\ No newline at end of file
+/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCW1I/HueTuOJOcD40MLI2D0tMGBACgOQKJ6uY/zxinGkLrJDCtdmDmvCeR1n1Hv+sdVxRY8tWYGGLijvZWhOzTx+NIPsCCPxG2JhtyMdOmPXaw9rO2jOmxYYzqi+uTe4RSnvmlg2X5u1T39xZueFOnurq+m5Q3v1PRYgqU2LlZXdR+P4SwRnjM07xrUsBgEyB6DIJlrLWpuf3zIYTNaGpbsC4ELycWtPudfCVNDLSxlrKZyc9NpAT04XeJAwX8Lq2tp4OKijLU76pLxi1ISQOg2kkl+XdtRfktDNPOFSDAsFtMo4DoqH/YXyMh/Pa0dVcaDEkCdaDGD6QLi7OMnDephI7djzAxy1gTzaF3z4mGYx2zBU4lgOKBQi4IqPYP34yJnakvc7w6vYlbWwTSIZveu98wVuSo+z3C0CSK8MwitpWfFKvL9fb3kyvXuRKe9EU9gFfugDOl+kNbphhBR6eC+t6WLC0fERVA9bl+2/DQ5EoyM0s8xVUX+liTfQv8DXLga1OUYM3gxVZRZwinrRvpxbp3f/qQVDuIlrHqy7yof99P1QOsnNYewbDjgzEt3/dFK08t0wTIVPl/T4YYkdC2NmO5/vaQHRQjF/nedaeI+AucsteqE4/UqD8B6wUL00+UX5iD4SxDJjeeRWAxBmH8Z9JKRDr7ZjICWxEDT5/X2rRYyPRdug4XaSJyTfVsJ/5B58UBJph5BWhOhsZ90gkHojhKXd7LtMfe66eunn2OMlI0aaAqT822QSZQqI8fN7KkKppg/iAIOmW/ZrH1s+RTjpMOb9lQWDZewXHaZrG8Plakm/JSxKTlUm/bO+1VhEesz9NuXDRMhoC+iQwRUpJV3xepenueVhHZcfAzOdkAFOVwPnbDXjhMPzi6nJFiZU4OsjXSj7D+LGKAg3COv2r9Ao+Sxyi+XEhcw8XBPv3eq6vWN4jcVeijI1Sgv8dn8ywOaceEP4lh8lgj9T8ozFMG7dAdaeD6D4yp0zwe33XnfeNgKfBChft7gcrkJa+6EjWnzpUBUmA5VOF4OIXMp51vi+QdV2qfqvGsh04/twSDhx01qlP0lSrjDqbPj5FCsdONu3y33o/AIAj+OTHaapQBpodxTdPxSzv4iTMvd7/AhEtELnMPmul6NMksb79/Lnovul5oeRPZYewGLWaNHg1vs+grrNZXcZ4bKoWBn7ep2nte4Cu0glkAw6YyvgFxMrSlI7mf5mJZJuQlu7WcQxCBQIyP7+nBFoMuVM1VKar0KcxCfN1tOeHw3HEW+IQA6bN89b4Eubbzfy+FviSCT4tZ943lZ/1f409dTnHN1EBO7T4vYaY2Cvb2GpkYUDPF89wicWLEvnl0JEiyA39RAnYOna+JbluiifgNcxMea77nPIyJFeRpRLso9Cf3r1Xhpqrrf8xnTSJJt0nni5FkVHZ3tzHbTPVQBHmQ5Bb5DZ05RLG8kO2jHV+CKPvDQ+wv0ycr71CnobJAOs/W4j3kVUtBhO7kbLO1w/kyZpKNzZU/Qrm91T9h7S4mJvImq7UIP24N16s08xk/03UEMTQXj70KOER86iPln8TuiT1oM/TZWcVhhK9Vo7UUSteHGOrnyw1kp54xD/74dNxEAXDkuXfuPq9T0i0Q74au412DUgi5/taF/SUeLU0JFPdIXhgM2dWMmXnOepBSZGD6S2WuxJOPdOTuaVCI8z6AZptO4ksb3os23WJJdPAzj3zHkMD5jG32BOECF1IUa049JKPhFC5jEqTN5R0C2NkDnkBEYKg9ASNTNComyyRGCTW+2mFzXFzv1iqdXH/gEaQ+DPTqJGc1JiH+Qf1YVjnSTW1m5XeFW4aiotV7UfNYWrgporzeJeOHs84zBKHVfDlcN6h56J3d29eZqfBByd5yi/XX1OO9s7o60EtSOEieLRR5t4tsmXO7NqWivEhFYLzniRVmuzUZzKtKXjlESID2/DhjP9zpn3b+4UPjBoCupbSeYGGTD+K77bOxNBpZbklavi9LOE+oA7YFvzzc9ElhwhDt91GNql3Dwg12+pxiMB1r8Pt8/Gd8dvfXKDHaTVUvTA2BLA9pNJQBIRtv3SM+SoIwY7LNvegPA2Bqp60XH2f8UDQJaCuY3A1S+ZuLSXOomlOe28CR0A/luBggT3mEawLcIs4PdgCC8wycEmIIW1geIxh4QvOS/U8VbbkDNnel8KzYCHEr4nbUl6HYAQ/ZOHuyILiX7ZxSIomC87vicE+yYyVhH/gOplE9K/bm+2RDaf2uhVbOv9bszV3dVyjOGFXkszmSX6v2XvMw5A90RceiM+MXObrAh89JOcWhtLkkFyfPKSX5vbEbdVKrvdWtuEH/0cUpKHpx1sdfHOKJDPpXD/zLqowlg+ahuxeC3FC6MR7TYGm9zXeUZWetqC9bKWtxbbc0O+IKUAB3kgpWZrZYQ/PNy+bSRuyrhZPFNVo2rLX5wXDyxod2nSGOKgzKLtX3pytCk6szGoPZ16hI1S6uYWdwFMEU+2cCBeSTkfgLQ0sewLb29k5DRbDxjpXX3AjcVugayUvXaHPlPtDXir8QMGgX72Y3ELPuaQ85u/abaiYioNpdnfOiiSOAnU04js1bDkufdCO25EKIq3mauMpIYed8sAUtl7pz2vO/j2zfqwB2sGbWfIAolFLl8fju6ot72RLr5AMNGl4mGjP3fUxifNMJCrcgx1hZtggGbSoFhVi5xeplFGAqH80INC8+fOlxOb1/Re3oM2fN8IEgu+fRM33d+WUjR9gA4SLvncsq8JzxUywkkdjd3y62Bb3iWFOzwKB6kUwZgs0uU9abz9lLPbOBzdDzAU7RSZzW1FWqi+vdX9JIhjnLyksXVdFQKPCN52vIgujyKgbckoCUrJt1oCjnC3kmupdr0v90NuCYXzFRcNMXV2RV+IWT5NRjpbmn2hHQW3fRoVdoSuihZmavtpool4BN9N4vaohNMAeB2DKQBcnnAlxBom9PJPLTTF/JsstcBFTXlY9zSod1uQjt9kVjRJmAFtENhL7+nQmwkKV07gCpGSu1L2R9D8KZxLYSXw4x6oGIg1B14BrmWo2Tt/Me/3B5mda9adH5oSFVEjrID0UPbwm8quRcKNdecI8DmimxhofG5ltVfM2XI2iNm2Zo+sHkgqowk06mObWhV6M6iT8+ron0yC5mFnnlqQk65FRbSDgPxHDHEfd8BM8SaKFZNpn+eW8eRxxH3kDOXGzrVCQYihRNkIw6rwUcaNbdQVFsQLj/pVR9YpsVjwrp4B0IXFg105sDDv2yuOwyUCiY9I/zHFX1dQGAz9XEkqE511OdaDPzt52Q114LZERZbBuwShJwMJ6DcdDSqbKqOwh7lB7CpV5dq4XxsvowOytNyOOOWKS4O9k3SR1ZH373ajD3XqBQ4mnLZ/NkTTzJHJtBZTnXeD1CnrT8HIq8SaT/k80aPVdzG8ssDY/Zps8fVYHqogo8Qf1FxHcSiUDuTI+s0pbHGSRPEkmtquBnlNBQGjYsxywiTFr7Fi6XEB2iyYtKoCn2jY+OwiUzIvpFGSnapKCGvJ1uEhgBdxVgk78974X1mvtGv8eNRBJH2Snuelr/Ysa856ysWLlb1QeVwmd/2DjoXwzXf7U7Qs8hXZIH1KWpY1kDpck4FUhBQ+l1r+ZUEIC/1y+uITslNbADaRgvvrk5wVYUm84tMMR8HG0Lth5Xr1mpLq55jtlA82uB5PRd8isDhxpm1OhLMtaEJlzXeUv29YgCHDMmts7suV5jxxx8lYRIYFQu9Z3mBxIhJfUT+apSPJvDNwyPv2HHst1ovhvq9CC62/Lkff0b6mtrjJKxVPvBjqnTqfxOCbIDAHGVwoskmQHScwznxvK74vqm9hPZZmTTM+vMvU/mM42r/K0yAJVIki4NSjvAdqin5xQdY2NtkBZtqt3bnycF0JkbCDUz7FWt4hgqCT0NfkneSUGWI0VnGr0Q0FiU1YbtzpNK/h1wo5MEPvuQtQ==
\ No newline at end of file
diff --git a/dll/Data/SyncOperationPwd.mes b/dll/Data/SyncOperationPwd.mes
index 311c9f4..5f8c718 100644
--- a/dll/Data/SyncOperationPwd.mes
+++ b/dll/Data/SyncOperationPwd.mes
@@ -1 +1 @@
-zIU7s3Rawog=
\ No newline at end of file
+PIiCmqDq6wk=
\ No newline at end of file
diff --git a/dll/Data/SyncPlatDataBase.mes b/dll/Data/SyncPlatDataBase.mes
index 8cb4066..f64ae67 100644
--- a/dll/Data/SyncPlatDataBase.mes
+++ b/dll/Data/SyncPlatDataBase.mes
@@ -1 +1 @@
-/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCPd+s16KzzZc3RYrVagEFqWUlC2NWJgBLtc+tMLc2HJkq++Ewf/5QYIWw0dwMY90kkel2nmqRBK0dWfVWDOZOpdcAY+4YOYSFG98a3Wg3WLDyR5VozZDPfA41720qsQqCR1q7YoyEApjVWEQyk+r9gLfaCY8Z1EtVtdmrzpENRhrpsyi0u4Kb2RDuUW7nDgf4qfJbApbw7KcEIljW7G5S/2rGejSLLcKezyMkYa/R6H7ltweb0eY2sSwLVr6ni04AQL7Cm6IqRTvkMQgQ3pwUqNZdMj317NiCeiOEcdSEXdh1l/Gq82ixIwOinrLehWRYmYqfOSfyPTA==
\ No newline at end of file
+/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCPd+s16KzzZc3RYrVagEFqWUlC2NWJgBLtc+tMLc2HJkq++Ewf/5QYIWw0dwMY90kkel2nmqRBK0dWfVWDOZOpdcAY+4YOYSFG98a3Wg3WLDyR5VozZDPfA41720qsQqCR1q7YoyEApjVWEQyk+r9gLfaCY8Z1EtUxembAlb3j7elM+qBGcYnXd5Pb8M4TpopE/5fZCldOXIzUoHW/wcqpiG3docnnCSsnNwonHPryUY00lQgo/ytfhc4ATmWyfe3XFi5eKUPysKgSA6SVxVNPKtHiMsDbUPWowwduuXkpX/OLQH4aBGWMnYIRob6ZzWMGg+f97YPw6g==
\ No newline at end of file
diff --git a/dll/DataConfig/SystemFormatConfig.xml b/dll/DataConfig/SystemFormatConfig.xml
index 3f2efd6..e0a69fa 100644
--- a/dll/DataConfig/SystemFormatConfig.xml
+++ b/dll/DataConfig/SystemFormatConfig.xml
@@ -1 +1 @@
--1000-10mysql01http://localhost:8080/api
\ No newline at end of file
+-101-10mysql00http://localhost:8080/api
\ No newline at end of file
diff --git a/dll/Document/AshMeltingPoint.xls b/dll/Document/AshMeltingPoint.xls
index 1fd9231..403dbc6 100644
Binary files a/dll/Document/AshMeltingPoint.xls and b/dll/Document/AshMeltingPoint.xls differ
diff --git a/dll/ErrorLog/20241231.txt b/dll/ErrorLog/20241231.txt
new file mode 100644
index 0000000..d712162
--- /dev/null
+++ b/dll/ErrorLog/20241231.txt
@@ -0,0 +1,6 @@
+¼ʱ䣺2024-12-31 17:11:59,040 ߳ID:[9]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
+¼ʱ䣺2024-12-31 17:12:11,445 ߳ID:[9]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
+¼ʱ䣺2024-12-31 17:12:15,138 ߳ID:[9]- :MySQLDAL :GetTableStruct Ϣ:===-222-===CNAS_ANALYSIS_ASHSELECT * FROM CNAS_ANALYSIS_ASH Where 0=1
+¼ʱ䣺2024-12-31 17:12:17,284 ߳ID:[9]- :MySQLHelper :ExecuteDataSet Ϣ:Unable to connect to any of the specified MySQL hosts.
+¼ʱ䣺2024-12-31 17:12:17,312 ߳ID:[9]- :MySQLDAL :GetTableStruct Ϣ:Unable to connect to any of the specified MySQL hosts.
+¼ʱ䣺2024-12-31 17:12:55,175 ߳ID:[9]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
diff --git a/dll/ErrorLog/20250131.txt b/dll/ErrorLog/20250131.txt
new file mode 100644
index 0000000..59a4092
--- /dev/null
+++ b/dll/ErrorLog/20250131.txt
@@ -0,0 +1 @@
+¼ʱ䣺2025-01-31 22:35:47,976 ߳ID:[9]- :FormSizeHelper :Init Ϣ:<ıǡӦΪ> 4 Уλ 1
diff --git a/dll/ErrorLog/20250212.txt b/dll/ErrorLog/20250212.txt
new file mode 100644
index 0000000..b4a9f67
--- /dev/null
+++ b/dll/ErrorLog/20250212.txt
@@ -0,0 +1,22 @@
+¼ʱ䣺2025-02-12 08:27:08,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:27:08,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:27:08,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:27:08,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:27:08,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:27:47,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:27:47,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:27:47,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:27:47,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:27:47,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:34:55,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:34:55,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:34:55,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:34:55,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:34:55,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:41:01,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:41:01,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-12 08:41:01,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:41:01,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:41:01,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-12 08:41:10,942 ߳ID:[1]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
+¼ʱ䣺2025-02-12 11:09:03,674 ߳ID:[1]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
diff --git a/dll/ErrorLog/20250213.txt b/dll/ErrorLog/20250213.txt
index bedd7b8..2d8251e 100644
--- a/dll/ErrorLog/20250213.txt
+++ b/dll/ErrorLog/20250213.txt
@@ -1,4852 +1,2471 @@
-¼ʱ䣺2025-02-13 13:52:22,813 ߳ID:[1]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
-¼ʱ䣺2025-02-13 13:53:12,315 ߳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-13 13:53:12,316 ߳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-13 13:53:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,382 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,382 ߳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-13 13:53:12,382 ߳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-13 13:53:12,382 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,390 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,390 ߳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-13 13:53:12,390 ߳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-13 13:53:12,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,393 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,393 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,393 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,394 ߳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-13 13:53:12,394 ߳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-13 13:53:12,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,397 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,397 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,397 ߳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-13 13:53:12,397 ߳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-13 13:53:12,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,401 ߳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-13 13:53:12,401 ߳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-13 13:53:12,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,405 ߳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-13 13:53:12,405 ߳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-13 13:53:12,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,408 ߳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-13 13:53:12,408 ߳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-13 13:53:12,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,411 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,412 ߳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-13 13:53:12,412 ߳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-13 13:53:12,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,416 ߳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-13 13:53:12,416 ߳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-13 13:53:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,419 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,419 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,419 ߳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-13 13:53:12,419 ߳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-13 13:53:12,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,423 ߳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-13 13:53:12,423 ߳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-13 13:53:12,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,427 ߳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-13 13:53:12,427 ߳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-13 13:53:12,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,432 ߳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-13 13:53:12,432 ߳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-13 13:53:12,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,440 ߳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-13 13:53:12,440 ߳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-13 13:53:12,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 13:53:12,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 13:53:12,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 13:53:12,464 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,464 ߳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-13 13:53:12,465 ߳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-13 13:53:12,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 13:53:12,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 13:53:12,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 13:53:12,482 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,483 ߳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-13 13:53:12,483 ߳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-13 13:53:12,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,488 ߳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-13 13:53:12,488 ߳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-13 13:53:12,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,491 ߳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-13 13:53:12,491 ߳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-13 13:53:12,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,495 ߳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-13 13:53:12,495 ߳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-13 13:53:12,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,498 ߳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-13 13:53:12,499 ߳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-13 13:53:12,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,501 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,501 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,501 ߳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-13 13:53:12,501 ߳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-13 13:53:12,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,504 ߳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-13 13:53:12,504 ߳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-13 13:53:12,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,507 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,507 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,507 ߳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-13 13:53:12,507 ߳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-13 13:53:12,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,510 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,510 ߳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-13 13:53:12,510 ߳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-13 13:53:12,510 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,514 ߳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-13 13:53:12,514 ߳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-13 13:53:12,514 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,516 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,517 ߳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-13 13:53:12,517 ߳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-13 13:53:12,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,519 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,519 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,519 ߳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-13 13:53:12,519 ߳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-13 13:53:12,519 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,522 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,522 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,522 ߳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-13 13:53:12,522 ߳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-13 13:53:12,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,525 ߳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-13 13:53:12,525 ߳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-13 13:53:12,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,527 ߳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-13 13:53:12,527 ߳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-13 13:53:12,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,529 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,530 ߳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-13 13:53:12,530 ߳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-13 13:53:12,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,532 ߳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-13 13:53:12,532 ߳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-13 13:53:12,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,535 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,535 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,535 ߳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-13 13:53:12,535 ߳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-13 13:53:12,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,538 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,538 ߳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-13 13:53:12,538 ߳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-13 13:53:12,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,541 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,541 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,541 ߳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-13 13:53:12,541 ߳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-13 13:53:12,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,544 ߳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-13 13:53:12,544 ߳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-13 13:53:12,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,546 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,547 ߳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-13 13:53:12,547 ߳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-13 13:53:12,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,549 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,549 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,550 ߳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-13 13:53:12,550 ߳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-13 13:53:12,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,553 ߳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-13 13:53:12,553 ߳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-13 13:53:12,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,555 ߳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-13 13:53:12,556 ߳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-13 13:53:12,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,558 ߳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-13 13:53:12,558 ߳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-13 13:53:12,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,561 ߳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-13 13:53:12,561 ߳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-13 13:53:12,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,563 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,563 ߳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-13 13:53:12,563 ߳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-13 13:53:12,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,565 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,565 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,566 ߳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-13 13:53:12,566 ߳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-13 13:53:12,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,568 ߳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-13 13:53:12,568 ߳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-13 13:53:12,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,570 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,570 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,571 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,571 ߳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-13 13:53:12,571 ߳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-13 13:53:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,573 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,573 ߳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-13 13:53:12,574 ߳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-13 13:53:12,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,576 ߳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-13 13:53:12,576 ߳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-13 13:53:12,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,578 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,579 ߳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-13 13:53:12,579 ߳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-13 13:53:12,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,581 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,582 ߳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-13 13:53:12,582 ߳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-13 13:53:12,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,584 ߳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-13 13:53:12,585 ߳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-13 13:53:12,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,587 ߳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-13 13:53:12,587 ߳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-13 13:53:12,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,590 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,590 ߳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-13 13:53:12,590 ߳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-13 13:53:12,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,593 ߳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-13 13:53:12,593 ߳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-13 13:53:12,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,596 ߳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-13 13:53:12,596 ߳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-13 13:53:12,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,598 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,598 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,598 ߳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-13 13:53:12,598 ߳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-13 13:53:12,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,601 ߳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-13 13:53:12,601 ߳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-13 13:53:12,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,603 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,603 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,603 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,603 ߳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-13 13:53:12,604 ߳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-13 13:53:12,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,606 ߳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-13 13:53:12,606 ߳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-13 13:53:12,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,609 ߳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-13 13:53:12,609 ߳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-13 13:53:12,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,612 ߳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-13 13:53:12,612 ߳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-13 13:53:12,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,614 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,615 ߳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-13 13:53:12,615 ߳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-13 13:53:12,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,618 ߳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-13 13:53:12,618 ߳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-13 13:53:12,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,620 ߳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-13 13:53:12,620 ߳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-13 13:53:12,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,623 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,623 ߳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-13 13:53:12,624 ߳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-13 13:53:12,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,626 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,626 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,626 ߳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-13 13:53:12,626 ߳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-13 13:53:12,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,629 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,630 ߳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-13 13:53:12,630 ߳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-13 13:53:12,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,632 ߳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-13 13:53:12,633 ߳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-13 13:53:12,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,635 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,636 ߳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-13 13:53:12,636 ߳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-13 13:53:12,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,638 ߳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-13 13:53:12,638 ߳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-13 13:53:12,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,641 ߳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-13 13:53:12,641 ߳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-13 13:53:12,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,644 ߳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-13 13:53:12,644 ߳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-13 13:53:12,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,646 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,646 ߳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-13 13:53:12,647 ߳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-13 13:53:12,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,649 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,649 ߳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-13 13:53:12,649 ߳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-13 13:53:12,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,652 ߳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-13 13:53:12,652 ߳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-13 13:53:12,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,655 ߳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-13 13:53:12,655 ߳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-13 13:53:12,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,658 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,658 ߳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-13 13:53:12,658 ߳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-13 13:53:12,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,665 ߳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-13 13:53:12,665 ߳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-13 13:53:12,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,668 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,668 ߳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-13 13:53:12,668 ߳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-13 13:53:12,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,671 ߳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-13 13:53:12,671 ߳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-13 13:53:12,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,673 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,673 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,674 ߳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-13 13:53:12,674 ߳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-13 13:53:12,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,676 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,677 ߳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-13 13:53:12,677 ߳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-13 13:53:12,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,679 ߳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-13 13:53:12,679 ߳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-13 13:53:12,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,681 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,682 ߳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-13 13:53:12,682 ߳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-13 13:53:12,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,685 ߳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-13 13:53:12,685 ߳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-13 13:53:12,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,687 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,687 ߳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-13 13:53:12,687 ߳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-13 13:53:12,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,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-13 13:53:12,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-13 13:53:12,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,692 ߳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-13 13:53:12,692 ߳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-13 13:53:12,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,695 ߳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-13 13:53:12,695 ߳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-13 13:53:12,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,697 ߳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-13 13:53:12,698 ߳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-13 13:53:12,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,700 ߳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-13 13:53:12,700 ߳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-13 13:53:12,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,702 ߳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-13 13:53:12,702 ߳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-13 13:53:12,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,704 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,705 ߳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-13 13:53:12,705 ߳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-13 13:53:12,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,707 ߳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-13 13:53:12,707 ߳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-13 13:53:12,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,710 ߳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-13 13:53:12,710 ߳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-13 13:53:12,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,713 ߳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-13 13:53:12,713 ߳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-13 13:53:12,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,715 ߳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-13 13:53:12,716 ߳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-13 13:53:12,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,717 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,717 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,718 ߳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-13 13:53:12,718 ߳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-13 13:53:12,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,720 ߳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-13 13:53:12,720 ߳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-13 13:53:12,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,724 ߳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-13 13:53:12,724 ߳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-13 13:53:12,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,726 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,726 ߳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-13 13:53:12,726 ߳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-13 13:53:12,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,729 ߳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-13 13:53:12,729 ߳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-13 13:53:12,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,732 ߳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-13 13:53:12,732 ߳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-13 13:53:12,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,734 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,734 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,734 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,734 ߳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-13 13:53:12,734 ߳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-13 13:53:12,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,737 ߳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-13 13:53:12,737 ߳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-13 13:53:12,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,739 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,740 ߳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-13 13:53:12,740 ߳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-13 13:53:12,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,743 ߳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-13 13:53:12,743 ߳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-13 13:53:12,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,744 ߳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-13 13:53:12,744 ߳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-13 13:53:12,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,748 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,748 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,748 ߳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-13 13:53:12,748 ߳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-13 13:53:12,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,750 ߳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-13 13:53:12,750 ߳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-13 13:53:12,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,752 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,753 ߳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-13 13:53:12,753 ߳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-13 13:53:12,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,755 ߳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-13 13:53:12,756 ߳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-13 13:53:12,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,758 ߳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-13 13:53:12,758 ߳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-13 13:53:12,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,765 ߳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-13 13:53:12,765 ߳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-13 13:53:12,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,767 ߳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-13 13:53:12,767 ߳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-13 13:53:12,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,770 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,770 ߳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-13 13:53:12,770 ߳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-13 13:53:12,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,772 ߳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-13 13:53:12,772 ߳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-13 13:53:12,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,776 ߳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-13 13:53:12,776 ߳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-13 13:53:12,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,779 ߳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-13 13:53:12,779 ߳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-13 13:53:12,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,782 ߳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-13 13:53:12,782 ߳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-13 13:53:12,782 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,785 ߳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-13 13:53:12,785 ߳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-13 13:53:12,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,787 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,787 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,787 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,788 ߳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-13 13:53:12,788 ߳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-13 13:53:12,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,790 ߳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-13 13:53:12,790 ߳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-13 13:53:12,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,793 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,793 ߳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-13 13:53:12,793 ߳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-13 13:53:12,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,796 ߳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-13 13:53:12,796 ߳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-13 13:53:12,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,798 ߳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-13 13:53:12,798 ߳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-13 13:53:12,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,800 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,800 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,801 ߳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-13 13:53:12,801 ߳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-13 13:53:12,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,803 ߳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-13 13:53:12,804 ߳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-13 13:53:12,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,807 ߳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-13 13:53:12,807 ߳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-13 13:53:12,807 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,809 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,809 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,809 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,809 ߳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-13 13:53:12,809 ߳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-13 13:53:12,809 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,811 ߳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-13 13:53:12,811 ߳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-13 13:53:12,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,813 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,813 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,813 ߳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-13 13:53:12,813 ߳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-13 13:53:12,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,816 ߳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-13 13:53:12,816 ߳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-13 13:53:12,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,818 ߳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-13 13:53:12,818 ߳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-13 13:53:12,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,821 ߳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-13 13:53:12,821 ߳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-13 13:53:12,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,822 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,823 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,823 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,823 ߳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-13 13:53:12,823 ߳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-13 13:53:12,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,826 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,826 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,826 ߳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-13 13:53:12,826 ߳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-13 13:53:12,826 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,828 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,829 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,829 ߳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-13 13:53:12,829 ߳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-13 13:53:12,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,832 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,832 ߳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-13 13:53:12,832 ߳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-13 13:53:12,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,835 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,835 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,835 ߳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-13 13:53:12,835 ߳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-13 13:53:12,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,837 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,838 ߳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-13 13:53:12,838 ߳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-13 13:53:12,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,841 ߳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-13 13:53:12,841 ߳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-13 13:53:12,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,844 ߳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-13 13:53:12,844 ߳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-13 13:53:12,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,850 ߳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-13 13:53:12,850 ߳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-13 13:53:12,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,853 ߳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-13 13:53:12,853 ߳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-13 13:53:12,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,855 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,855 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,856 ߳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-13 13:53:12,856 ߳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-13 13:53:12,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,858 ߳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-13 13:53:12,858 ߳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-13 13:53:12,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,861 ߳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-13 13:53:12,861 ߳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-13 13:53:12,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,864 ߳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-13 13:53:12,864 ߳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-13 13:53:12,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,867 ߳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-13 13:53:12,867 ߳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-13 13:53:12,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,870 ߳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-13 13:53:12,870 ߳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-13 13:53:12,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,872 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,872 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,873 ߳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-13 13:53:12,873 ߳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-13 13:53:12,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,876 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,876 ߳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-13 13:53:12,876 ߳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-13 13:53:12,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,879 ߳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-13 13:53:12,879 ߳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-13 13:53:12,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,880 ߳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-13 13:53:12,880 ߳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-13 13:53:12,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,883 ߳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-13 13:53:12,883 ߳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-13 13:53:12,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,886 ߳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-13 13:53:12,886 ߳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-13 13:53:12,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,888 ߳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-13 13:53:12,888 ߳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-13 13:53:12,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,891 ߳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-13 13:53:12,891 ߳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-13 13:53:12,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,894 ߳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-13 13:53:12,894 ߳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-13 13:53:12,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,896 ߳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-13 13:53:12,896 ߳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-13 13:53:12,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,899 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,899 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,899 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,899 ߳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-13 13:53:12,899 ߳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-13 13:53:12,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,902 ߳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-13 13:53:12,902 ߳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-13 13:53:12,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,904 ߳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-13 13:53:12,904 ߳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-13 13:53:12,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,907 ߳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-13 13:53:12,907 ߳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-13 13:53:12,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,910 ߳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-13 13:53:12,910 ߳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-13 13:53:12,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,912 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,912 ߳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-13 13:53:12,912 ߳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-13 13:53:12,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,915 ߳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-13 13:53:12,915 ߳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-13 13:53:12,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,917 ߳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-13 13:53:12,918 ߳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-13 13:53:12,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,920 ߳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-13 13:53:12,920 ߳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-13 13:53:12,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,923 ߳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-13 13:53:12,923 ߳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-13 13:53:12,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,926 ߳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-13 13:53:12,926 ߳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-13 13:53:12,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,929 ߳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-13 13:53:12,929 ߳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-13 13:53:12,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,932 ߳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-13 13:53:12,933 ߳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-13 13:53:12,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,935 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,935 ߳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-13 13:53:12,935 ߳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-13 13:53:12,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,937 ߳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-13 13:53:12,937 ߳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-13 13:53:12,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,940 ߳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-13 13:53:12,940 ߳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-13 13:53:12,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,943 ߳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-13 13:53:12,943 ߳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-13 13:53:12,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,946 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,946 ߳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-13 13:53:12,946 ߳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-13 13:53:12,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,950 ߳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-13 13:53:12,950 ߳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-13 13:53:12,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,952 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,952 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,953 ߳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-13 13:53:12,953 ߳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-13 13:53:12,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,955 ߳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-13 13:53:12,955 ߳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-13 13:53:12,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,958 ߳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-13 13:53:12,958 ߳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-13 13:53:12,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,961 ߳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-13 13:53:12,961 ߳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-13 13:53:12,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,963 ߳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-13 13:53:12,963 ߳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-13 13:53:12,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,965 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,965 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,966 ߳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-13 13:53:12,966 ߳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-13 13:53:12,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,968 ߳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-13 13:53:12,968 ߳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-13 13:53:12,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,971 ߳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-13 13:53:12,971 ߳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-13 13:53:12,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,973 ߳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-13 13:53:12,973 ߳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-13 13:53:12,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,976 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,976 ߳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-13 13:53:12,976 ߳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-13 13:53:12,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,979 ߳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-13 13:53:12,979 ߳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-13 13:53:12,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,980 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,980 ߳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-13 13:53:12,980 ߳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-13 13:53:12,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,981 ߳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-13 13:53:12,981 ߳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-13 13:53:12,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,982 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,982 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,983 ߳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-13 13:53:12,983 ߳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-13 13:53:12,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,984 ߳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-13 13:53:12,984 ߳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-13 13:53:12,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,985 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,985 ߳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-13 13:53:12,985 ߳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-13 13:53:12,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,987 ߳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-13 13:53:12,987 ߳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-13 13:53:12,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,988 ߳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-13 13:53:12,988 ߳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-13 13:53:12,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,989 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,990 ߳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-13 13:53:12,990 ߳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-13 13:53:12,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:12,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 13:53:12,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:12,991 ߳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-13 13:53:12,991 ߳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-13 13:53:12,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:12,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 13:53:13,051 ߳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-13 13:53:13,051 ߳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-13 13:53:13,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:13,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:13,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:13,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 13:53:13,078 ߳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-13 13:53:13,078 ߳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-13 13:53:13,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:13,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:13,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 13:53:13,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,634 ߳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-13 14:11:24,634 ߳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-13 14:11:24,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,638 ߳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-13 14:11:24,638 ߳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-13 14:11:24,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,638 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,638 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,639 ߳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-13 14:11:24,639 ߳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-13 14:11:24,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,641 ߳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-13 14:11:24,641 ߳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-13 14:11:24,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,644 ߳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-13 14:11:24,644 ߳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-13 14:11:24,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,646 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,646 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,647 ߳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-13 14:11:24,647 ߳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-13 14:11:24,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,649 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,649 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,650 ߳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-13 14:11:24,650 ߳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-13 14:11:24,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,651 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,651 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,652 ߳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-13 14:11:24,652 ߳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-13 14:11:24,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,654 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,654 ߳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-13 14:11:24,654 ߳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-13 14:11:24,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,655 ߳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-13 14:11:24,655 ߳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-13 14:11:24,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,657 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,657 ߳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-13 14:11:24,657 ߳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-13 14:11:24,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,663 ߳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-13 14:11:24,663 ߳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-13 14:11:24,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,664 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,664 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,665 ߳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-13 14:11:24,665 ߳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-13 14:11:24,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,667 ߳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-13 14:11:24,667 ߳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-13 14:11:24,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,668 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,669 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,669 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,669 ߳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-13 14:11:24,669 ߳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-13 14:11:24,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 14:11:24,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 14:11:24,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 14:11:24,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,692 ߳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-13 14:11:24,692 ߳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-13 14:11:24,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 14:11:24,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 14:11:24,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 14:11:24,712 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,712 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,712 ߳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-13 14:11:24,712 ߳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-13 14:11:24,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,713 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,714 ߳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-13 14:11:24,714 ߳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-13 14:11:24,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,716 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,716 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,716 ߳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-13 14:11:24,716 ߳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-13 14:11:24,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,718 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,718 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,718 ߳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-13 14:11:24,718 ߳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-13 14:11:24,718 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,720 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,720 ߳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-13 14:11:24,720 ߳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-13 14:11:24,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,722 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,722 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,722 ߳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-13 14:11:24,722 ߳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-13 14:11:24,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,724 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,725 ߳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-13 14:11:24,725 ߳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-13 14:11:24,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,727 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,727 ߳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-13 14:11:24,727 ߳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-13 14:11:24,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,729 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,729 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,729 ߳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-13 14:11:24,729 ߳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-13 14:11:24,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,731 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,731 ߳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-13 14:11:24,731 ߳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-13 14:11:24,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,733 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,733 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,733 ߳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-13 14:11:24,733 ߳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-13 14:11:24,733 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,735 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,735 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,735 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,736 ߳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-13 14:11:24,736 ߳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-13 14:11:24,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,737 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,738 ߳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-13 14:11:24,738 ߳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-13 14:11:24,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,740 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,740 ߳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-13 14:11:24,740 ߳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-13 14:11:24,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,742 ߳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-13 14:11:24,742 ߳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-13 14:11:24,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,744 ߳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-13 14:11:24,744 ߳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-13 14:11:24,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,747 ߳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-13 14:11:24,747 ߳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-13 14:11:24,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,749 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,749 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,749 ߳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-13 14:11:24,749 ߳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-13 14:11:24,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,751 ߳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-13 14:11:24,751 ߳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-13 14:11:24,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,753 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,753 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,753 ߳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-13 14:11:24,753 ߳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-13 14:11:24,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,755 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,755 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,756 ߳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-13 14:11:24,756 ߳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-13 14:11:24,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,758 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,758 ߳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-13 14:11:24,758 ߳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-13 14:11:24,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,760 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,760 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,760 ߳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-13 14:11:24,761 ߳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-13 14:11:24,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,762 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,762 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,762 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,762 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,763 ߳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-13 14:11:24,763 ߳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-13 14:11:24,763 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,765 ߳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-13 14:11:24,765 ߳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-13 14:11:24,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,767 ߳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-13 14:11:24,767 ߳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-13 14:11:24,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,769 ߳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-13 14:11:24,769 ߳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-13 14:11:24,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,771 ߳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-13 14:11:24,771 ߳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-13 14:11:24,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,773 ߳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-13 14:11:24,773 ߳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-13 14:11:24,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,775 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,775 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,775 ߳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-13 14:11:24,775 ߳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-13 14:11:24,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,777 ߳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-13 14:11:24,777 ߳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-13 14:11:24,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,779 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,780 ߳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-13 14:11:24,780 ߳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-13 14:11:24,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,781 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,781 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,782 ߳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-13 14:11:24,782 ߳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-13 14:11:24,782 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,783 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,784 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,784 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,784 ߳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-13 14:11:24,784 ߳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-13 14:11:24,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,786 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,786 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,786 ߳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-13 14:11:24,786 ߳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-13 14:11:24,786 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,788 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,788 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,789 ߳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-13 14:11:24,789 ߳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-13 14:11:24,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,790 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,790 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,791 ߳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-13 14:11:24,791 ߳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-13 14:11:24,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,793 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,793 ߳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-13 14:11:24,793 ߳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-13 14:11:24,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,794 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,795 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,795 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,795 ߳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-13 14:11:24,795 ߳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-13 14:11:24,795 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,797 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,797 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,797 ߳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-13 14:11:24,797 ߳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-13 14:11:24,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,799 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,799 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,799 ߳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-13 14:11:24,799 ߳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-13 14:11:24,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,801 ߳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-13 14:11:24,801 ߳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-13 14:11:24,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,803 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,803 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,804 ߳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-13 14:11:24,804 ߳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-13 14:11:24,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,806 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,806 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,806 ߳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-13 14:11:24,806 ߳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-13 14:11:24,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,808 ߳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-13 14:11:24,809 ߳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-13 14:11:24,809 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,810 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,811 ߳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-13 14:11:24,811 ߳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-13 14:11:24,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,812 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,813 ߳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-13 14:11:24,813 ߳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-13 14:11:24,813 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,815 ߳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-13 14:11:24,816 ߳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-13 14:11:24,816 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,817 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,818 ߳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-13 14:11:24,818 ߳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-13 14:11:24,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,820 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,820 ߳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-13 14:11:24,820 ߳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-13 14:11:24,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,827 ߳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-13 14:11:24,827 ߳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-13 14:11:24,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,830 ߳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-13 14:11:24,830 ߳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-13 14:11:24,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,832 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,832 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,832 ߳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-13 14:11:24,832 ߳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-13 14:11:24,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,835 ߳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-13 14:11:24,835 ߳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-13 14:11:24,835 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,838 ߳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-13 14:11:24,838 ߳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-13 14:11:24,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,840 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,840 ߳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-13 14:11:24,840 ߳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-13 14:11:24,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,842 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,842 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,842 ߳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-13 14:11:24,842 ߳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-13 14:11:24,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,844 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,844 ߳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-13 14:11:24,844 ߳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-13 14:11:24,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,846 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,847 ߳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-13 14:11:24,847 ߳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-13 14:11:24,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,850 ߳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-13 14:11:24,850 ߳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-13 14:11:24,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,851 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,852 ߳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-13 14:11:24,852 ߳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-13 14:11:24,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,854 ߳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-13 14:11:24,854 ߳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-13 14:11:24,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,856 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,856 ߳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-13 14:11:24,856 ߳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-13 14:11:24,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,858 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,859 ߳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-13 14:11:24,859 ߳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-13 14:11:24,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,860 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,861 ߳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-13 14:11:24,861 ߳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-13 14:11:24,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,862 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,862 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,862 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,863 ߳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-13 14:11:24,863 ߳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-13 14:11:24,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,865 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,865 ߳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-13 14:11:24,865 ߳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-13 14:11:24,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,866 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,867 ߳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-13 14:11:24,867 ߳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-13 14:11:24,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,870 ߳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-13 14:11:24,870 ߳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-13 14:11:24,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,872 ߳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-13 14:11:24,872 ߳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-13 14:11:24,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,874 ߳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-13 14:11:24,874 ߳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-13 14:11:24,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,875 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,876 ߳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-13 14:11:24,876 ߳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-13 14:11:24,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,877 ߳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-13 14:11:24,877 ߳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-13 14:11:24,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,879 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,880 ߳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-13 14:11:24,880 ߳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-13 14:11:24,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,882 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,882 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,882 ߳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-13 14:11:24,882 ߳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-13 14:11:24,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,883 ߳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-13 14:11:24,884 ߳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-13 14:11:24,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,885 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,885 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,886 ߳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-13 14:11:24,886 ߳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-13 14:11:24,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,888 ߳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-13 14:11:24,888 ߳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-13 14:11:24,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,890 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,890 ߳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-13 14:11:24,890 ߳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-13 14:11:24,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,892 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,892 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,892 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,892 ߳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-13 14:11:24,893 ߳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-13 14:11:24,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,894 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,895 ߳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-13 14:11:24,895 ߳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-13 14:11:24,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,896 ߳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-13 14:11:24,896 ߳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-13 14:11:24,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,898 ߳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-13 14:11:24,898 ߳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-13 14:11:24,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,900 ߳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-13 14:11:24,900 ߳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-13 14:11:24,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,902 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,902 ߳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-13 14:11:24,902 ߳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-13 14:11:24,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,904 ߳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-13 14:11:24,904 ߳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-13 14:11:24,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,906 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,906 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,906 ߳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-13 14:11:24,907 ߳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-13 14:11:24,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,909 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,909 ߳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-13 14:11:24,909 ߳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-13 14:11:24,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,911 ߳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-13 14:11:24,911 ߳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-13 14:11:24,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,913 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,913 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,913 ߳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-13 14:11:24,913 ߳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-13 14:11:24,913 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,915 ߳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-13 14:11:24,915 ߳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-13 14:11:24,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,917 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,917 ߳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-13 14:11:24,917 ߳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-13 14:11:24,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,919 ߳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-13 14:11:24,919 ߳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-13 14:11:24,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,922 ߳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-13 14:11:24,922 ߳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-13 14:11:24,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,923 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,923 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,924 ߳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-13 14:11:24,924 ߳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-13 14:11:24,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,925 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,925 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,926 ߳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-13 14:11:24,926 ߳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-13 14:11:24,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,928 ߳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-13 14:11:24,928 ߳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-13 14:11:24,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,930 ߳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-13 14:11:24,930 ߳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-13 14:11:24,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,932 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,933 ߳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-13 14:11:24,933 ߳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-13 14:11:24,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,934 ߳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-13 14:11:24,934 ߳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-13 14:11:24,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,936 ߳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-13 14:11:24,936 ߳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-13 14:11:24,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,939 ߳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-13 14:11:24,939 ߳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-13 14:11:24,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,940 ߳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-13 14:11:24,940 ߳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-13 14:11:24,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,943 ߳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-13 14:11:24,943 ߳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-13 14:11:24,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,945 ߳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-13 14:11:24,945 ߳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-13 14:11:24,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,946 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,946 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,947 ߳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-13 14:11:24,947 ߳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-13 14:11:24,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,949 ߳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-13 14:11:24,949 ߳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-13 14:11:24,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,951 ߳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-13 14:11:24,951 ߳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-13 14:11:24,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,953 ߳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-13 14:11:24,953 ߳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-13 14:11:24,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,955 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,955 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,955 ߳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-13 14:11:24,956 ߳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-13 14:11:24,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,958 ߳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-13 14:11:24,958 ߳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-13 14:11:24,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,960 ߳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-13 14:11:24,960 ߳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-13 14:11:24,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,962 ߳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-13 14:11:24,962 ߳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-13 14:11:24,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,964 ߳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-13 14:11:24,964 ߳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-13 14:11:24,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,966 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,966 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,967 ߳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-13 14:11:24,967 ߳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-13 14:11:24,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,968 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,968 ߳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-13 14:11:24,968 ߳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-13 14:11:24,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,973 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,974 ߳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-13 14:11:24,974 ߳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-13 14:11:24,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,975 ߳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-13 14:11:24,976 ߳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-13 14:11:24,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,977 ߳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-13 14:11:24,977 ߳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-13 14:11:24,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,980 ߳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-13 14:11:24,980 ߳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-13 14:11:24,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,981 ߳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-13 14:11:24,981 ߳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-13 14:11:24,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,984 ߳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-13 14:11:24,984 ߳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-13 14:11:24,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,986 ߳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-13 14:11:24,986 ߳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-13 14:11:24,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,988 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,988 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,988 ߳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-13 14:11:24,988 ߳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-13 14:11:24,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,991 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,991 ߳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-13 14:11:24,991 ߳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-13 14:11:24,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,993 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,993 ߳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-13 14:11:24,993 ߳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-13 14:11:24,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,996 ߳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-13 14:11:24,996 ߳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-13 14:11:24,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:24,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:24,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:24,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
-¼ʱ䣺2025-02-13 14:11:24,998 ߳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-13 14:11:24,998 ߳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-13 14:11:24,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,000 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,000 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,000 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,000 ߳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-13 14:11:25,000 ߳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-13 14:11:25,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,003 ߳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-13 14:11:25,003 ߳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-13 14:11:25,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,005 ߳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-13 14:11:25,005 ߳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-13 14:11:25,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,006 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,007 ߳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-13 14:11:25,007 ߳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-13 14:11:25,007 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,010 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,010 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,010 ߳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-13 14:11:25,010 ߳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-13 14:11:25,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,012 ߳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-13 14:11:25,012 ߳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-13 14:11:25,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,014 ߳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-13 14:11:25,014 ߳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-13 14:11:25,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,016 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,016 ߳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-13 14:11:25,016 ߳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-13 14:11:25,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,018 ߳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-13 14:11:25,018 ߳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-13 14:11:25,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,021 ߳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-13 14:11:25,021 ߳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-13 14:11:25,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,023 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,023 ߳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-13 14:11:25,023 ߳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-13 14:11:25,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,024 ߳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-13 14:11:25,024 ߳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-13 14:11:25,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,026 ߳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-13 14:11:25,026 ߳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-13 14:11:25,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,028 ߳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-13 14:11:25,028 ߳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-13 14:11:25,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,030 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,030 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,030 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,030 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,030 ߳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-13 14:11:25,030 ߳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-13 14:11:25,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,032 ߳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-13 14:11:25,033 ߳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-13 14:11:25,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,035 ߳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-13 14:11:25,035 ߳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-13 14:11:25,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,037 ߳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-13 14:11:25,037 ߳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-13 14:11:25,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,038 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,039 ߳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-13 14:11:25,039 ߳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-13 14:11:25,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,041 ߳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-13 14:11:25,041 ߳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-13 14:11:25,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,043 ߳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-13 14:11:25,043 ߳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-13 14:11:25,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,045 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,045 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,046 ߳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-13 14:11:25,046 ߳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-13 14:11:25,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,048 ߳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-13 14:11:25,048 ߳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-13 14:11:25,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,049 ߳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-13 14:11:25,050 ߳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-13 14:11:25,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,051 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,051 ߳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-13 14:11:25,052 ߳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-13 14:11:25,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,053 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,053 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,053 ߳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-13 14:11:25,054 ߳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-13 14:11:25,054 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,055 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,055 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,056 ߳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-13 14:11:25,056 ߳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-13 14:11:25,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,058 ߳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-13 14:11:25,058 ߳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-13 14:11:25,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,060 ߳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-13 14:11:25,060 ߳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-13 14:11:25,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,062 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,062 ߳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-13 14:11:25,063 ߳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-13 14:11:25,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,065 ߳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-13 14:11:25,065 ߳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-13 14:11:25,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,067 ߳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-13 14:11:25,067 ߳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-13 14:11:25,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,068 ߳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-13 14:11:25,068 ߳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-13 14:11:25,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,070 ߳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-13 14:11:25,070 ߳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-13 14:11:25,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,073 ߳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-13 14:11:25,073 ߳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-13 14:11:25,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,075 ߳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-13 14:11:25,075 ߳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-13 14:11:25,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,077 ߳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-13 14:11:25,077 ߳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-13 14:11:25,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,079 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,079 ߳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-13 14:11:25,079 ߳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-13 14:11:25,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,081 ߳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-13 14:11:25,081 ߳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-13 14:11:25,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,086 ߳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-13 14:11:25,086 ߳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-13 14:11:25,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,088 ߳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-13 14:11:25,088 ߳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-13 14:11:25,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,090 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,091 ߳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-13 14:11:25,091 ߳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-13 14:11:25,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,093 ߳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-13 14:11:25,093 ߳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-13 14:11:25,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,095 ߳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-13 14:11:25,095 ߳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-13 14:11:25,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,097 ߳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-13 14:11:25,097 ߳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-13 14:11:25,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,098 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,099 ߳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-13 14:11:25,099 ߳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-13 14:11:25,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,101 ߳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-13 14:11:25,101 ߳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-13 14:11:25,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,102 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,103 ߳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-13 14:11:25,103 ߳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-13 14:11:25,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,104 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,104 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,104 ߳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-13 14:11:25,104 ߳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-13 14:11:25,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,105 ߳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-13 14:11:25,105 ߳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-13 14:11:25,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,106 ߳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-13 14:11:25,106 ߳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-13 14:11:25,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,107 ߳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-13 14:11:25,107 ߳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-13 14:11:25,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,108 ߳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-13 14:11:25,108 ߳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-13 14:11:25,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,108 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,109 ߳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-13 14:11:25,109 ߳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-13 14:11:25,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,110 ߳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-13 14:11:25,110 ߳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-13 14:11:25,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,110 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,111 ߳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-13 14:11:25,111 ߳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-13 14:11:25,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,111 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 14:11:25,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,112 ߳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-13 14:11:25,112 ߳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-13 14:11:25,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,113 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 14:11:25,144 ߳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-13 14:11:25,144 ߳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-13 14:11:25,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 14:11:25,175 ߳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-13 14:11:25,175 ߳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-13 14:11:25,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 14:11:25,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,851 ߳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-13 15:11:35,875 ߳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-13 15:11:35,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,931 ߳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-13 15:11:35,931 ߳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-13 15:11:35,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,934 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,934 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,935 ߳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-13 15:11:35,935 ߳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-13 15:11:35,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,937 ߳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-13 15:11:35,938 ߳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-13 15:11:35,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,940 ߳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-13 15:11:35,940 ߳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-13 15:11:35,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,942 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,943 ߳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-13 15:11:35,943 ߳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-13 15:11:35,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,945 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,945 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,945 ߳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-13 15:11:35,945 ߳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-13 15:11:35,945 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,947 ߳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-13 15:11:35,947 ߳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-13 15:11:35,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,949 ߳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-13 15:11:35,949 ߳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-13 15:11:35,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,952 ߳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-13 15:11:35,952 ߳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-13 15:11:35,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,954 ߳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-13 15:11:35,954 ߳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-13 15:11:35,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,956 ߳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-13 15:11:35,956 ߳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-13 15:11:35,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,958 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,958 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,958 ߳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-13 15:11:35,958 ߳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-13 15:11:35,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,961 ߳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-13 15:11:35,961 ߳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-13 15:11:35,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:35,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,963 ߳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-13 15:11:35,963 ߳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-13 15:11:35,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 15:11:35,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 15:11:35,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
-¼ʱ䣺2025-02-13 15:11:35,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:35,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
-¼ʱ䣺2025-02-13 15:11:35,990 ߳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-13 15:11:35,990 ߳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-13 15:11:35,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:35,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 15:11:36,003 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 15:11:36,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
-¼ʱ䣺2025-02-13 15:11:36,009 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,010 ߳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-13 15:11:36,010 ߳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-13 15:11:36,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,013 ߳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-13 15:11:36,013 ߳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-13 15:11:36,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,015 ߳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-13 15:11:36,015 ߳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-13 15:11:36,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,017 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,018 ߳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-13 15:11:36,018 ߳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-13 15:11:36,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,019 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,020 ߳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-13 15:11:36,020 ߳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-13 15:11:36,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,022 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,022 ߳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-13 15:11:36,022 ߳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-13 15:11:36,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,025 ߳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-13 15:11:36,025 ߳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-13 15:11:36,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,027 ߳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-13 15:11:36,028 ߳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-13 15:11:36,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,029 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,029 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,030 ߳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-13 15:11:36,030 ߳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-13 15:11:36,030 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,032 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,032 ߳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-13 15:11:36,032 ߳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-13 15:11:36,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,034 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,035 ߳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-13 15:11:36,035 ߳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-13 15:11:36,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,037 ߳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-13 15:11:36,037 ߳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-13 15:11:36,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,039 ߳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-13 15:11:36,039 ߳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-13 15:11:36,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,041 ߳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-13 15:11:36,042 ߳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-13 15:11:36,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,044 ߳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-13 15:11:36,044 ߳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-13 15:11:36,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,046 ߳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-13 15:11:36,046 ߳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-13 15:11:36,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,048 ߳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-13 15:11:36,048 ߳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-13 15:11:36,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,050 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,050 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,050 ߳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-13 15:11:36,051 ߳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-13 15:11:36,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,052 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,053 ߳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-13 15:11:36,053 ߳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-13 15:11:36,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,059 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,059 ߳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-13 15:11:36,059 ߳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-13 15:11:36,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,061 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,062 ߳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-13 15:11:36,062 ߳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-13 15:11:36,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,064 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,064 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,064 ߳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-13 15:11:36,064 ߳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-13 15:11:36,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,066 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,066 ߳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-13 15:11:36,066 ߳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-13 15:11:36,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,068 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,069 ߳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-13 15:11:36,069 ߳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-13 15:11:36,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,070 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,070 ߳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-13 15:11:36,070 ߳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-13 15:11:36,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,073 ߳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-13 15:11:36,073 ߳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-13 15:11:36,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,074 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,074 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,075 ߳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-13 15:11:36,075 ߳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-13 15:11:36,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,076 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,077 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,077 ߳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-13 15:11:36,077 ߳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-13 15:11:36,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,078 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,079 ߳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-13 15:11:36,079 ߳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-13 15:11:36,079 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,081 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,081 ߳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-13 15:11:36,081 ߳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-13 15:11:36,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,083 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,083 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,083 ߳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-13 15:11:36,083 ߳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-13 15:11:36,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,085 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,085 ߳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-13 15:11:36,086 ߳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-13 15:11:36,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,087 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,088 ߳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-13 15:11:36,088 ߳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-13 15:11:36,088 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,089 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,089 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,090 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,090 ߳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-13 15:11:36,090 ߳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-13 15:11:36,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,092 ߳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-13 15:11:36,092 ߳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-13 15:11:36,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,094 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,094 ߳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-13 15:11:36,094 ߳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-13 15:11:36,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,096 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,097 ߳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-13 15:11:36,097 ߳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-13 15:11:36,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,098 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,099 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,099 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,099 ߳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-13 15:11:36,099 ߳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-13 15:11:36,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,101 ߳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-13 15:11:36,101 ߳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-13 15:11:36,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,103 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,103 ߳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-13 15:11:36,103 ߳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-13 15:11:36,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,105 ߳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-13 15:11:36,106 ߳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-13 15:11:36,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,107 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,108 ߳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-13 15:11:36,108 ߳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-13 15:11:36,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,109 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,109 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,110 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,110 ߳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-13 15:11:36,110 ߳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-13 15:11:36,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,112 ߳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-13 15:11:36,112 ߳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-13 15:11:36,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,114 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,114 ߳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-13 15:11:36,115 ߳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-13 15:11:36,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,116 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,117 ߳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-13 15:11:36,117 ߳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-13 15:11:36,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,119 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,119 ߳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-13 15:11:36,119 ߳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-13 15:11:36,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,121 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,122 ߳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-13 15:11:36,122 ߳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-13 15:11:36,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,124 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,124 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,124 ߳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-13 15:11:36,124 ߳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-13 15:11:36,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,126 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,126 ߳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-13 15:11:36,126 ߳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-13 15:11:36,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,128 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,129 ߳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-13 15:11:36,129 ߳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-13 15:11:36,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,131 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,131 ߳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-13 15:11:36,131 ߳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-13 15:11:36,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,133 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,133 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,133 ߳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-13 15:11:36,133 ߳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-13 15:11:36,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,135 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,136 ߳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-13 15:11:36,136 ߳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-13 15:11:36,136 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,137 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,138 ߳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-13 15:11:36,138 ߳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-13 15:11:36,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,140 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,140 ߳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-13 15:11:36,140 ߳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-13 15:11:36,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,142 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,142 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,142 ߳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-13 15:11:36,142 ߳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-13 15:11:36,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,144 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,144 ߳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-13 15:11:36,144 ߳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-13 15:11:36,144 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,147 ߳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-13 15:11:36,147 ߳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-13 15:11:36,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,149 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,149 ߳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-13 15:11:36,149 ߳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-13 15:11:36,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,152 ߳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-13 15:11:36,152 ߳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-13 15:11:36,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,154 ߳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-13 15:11:36,154 ߳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-13 15:11:36,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,156 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,156 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,156 ߳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-13 15:11:36,156 ߳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-13 15:11:36,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,158 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,158 ߳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-13 15:11:36,158 ߳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-13 15:11:36,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,160 ߳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-13 15:11:36,160 ߳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-13 15:11:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,162 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,163 ߳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-13 15:11:36,163 ߳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-13 15:11:36,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,164 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,164 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,165 ߳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-13 15:11:36,165 ߳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-13 15:11:36,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,167 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,167 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,167 ߳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-13 15:11:36,167 ߳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-13 15:11:36,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,169 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,169 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,169 ߳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-13 15:11:36,169 ߳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-13 15:11:36,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,171 ߳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-13 15:11:36,171 ߳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-13 15:11:36,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,173 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,173 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,173 ߳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-13 15:11:36,174 ߳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-13 15:11:36,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,175 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,176 ߳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-13 15:11:36,176 ߳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-13 15:11:36,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,177 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,177 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,178 ߳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-13 15:11:36,178 ߳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-13 15:11:36,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,179 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,180 ߳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-13 15:11:36,180 ߳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-13 15:11:36,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,182 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,182 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,182 ߳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-13 15:11:36,182 ߳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-13 15:11:36,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,183 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,184 ߳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-13 15:11:36,184 ߳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-13 15:11:36,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,186 ߳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-13 15:11:36,186 ߳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-13 15:11:36,187 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,188 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,189 ߳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-13 15:11:36,189 ߳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-13 15:11:36,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,191 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,191 ߳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-13 15:11:36,191 ߳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-13 15:11:36,191 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,193 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,194 ߳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-13 15:11:36,194 ߳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-13 15:11:36,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,197 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,197 ߳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-13 15:11:36,197 ߳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-13 15:11:36,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,199 ߳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-13 15:11:36,199 ߳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-13 15:11:36,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,200 ߳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-13 15:11:36,200 ߳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-13 15:11:36,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,202 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,207 ߳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-13 15:11:36,207 ߳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-13 15:11:36,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,209 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,209 ߳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-13 15:11:36,209 ߳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-13 15:11:36,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,211 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,211 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,211 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,211 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,211 ߳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-13 15:11:36,212 ߳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-13 15:11:36,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,213 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,213 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,214 ߳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-13 15:11:36,214 ߳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-13 15:11:36,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,215 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,215 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,216 ߳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-13 15:11:36,216 ߳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-13 15:11:36,216 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,217 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,217 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,218 ߳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-13 15:11:36,218 ߳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-13 15:11:36,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,219 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,220 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,220 ߳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-13 15:11:36,220 ߳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-13 15:11:36,220 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,222 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,222 ߳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-13 15:11:36,222 ߳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-13 15:11:36,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,223 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,224 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,224 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,224 ߳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-13 15:11:36,224 ߳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-13 15:11:36,224 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,225 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,226 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,226 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,226 ߳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-13 15:11:36,226 ߳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-13 15:11:36,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,228 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,228 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,228 ߳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-13 15:11:36,228 ߳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-13 15:11:36,229 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,230 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,231 ߳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-13 15:11:36,231 ߳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-13 15:11:36,231 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,232 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,232 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,232 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,232 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,233 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,233 ߳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-13 15:11:36,233 ߳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-13 15:11:36,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,235 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,235 ߳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-13 15:11:36,235 ߳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-13 15:11:36,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,237 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,237 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,237 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,237 ߳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-13 15:11:36,237 ߳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-13 15:11:36,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,239 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,239 ߳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-13 15:11:36,240 ߳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-13 15:11:36,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,241 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,241 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,242 ߳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-13 15:11:36,242 ߳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-13 15:11:36,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,243 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,243 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,244 ߳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-13 15:11:36,244 ߳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-13 15:11:36,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,245 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,245 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,245 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,245 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,246 ߳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-13 15:11:36,246 ߳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-13 15:11:36,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,247 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,247 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,247 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,248 ߳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-13 15:11:36,248 ߳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-13 15:11:36,248 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,249 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,250 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,250 ߳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-13 15:11:36,250 ߳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-13 15:11:36,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,252 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,252 ߳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-13 15:11:36,252 ߳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-13 15:11:36,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,254 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,254 ߳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-13 15:11:36,254 ߳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-13 15:11:36,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,256 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,257 ߳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-13 15:11:36,257 ߳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-13 15:11:36,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,259 ߳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-13 15:11:36,259 ߳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-13 15:11:36,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,261 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,261 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,261 ߳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-13 15:11:36,261 ߳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-13 15:11:36,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,261 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,262 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,262 ߳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-13 15:11:36,262 ߳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-13 15:11:36,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,264 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,264 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,264 ߳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-13 15:11:36,264 ߳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-13 15:11:36,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,266 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,266 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,266 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,266 ߳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-13 15:11:36,266 ߳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-13 15:11:36,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,268 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,268 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,268 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,269 ߳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-13 15:11:36,269 ߳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-13 15:11:36,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,270 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,270 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,271 ߳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-13 15:11:36,271 ߳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-13 15:11:36,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,272 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,273 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,273 ߳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-13 15:11:36,273 ߳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-13 15:11:36,273 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,274 ߳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-13 15:11:36,274 ߳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-13 15:11:36,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,275 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,276 ߳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-13 15:11:36,276 ߳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-13 15:11:36,276 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,276 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,276 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,276 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,277 ߳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-13 15:11:36,277 ߳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-13 15:11:36,277 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,278 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,278 ߳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-13 15:11:36,278 ߳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-13 15:11:36,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,280 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,280 ߳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-13 15:11:36,281 ߳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-13 15:11:36,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,282 ߳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-13 15:11:36,282 ߳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-13 15:11:36,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,284 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,284 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,284 ߳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-13 15:11:36,284 ߳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-13 15:11:36,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,286 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,287 ߳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-13 15:11:36,287 ߳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-13 15:11:36,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,288 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,288 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,289 ߳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-13 15:11:36,289 ߳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-13 15:11:36,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,291 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,291 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,291 ߳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-13 15:11:36,291 ߳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-13 15:11:36,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,293 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,293 ߳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-13 15:11:36,294 ߳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-13 15:11:36,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,295 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,296 ߳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-13 15:11:36,296 ߳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-13 15:11:36,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,298 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,298 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,298 ߳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-13 15:11:36,298 ߳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-13 15:11:36,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,300 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,300 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,300 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,301 ߳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-13 15:11:36,301 ߳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-13 15:11:36,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,303 ߳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-13 15:11:36,303 ߳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-13 15:11:36,303 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,304 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,304 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,305 ߳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-13 15:11:36,305 ߳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-13 15:11:36,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,307 ߳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-13 15:11:36,307 ߳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-13 15:11:36,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,308 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,309 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,309 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,309 ߳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-13 15:11:36,309 ߳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-13 15:11:36,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,311 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,311 ߳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-13 15:11:36,311 ߳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-13 15:11:36,311 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,313 ߳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-13 15:11:36,313 ߳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-13 15:11:36,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,315 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,315 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,316 ߳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-13 15:11:36,316 ߳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-13 15:11:36,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,318 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,318 ߳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-13 15:11:36,318 ߳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-13 15:11:36,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,321 ߳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-13 15:11:36,321 ߳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-13 15:11:36,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,322 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,323 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,323 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,323 ߳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-13 15:11:36,323 ߳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-13 15:11:36,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,324 ߳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-13 15:11:36,324 ߳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-13 15:11:36,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,326 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,326 ߳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-13 15:11:36,327 ߳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-13 15:11:36,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,328 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,329 ߳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-13 15:11:36,329 ߳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-13 15:11:36,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,331 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,331 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,331 ߳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-13 15:11:36,331 ߳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-13 15:11:36,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,333 ߳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-13 15:11:36,333 ߳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-13 15:11:36,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,335 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,336 ߳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-13 15:11:36,336 ߳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-13 15:11:36,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,338 ߳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-13 15:11:36,338 ߳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-13 15:11:36,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,340 ߳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-13 15:11:36,341 ߳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-13 15:11:36,341 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,343 ߳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-13 15:11:36,343 ߳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-13 15:11:36,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,348 ߳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-13 15:11:36,348 ߳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-13 15:11:36,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,350 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,350 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,351 ߳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-13 15:11:36,351 ߳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-13 15:11:36,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,353 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,353 ߳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-13 15:11:36,353 ߳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-13 15:11:36,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,355 ߳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-13 15:11:36,355 ߳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-13 15:11:36,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,357 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,357 ߳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-13 15:11:36,357 ߳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-13 15:11:36,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,359 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,359 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,359 ߳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-13 15:11:36,359 ߳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-13 15:11:36,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,361 ߳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-13 15:11:36,362 ߳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-13 15:11:36,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,363 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,364 ߳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-13 15:11:36,364 ߳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-13 15:11:36,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,366 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,366 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,366 ߳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-13 15:11:36,366 ߳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-13 15:11:36,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,368 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,368 ߳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-13 15:11:36,368 ߳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-13 15:11:36,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,370 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,370 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,370 ߳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-13 15:11:36,370 ߳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-13 15:11:36,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,372 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,372 ߳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-13 15:11:36,372 ߳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-13 15:11:36,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,374 ߳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-13 15:11:36,374 ߳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-13 15:11:36,374 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,375 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,375 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,376 ߳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-13 15:11:36,376 ߳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-13 15:11:36,376 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,378 ߳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-13 15:11:36,378 ߳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-13 15:11:36,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,381 ߳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-13 15:11:36,381 ߳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-13 15:11:36,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,383 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,383 ߳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-13 15:11:36,383 ߳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-13 15:11:36,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,386 ߳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-13 15:11:36,386 ߳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-13 15:11:36,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,388 ߳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-13 15:11:36,388 ߳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-13 15:11:36,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,390 ߳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-13 15:11:36,390 ߳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-13 15:11:36,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,392 ߳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-13 15:11:36,392 ߳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-13 15:11:36,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,394 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,394 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,395 ߳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-13 15:11:36,395 ߳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-13 15:11:36,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,397 ߳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-13 15:11:36,397 ߳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-13 15:11:36,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,399 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,399 ߳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-13 15:11:36,399 ߳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-13 15:11:36,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,401 ߳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-13 15:11:36,401 ߳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-13 15:11:36,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,403 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,403 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,404 ߳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-13 15:11:36,404 ߳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-13 15:11:36,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,406 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,406 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,406 ߳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-13 15:11:36,406 ߳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-13 15:11:36,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,408 ߳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-13 15:11:36,409 ߳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-13 15:11:36,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,409 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,409 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,410 ߳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-13 15:11:36,410 ߳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-13 15:11:36,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,410 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,410 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,411 ߳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-13 15:11:36,411 ߳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-13 15:11:36,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,412 ߳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-13 15:11:36,412 ߳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-13 15:11:36,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,413 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,413 ߳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-13 15:11:36,413 ߳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-13 15:11:36,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,414 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,414 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,414 ߳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-13 15:11:36,414 ߳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-13 15:11:36,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,415 ߳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-13 15:11:36,415 ߳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-13 15:11:36,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,416 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,417 ߳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-13 15:11:36,417 ߳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-13 15:11:36,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,417 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,418 ߳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-13 15:11:36,418 ߳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-13 15:11:36,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
-¼ʱ䣺2025-02-13 15:11:36,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,419 ߳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-13 15:11:36,419 ߳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-13 15:11:36,419 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
-¼ʱ䣺2025-02-13 15:11:36,489 ߳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-13 15:11:36,489 ߳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-13 15:11:36,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
-¼ʱ䣺2025-02-13 15:11:36,534 ߳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-13 15:11:36,534 ߳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-13 15:11:36,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
-¼ʱ䣺2025-02-13 15:11:36,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:32:14,012 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unable to connect to any of the specified MySQL hosts.
+¼ʱ䣺2025-02-13 08:33:21,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:21,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:21,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:21,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:21,273 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:21,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:33:34,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 08:33:39,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:39,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:39,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:39,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:39,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:39,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:33:39,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:33:40,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
+¼ʱ䣺2025-02-13 08:33:41,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:41,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:41,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:41,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:41,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:41,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:33:41,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:33:42,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
+¼ʱ䣺2025-02-13 08:33:42,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:42,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:33:42,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:42,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:42,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:33:42,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:33:42,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:33:43,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
+¼ʱ䣺2025-02-13 08:34:02,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:02,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:02,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:02,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:02,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:02,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:02,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:03,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
+¼ʱ䣺2025-02-13 08:34:03,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:03,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:03,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:03,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:03,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:03,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:03,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:04,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:04,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:04,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:04,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:04,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:04,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:04,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:04,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,862 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-13 08:34:06,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:06,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,229 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,235 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,245 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
+¼ʱ䣺2025-02-13 08:34:07,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:34:07,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:34:07,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:34:07,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:34:07,775 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:37:29,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:37:29,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:37:29,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:37:29,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:37:29,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:37:29,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:37:29,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 08:37:29,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:37:29,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:37:29,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:37:29,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:37:29,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:37:29,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:37:56,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:37:56,828 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:39:23,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:39:23,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:39:23,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 08:39:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:39:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:39:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:39:23,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:39:23,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:39:23,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:39:23,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:39:23,628 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:41:47,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:41:47,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:41:47,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:41:47,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:41:47,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:41:47,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:41:47,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:09,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:54:09,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:54:09,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:09,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:09,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:30,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:54:35,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 08:54:35,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:54:35,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:54:35,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:35,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:35,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:54:35,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:56:12,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:56:12,114 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:56:54,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:56:54,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:56:54,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:56:56,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:56:56,728 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 08:57:30,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:57:30,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:57:30,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 08:57:32,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:57:32,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 08:57:32,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:32,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 08:57:32,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 09:52:49,971 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
+¼ʱ䣺2025-02-13 10:02:14,744 ߳ID:[9]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:02:14,763 ߳ID:[9]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:02:14,763 ߳ID:[9]- :MySQLDAL :GetMaxTimeByTableName Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:20:50,513 ߳ID:[8]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:20:51,854 ߳ID:[8]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:20:51,854 ߳ID:[8]- :MySQLDAL :GetMaxTimeByTableName Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:23:32,811 ߳ID:[7]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:23:34,404 ߳ID:[7]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:23:34,404 ߳ID:[7]- :MySQLDAL :GetMaxTimeByTableName Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:25:37,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:25:37,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:25:37,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:37,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:37,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:37,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 10:25:37,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 10:25:37,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:25:37,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:25:37,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:37,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:37,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:37,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 10:25:39,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:25:39,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:25:39,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:39,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:25:39,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:09:17,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:09:17,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 14:09:17,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:09:17,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:09:17,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:09:17,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:09:17,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:09:22,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 14:09:22,753 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 14:13:33,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:13:33,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:13:33,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:13:33,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:13:33,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:13:33,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 14:13:33,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:13:33,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:13:33,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:13:38,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 14:13:38,147 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 14:15:02,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:15:02,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:15:02,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:15:02,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:15:02,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:15:02,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 14:15:02,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:15:02,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:15:02,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:15:02,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:15:02,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:15:02,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:15:02,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:16:49,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:16:49,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:16:49,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:49,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:49,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:49,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 14:16:49,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:16:49,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:16:49,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:16:49,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:49,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:49,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:49,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:16:59,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:16:59,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:16:59,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:59,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:16:59,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 14:17:10,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:17:13,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:17:13,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:17:13,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:13,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:17:13,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:20:36,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
+¼ʱ䣺2025-02-13 14:20:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:20:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:20:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:20:36,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:20:36,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:20:36,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:20:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:20:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:20:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:20:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:20:36,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:46,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 14:39:46,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:46,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:46,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:46,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:46,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:46,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:39:46,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:46,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:46,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:46,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:46,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:58,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 14:39:58,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:58,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:58,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:58,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:58,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:58,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:39:58,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:58,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:39:58,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:58,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:39:58,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:09,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:48:09,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:09,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:09,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:09,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:09,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:09,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:48:09,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:09,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:09,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:09,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:09,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:14,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:48:14,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:14,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:14,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:14,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:14,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:14,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:48:22,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-13 14:48:22,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:22,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:22,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:22,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:22,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:22,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:48:22,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-13 14:48:22,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:22,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:22,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:22,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:22,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:22,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:48:25,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
+¼ʱ䣺2025-02-13 14:48:25,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:25,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:25,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:25,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:25,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:25,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:48:27,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:48:27,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:27,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:48:27,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:27,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:27,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:48:27,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:09,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:09,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:09,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:09,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:09,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:10,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:10,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:10,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:10,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:10,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:10,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:10,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:10,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:10,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:10,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:10,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:10,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:11,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:11,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:11,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:11,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,474 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:49:12,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:49:12,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:52:01,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 14:52:01,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:01,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:01,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:52:01,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:01,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:01,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 14:52:01,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:01,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:01,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:01,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:52:03,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-13 14:52:03,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:03,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:03,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:03,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:03,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 14:52:06,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 14:52:06,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:06,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 14:52:06,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:06,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:06,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 14:52:06,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:02:33,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:02:33,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:02:33,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:02:33,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:02:33,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:02:33,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:02:33,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:02:33,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:02:33,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:02:33,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:02:33,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:05:23,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:05:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:05:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:05:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:05:26,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:05:26,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:05:26,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:26,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:26,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:26,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:05:26,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:05:26,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:05:26,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:26,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:26,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:05:26,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:16:37,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:16:37,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:16:37,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:16:37,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:37,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:37,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:37,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:16:37,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:16:37,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:16:37,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:37,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:37,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:38,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:16:38,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:16:38,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:16:38,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:38,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:38,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:16:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:19:59,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:19:59,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:19:59,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:19:59,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:19:59,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:19:59,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:19:59,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:19:59,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:19:59,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:19:59,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:19:59,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:06,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:32:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:06,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:06,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:06,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:06,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:06,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:06,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:06,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:07,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:32:07,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:07,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:07,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:07,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:07,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:07,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:44,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:44,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:44,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:44,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:32:44,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:44,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:44,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:44,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:45,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:32:45,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:45,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:32:45,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:45,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:32:45,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:45,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:45,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:32:45,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:32:45,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:32:45,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:32:45,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:40:26,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:40:26,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:26,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:26,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:40:26,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:26,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:26,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:26,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:40:35,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
+¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:40:35,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:35,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:35,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:40:35,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:35,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:44:03,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 15:44:03,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:03,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:03,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:44:03,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:03,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:03,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:44:03,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:03,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:03,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:03,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:44:05,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
+¼ʱ䣺2025-02-13 15:44:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:05,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:05,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:05,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:44:08,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 15:44:08,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:08,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:44:08,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:08,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:08,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:44:08,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:45:41,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 15:45:41,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:45:41,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-13 15:45:41,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:45:41,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 15:45:41,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:45:41,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 15:45:41,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 15:49:50,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:49:50,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:49:50,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:50,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:50,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:53,527 ߳ID:[1]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
+¼ʱ䣺2025-02-13 15:49:56,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:49:56,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:49:56,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:56,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:56,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:56,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:49:56,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 15:49:56,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:56,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 15:49:56,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
diff --git a/dll/ErrorLog/20250213.txt20250213.txt b/dll/ErrorLog/20250213.txt20250213.txt
new file mode 100644
index 0000000..2b5ce8b
--- /dev/null
+++ b/dll/ErrorLog/20250213.txt20250213.txt
@@ -0,0 +1,33 @@
+¼ʱ䣺2025-02-13 10:00:47,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:00:47,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:00:47,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:00:47,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:00:47,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:00:47,395 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 10:00:47,395 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 10:00:47,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:00:47,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:00:47,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:00:47,398 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:00:47,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:00:47,399 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 10:00:50,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:00:50,661 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
+¼ʱ䣺2025-02-13 10:01:12,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:01:12,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:01:12,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:12,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:12,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:12,617 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-13 10:01:12,617 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-13 10:01:12,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:01:12,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:01:12,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:12,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:12,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:12,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-13 10:01:15,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:01:15,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
+¼ʱ䣺2025-02-13 10:01:15,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:15,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-13 10:01:15,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
diff --git a/dll/Newtonsoft.Json.dll b/dll/Newtonsoft.Json.dll
index 74d63cf..55d537f 100644
Binary files a/dll/Newtonsoft.Json.dll and b/dll/Newtonsoft.Json.dll differ
diff --git a/dll/ServiceLog/20250213.txt b/dll/ServiceLog/20250213.txt
new file mode 100644
index 0000000..f756fca
--- /dev/null
+++ b/dll/ServiceLog/20250213.txt
@@ -0,0 +1,14 @@
+¼ʱ䣺2025-02-13 09:50:13,804 ߳ID:[1]- Ϣ:SyncServiceOperation :Start Ϣ:SyncSerivce:
+¼ʱ䣺2025-02-13 10:02:14,564 ߳ID:[9]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ
+¼ʱ䣺2025-02-13 10:02:14,565 ߳ID:[9]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:־
+¼ʱ䣺2025-02-13 10:02:14,600 ߳ID:[9]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ1
+¼ʱ䣺2025-02-13 10:02:14,609 ߳ID:[9]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ֶβѯɸѡ
+¼ʱ䣺2025-02-13 10:02:14,765 ߳ID:[9]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱʧ,ԭ
+¼ʱ䣺2025-02-13 10:20:50,476 ߳ID:[8]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ
+¼ʱ䣺2025-02-13 10:20:50,479 ߳ID:[8]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ1
+¼ʱ䣺2025-02-13 10:20:50,481 ߳ID:[8]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ֶβѯɸѡ
+¼ʱ䣺2025-02-13 10:20:51,854 ߳ID:[8]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱʧ,ԭ
+¼ʱ䣺2025-02-13 10:23:30,585 ߳ID:[7]- Ϣ:SyncServiceOperation :timerSync_Elapsed Ϣ:ʱ
+¼ʱ䣺2025-02-13 10:23:30,586 ߳ID:[7]- Ϣ:SyncServiceOperation :ReadSyncInstruments Ϣ:ȡϢ1
+¼ʱ䣺2025-02-13 10:23:30,586 ߳ID:[7]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ֶβѯɸѡ
+¼ʱ䣺2025-02-13 10:23:34,404 ߳ID:[7]- Ϣ:SyncServiceOperation :RunSyncByInstrument Ϣ:ȡϴִʱʧ,ԭ
diff --git a/dll/SyncLocalDAL.dll b/dll/SyncLocalDAL.dll
index b3a0059..4f3ec9d 100644
Binary files a/dll/SyncLocalDAL.dll and b/dll/SyncLocalDAL.dll differ
diff --git a/dll/WF-ChangeGUID.exe b/dll/WF-ChangeGUID.exe
index 4ee1e87..425e9bf 100644
Binary files a/dll/WF-ChangeGUID.exe and b/dll/WF-ChangeGUID.exe differ
diff --git a/dll/WF-ChangeGUID.exe.config b/dll/WF-ChangeGUID.exe.config
index 899c9bd..b8bf9e1 100644
--- a/dll/WF-ChangeGUID.exe.config
+++ b/dll/WF-ChangeGUID.exe.config
@@ -1,7 +1,7 @@
-
+
-
-
+
+
-
\ No newline at end of file
+
diff --git a/dll/activation.config b/dll/activation.config
new file mode 100644
index 0000000..9ee4c79
--- /dev/null
+++ b/dll/activation.config
@@ -0,0 +1 @@
+BFEBFBFF000B06A2_7413EA0CEB72_7613EA0CEB71_7413EA0CEB71_7413EA0CEB75
\ No newline at end of file
diff --git a/dll23.zip b/dll23.zip
deleted file mode 100644
index 4014560..0000000
Binary files a/dll23.zip and /dev/null differ