CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20250219.txt 414KB

4 months ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613
  1. ¼ʱ䣺2025-02-19 09:27:08,234 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2. ¼ʱ䣺2025-02-19 09:27:08,271 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  3. ¼ʱ䣺2025-02-19 09:27:10,689 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  4. ¼ʱ䣺2025-02-19 09:27:10,697 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  5. ¼ʱ䣺2025-02-19 09:27:12,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  6. ¼ʱ䣺2025-02-19 09:27:12,641 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  7. ¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  8. ¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  9. ¼ʱ䣺2025-02-19 09:28:03,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  10. ¼ʱ䣺2025-02-19 09:28:03,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  11. ¼ʱ䣺2025-02-19 09:28:03,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  12. ¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
  13. ¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  14. ¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  15. ¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  16. ¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  17. ¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  18. ¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  19. ¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  20. ¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
  21. ¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
  22. ¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  23. ¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  24. ¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
  25. ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
  26. ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
  27. ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
  28. ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
  29. ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
  30. ¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  31. ¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  32. ¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
  33. ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
  34. ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
  35. ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
  36. ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
  37. ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
  38. ¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  39. ¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  40. ¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
  41. ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
  42. ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
  43. ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
  44. ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
  45. ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
  46. ¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  47. ¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  48. ¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
  49. ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
  50. ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
  51. ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
  52. ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
  53. ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
  54. ¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  55. ¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  56. ¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
  57. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
  58. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
  59. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
  60. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
  61. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
  62. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  63. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  64. ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
  65. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
  66. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
  67. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
  68. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
  69. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
  70. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  71. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  72. ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
  73. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
  74. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
  75. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
  76. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
  77. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
  78. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  79. ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  80. ¼ʱ䣺2025-02-19 09:28:03,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
  81. ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
  82. ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
  83. ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
  84. ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
  85. ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
  86. ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  87. ¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  88. ¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
  89. ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
  90. ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
  91. ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
  92. ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
  93. ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
  94. ¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  95. ¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  96. ¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
  97. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
  98. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
  99. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
  100. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
  101. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
  102. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  103. ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  104. ¼ʱ䣺2025-02-19 09:28:03,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
  105. ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
  106. ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
  107. ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
  108. ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
  109. ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
  110. ¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  111. ¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  112. ¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
  113. ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
  114. ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
  115. ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
  116. ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
  117. ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
  118. ¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  119. ¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  120. ¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
  121. ¼ʱ䣺2025-02-19 09:28:03,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
  122. ¼ʱ䣺2025-02-19 09:28:03,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
  123. ¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
  124. ¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
  125. ¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
  126. ¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  127. ¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  128. ¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
  129. ¼ʱ䣺2025-02-19 09:28:03,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
  130. ¼ʱ䣺2025-02-19 09:28:03,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
  131. ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
  132. ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
  133. ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
  134. ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  135. ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  136. ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
  137. ¼ʱ䣺2025-02-19 09:28:03,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
  138. ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
  139. ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
  140. ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
  141. ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
  142. ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  143. ¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  144. ¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
  145. ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
  146. ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
  147. ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
  148. ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
  149. ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
  150. ¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  151. ¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  152. ¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
  153. ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
  154. ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
  155. ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
  156. ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
  157. ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
  158. ¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  159. ¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  160. ¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
  161. ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
  162. ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
  163. ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
  164. ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
  165. ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
  166. ¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  167. ¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  168. ¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
  169. ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
  170. ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
  171. ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
  172. ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
  173. ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
  174. ¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  175. ¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  176. ¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
  177. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
  178. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
  179. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
  180. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
  181. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
  182. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  183. ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  184. ¼ʱ䣺2025-02-19 09:28:03,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
  185. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
  186. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
  187. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
  188. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
  189. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
  190. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  191. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  192. ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
  193. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
  194. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
  195. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
  196. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
  197. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
  198. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  199. ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  200. ¼ʱ䣺2025-02-19 09:28:03,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
  201. ¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
  202. ¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
  203. ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
  204. ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
  205. ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
  206. ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  207. ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  208. ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
  209. ¼ʱ䣺2025-02-19 09:28:03,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
  210. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
  211. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
  212. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
  213. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
  214. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  215. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  216. ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
  217. ¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
  218. ¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
  219. ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
  220. ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
  221. ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
  222. ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  223. ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  224. ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
  225. ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
  226. ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
  227. ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
  228. ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
  229. ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
  230. ¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  231. ¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  232. ¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
  233. ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
  234. ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
  235. ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
  236. ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
  237. ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
  238. ¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  239. ¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  240. ¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
  241. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
  242. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
  243. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
  244. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
  245. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
  246. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  247. ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  248. ¼ʱ䣺2025-02-19 09:28:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
  249. ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
  250. ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
  251. ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
  252. ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
  253. ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
  254. ¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  255. ¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  256. ¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
  257. ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
  258. ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
  259. ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
  260. ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
  261. ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
  262. ¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  263. ¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  264. ¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
  265. ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
  266. ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
  267. ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
  268. ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
  269. ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
  270. ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  271. ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  272. ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
  273. ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
  274. ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
  275. ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  276. ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
  277. ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
  278. ¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  279. ¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  280. ¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
  281. ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
  282. ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
  283. ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
  284. ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
  285. ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
  286. ¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  287. ¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  288. ¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
  289. ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
  290. ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
  291. ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
  292. ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
  293. ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
  294. ¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  295. ¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  296. ¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
  297. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
  298. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
  299. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
  300. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
  301. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
  302. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  303. ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  304. ¼ʱ䣺2025-02-19 09:28:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
  305. ¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
  306. ¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
  307. ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
  308. ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
  309. ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
  310. ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  311. ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  312. ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
  313. ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
  314. ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
  315. ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
  316. ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
  317. ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
  318. ¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  319. ¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  320. ¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
  321. ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
  322. ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
  323. ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
  324. ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
  325. ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
  326. ¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  327. ¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  328. ¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
  329. ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
  330. ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
  331. ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
  332. ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
  333. ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
  334. ¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  335. ¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  336. ¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
  337. ¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
  338. ¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
  339. ¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
  340. ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
  341. ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
  342. ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  343. ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  344. ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
  345. ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
  346. ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
  347. ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
  348. ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
  349. ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
  350. ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  351. ¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  352. ¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
  353. ¼ʱ䣺2025-02-19 09:28:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
  354. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
  355. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
  356. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
  357. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
  358. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  359. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  360. ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
  361. ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
  362. ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
  363. ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
  364. ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
  365. ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
  366. ¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  367. ¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  368. ¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
  369. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
  370. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
  371. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
  372. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
  373. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
  374. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  375. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  376. ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
  377. ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
  378. ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
  379. ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
  380. ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
  381. ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
  382. ¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  383. ¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  384. ¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
  385. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
  386. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
  387. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
  388. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
  389. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
  390. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  391. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  392. ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
  393. ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
  394. ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
  395. ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
  396. ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
  397. ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
  398. ¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  399. ¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  400. ¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
  401. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
  402. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
  403. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
  404. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
  405. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
  406. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  407. ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  408. ¼ʱ䣺2025-02-19 09:28:03,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
  409. ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
  410. ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
  411. ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
  412. ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
  413. ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
  414. ¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  415. ¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  416. ¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
  417. ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
  418. ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
  419. ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
  420. ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
  421. ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
  422. ¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  423. ¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  424. ¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
  425. ¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
  426. ¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
  427. ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
  428. ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
  429. ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
  430. ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  431. ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  432. ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
  433. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
  434. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
  435. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
  436. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
  437. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
  438. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  439. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  440. ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
  441. ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
  442. ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
  443. ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
  444. ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
  445. ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
  446. ¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  447. ¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  448. ¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
  449. ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
  450. ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
  451. ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
  452. ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
  453. ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
  454. ¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  455. ¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  456. ¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
  457. ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
  458. ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
  459. ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
  460. ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
  461. ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
  462. ¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  463. ¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  464. ¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
  465. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
  466. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
  467. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
  468. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
  469. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
  470. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  471. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  472. ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
  473. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
  474. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
  475. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
  476. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
  477. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
  478. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  479. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  480. ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
  481. ¼ʱ䣺2025-02-19 09:28:03,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
  482. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
  483. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
  484. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
  485. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
  486. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  487. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  488. ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
  489. ¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
  490. ¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
  491. ¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
  492. ¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
  493. ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
  494. ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  495. ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  496. ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
  497. ¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
  498. ¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
  499. ¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
  500. ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
  501. ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
  502. ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  503. ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  504. ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
  505. ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
  506. ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
  507. ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
  508. ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
  509. ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
  510. ¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  511. ¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  512. ¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
  513. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
  514. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
  515. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
  516. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
  517. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
  518. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  519. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  520. ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
  521. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
  522. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
  523. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
  524. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
  525. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
  526. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  527. ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  528. ¼ʱ䣺2025-02-19 09:28:03,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
  529. ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
  530. ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
  531. ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
  532. ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
  533. ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
  534. ¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  535. ¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  536. ¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
  537. ¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
  538. ¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
  539. ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
  540. ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
  541. ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
  542. ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  543. ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  544. ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
  545. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
  546. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
  547. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
  548. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
  549. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
  550. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  551. ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  552. ¼ʱ䣺2025-02-19 09:28:03,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
  553. ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
  554. ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
  555. ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
  556. ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
  557. ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
  558. ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  559. ¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  560. ¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
  561. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
  562. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
  563. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
  564. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
  565. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
  566. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  567. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  568. ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
  569. ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
  570. ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
  571. ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
  572. ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
  573. ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
  574. ¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  575. ¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  576. ¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
  577. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
  578. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
  579. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
  580. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
  581. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
  582. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  583. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  584. ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
  585. ¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
  586. ¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
  587. ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
  588. ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
  589. ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
  590. ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  591. ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  592. ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
  593. ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
  594. ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
  595. ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
  596. ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
  597. ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
  598. ¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  599. ¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  600. ¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
  601. ¼ʱ䣺2025-02-19 09:28:03,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
  602. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
  603. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
  604. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
  605. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
  606. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  607. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  608. ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
  609. ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
  610. ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
  611. ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
  612. ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
  613. ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
  614. ¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  615. ¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  616. ¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
  617. ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
  618. ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
  619. ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
  620. ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
  621. ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
  622. ¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  623. ¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  624. ¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
  625. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
  626. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
  627. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
  628. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
  629. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
  630. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  631. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  632. ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
  633. ¼ʱ䣺2025-02-19 09:28:03,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
  634. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
  635. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
  636. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
  637. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
  638. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  639. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  640. ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
  641. ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
  642. ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
  643. ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
  644. ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
  645. ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
  646. ¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  647. ¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  648. ¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
  649. ¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
  650. ¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
  651. ¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
  652. ¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
  653. ¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
  654. ¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  655. ¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  656. ¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
  657. ¼ʱ䣺2025-02-19 09:28:03,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
  658. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
  659. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
  660. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
  661. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
  662. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  663. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  664. ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
  665. ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
  666. ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
  667. ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
  668. ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
  669. ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
  670. ¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  671. ¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  672. ¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
  673. ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
  674. ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
  675. ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
  676. ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
  677. ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
  678. ¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  679. ¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  680. ¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
  681. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
  682. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
  683. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
  684. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
  685. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
  686. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  687. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  688. ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
  689. ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
  690. ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
  691. ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
  692. ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
  693. ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
  694. ¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  695. ¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  696. ¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
  697. ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
  698. ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
  699. ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
  700. ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
  701. ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
  702. ¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  703. ¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  704. ¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
  705. ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
  706. ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
  707. ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
  708. ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
  709. ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
  710. ¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  711. ¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  712. ¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
  713. ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
  714. ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
  715. ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
  716. ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
  717. ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
  718. ¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  719. ¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  720. ¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
  721. ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
  722. ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
  723. ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
  724. ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
  725. ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
  726. ¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  727. ¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  728. ¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
  729. ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
  730. ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
  731. ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
  732. ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
  733. ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
  734. ¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  735. ¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  736. ¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
  737. ¼ʱ䣺2025-02-19 09:28:03,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
  738. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
  739. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
  740. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
  741. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
  742. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  743. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  744. ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
  745. ¼ʱ䣺2025-02-19 09:28:03,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
  746. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
  747. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
  748. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
  749. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
  750. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  751. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  752. ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
  753. ¼ʱ䣺2025-02-19 09:28:03,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
  754. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
  755. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
  756. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
  757. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
  758. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  759. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  760. ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
  761. ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
  762. ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
  763. ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
  764. ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
  765. ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
  766. ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  767. ¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  768. ¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
  769. ¼ʱ䣺2025-02-19 09:28:03,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
  770. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
  771. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
  772. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
  773. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
  774. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  775. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  776. ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
  777. ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
  778. ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
  779. ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
  780. ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
  781. ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
  782. ¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  783. ¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  784. ¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
  785. ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
  786. ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
  787. ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
  788. ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
  789. ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
  790. ¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  791. ¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  792. ¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
  793. ¼ʱ䣺2025-02-19 09:28:03,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
  794. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
  795. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
  796. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
  797. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
  798. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  799. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  800. ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
  801. ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
  802. ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
  803. ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
  804. ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
  805. ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
  806. ¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  807. ¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  808. ¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
  809. ¼ʱ䣺2025-02-19 09:28:03,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
  810. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
  811. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
  812. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
  813. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
  814. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  815. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  816. ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
  817. ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
  818. ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
  819. ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
  820. ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
  821. ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
  822. ¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  823. ¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  824. ¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
  825. ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
  826. ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
  827. ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
  828. ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
  829. ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
  830. ¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  831. ¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  832. ¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
  833. ¼ʱ䣺2025-02-19 09:28:03,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
  834. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
  835. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
  836. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
  837. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
  838. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  839. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  840. ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
  841. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
  842. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
  843. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
  844. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
  845. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
  846. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  847. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  848. ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
  849. ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
  850. ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
  851. ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
  852. ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
  853. ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
  854. ¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  855. ¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  856. ¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
  857. ¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
  858. ¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
  859. ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
  860. ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
  861. ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
  862. ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  863. ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  864. ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
  865. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
  866. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
  867. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
  868. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
  869. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
  870. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  871. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  872. ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
  873. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
  874. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
  875. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
  876. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
  877. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
  878. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  879. ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  880. ¼ʱ䣺2025-02-19 09:28:03,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
  881. ¼ʱ䣺2025-02-19 09:28:03,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
  882. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
  883. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
  884. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
  885. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
  886. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  887. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  888. ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
  889. ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
  890. ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
  891. ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
  892. ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
  893. ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
  894. ¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  895. ¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  896. ¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
  897. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
  898. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
  899. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
  900. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
  901. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
  902. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  903. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  904. ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
  905. ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
  906. ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
  907. ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
  908. ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
  909. ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
  910. ¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  911. ¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  912. ¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
  913. ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
  914. ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
  915. ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
  916. ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
  917. ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
  918. ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  919. ¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  920. ¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
  921. ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
  922. ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
  923. ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
  924. ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
  925. ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
  926. ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  927. ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  928. ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
  929. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
  930. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
  931. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
  932. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
  933. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
  934. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  935. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  936. ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
  937. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
  938. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
  939. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
  940. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
  941. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
  942. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  943. ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  944. ¼ʱ䣺2025-02-19 09:28:03,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
  945. ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
  946. ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
  947. ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
  948. ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
  949. ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
  950. ¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  951. ¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  952. ¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
  953. ¼ʱ䣺2025-02-19 09:28:03,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
  954. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
  955. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
  956. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
  957. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
  958. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  959. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  960. ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
  961. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
  962. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
  963. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
  964. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
  965. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
  966. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  967. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  968. ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
  969. ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
  970. ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
  971. ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
  972. ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
  973. ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
  974. ¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  975. ¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  976. ¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
  977. ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
  978. ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
  979. ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
  980. ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
  981. ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
  982. ¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  983. ¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  984. ¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
  985. ¼ʱ䣺2025-02-19 09:28:03,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
  986. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
  987. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
  988. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
  989. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
  990. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  991. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  992. ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
  993. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
  994. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
  995. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
  996. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
  997. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
  998. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  999. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1000. ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
  1001. ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
  1002. ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
  1003. ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
  1004. ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
  1005. ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
  1006. ¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1007. ¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1008. ¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
  1009. ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
  1010. ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
  1011. ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
  1012. ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
  1013. ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
  1014. ¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1015. ¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1016. ¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
  1017. ¼ʱ䣺2025-02-19 09:28:03,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
  1018. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
  1019. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
  1020. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
  1021. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
  1022. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1023. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1024. ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
  1025. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
  1026. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
  1027. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
  1028. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
  1029. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
  1030. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1031. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1032. ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
  1033. ¼ʱ䣺2025-02-19 09:28:03,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
  1034. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
  1035. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
  1036. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
  1037. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
  1038. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1039. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1040. ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
  1041. ¼ʱ䣺2025-02-19 09:28:03,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
  1042. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
  1043. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
  1044. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
  1045. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
  1046. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1047. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1048. ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
  1049. ¼ʱ䣺2025-02-19 09:28:03,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
  1050. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
  1051. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
  1052. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
  1053. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
  1054. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1055. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1056. ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
  1057. ¼ʱ䣺2025-02-19 09:28:03,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
  1058. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
  1059. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
  1060. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
  1061. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
  1062. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1063. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1064. ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
  1065. ¼ʱ䣺2025-02-19 09:28:03,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
  1066. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
  1067. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
  1068. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
  1069. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
  1070. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1071. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1072. ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
  1073. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
  1074. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
  1075. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
  1076. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
  1077. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
  1078. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1079. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1080. ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
  1081. ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
  1082. ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
  1083. ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
  1084. ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
  1085. ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
  1086. ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1087. ¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1088. ¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
  1089. ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
  1090. ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
  1091. ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
  1092. ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
  1093. ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
  1094. ¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1095. ¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1096. ¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
  1097. ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
  1098. ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
  1099. ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
  1100. ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
  1101. ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
  1102. ¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1103. ¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1104. ¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
  1105. ¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
  1106. ¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
  1107. ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
  1108. ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
  1109. ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
  1110. ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1111. ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1112. ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
  1113. ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
  1114. ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
  1115. ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
  1116. ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
  1117. ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
  1118. ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1119. ¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1120. ¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
  1121. ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
  1122. ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
  1123. ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
  1124. ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
  1125. ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
  1126. ¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1127. ¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1128. ¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
  1129. ¼ʱ䣺2025-02-19 09:28:03,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
  1130. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
  1131. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
  1132. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
  1133. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
  1134. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1135. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1136. ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
  1137. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
  1138. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
  1139. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
  1140. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
  1141. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
  1142. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1143. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1144. ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
  1145. ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
  1146. ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
  1147. ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
  1148. ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
  1149. ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
  1150. ¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1151. ¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1152. ¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
  1153. ¼ʱ䣺2025-02-19 09:28:03,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
  1154. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
  1155. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
  1156. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
  1157. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
  1158. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1159. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1160. ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
  1161. ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
  1162. ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
  1163. ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
  1164. ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
  1165. ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
  1166. ¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1167. ¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1168. ¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
  1169. ¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
  1170. ¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
  1171. ¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1172. ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
  1173. ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
  1174. ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1175. ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1176. ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
  1177. ¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
  1178. ¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
  1179. ¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
  1180. ¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
  1181. ¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
  1182. ¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1183. ¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1184. ¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
  1185. ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
  1186. ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
  1187. ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
  1188. ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
  1189. ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
  1190. ¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1191. ¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1192. ¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
  1193. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
  1194. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
  1195. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1196. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
  1197. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
  1198. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1199. ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1200. ¼ʱ䣺2025-02-19 09:28:03,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
  1201. ¼ʱ䣺2025-02-19 09:28:03,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
  1202. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
  1203. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1204. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
  1205. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
  1206. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1207. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1208. ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
  1209. ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
  1210. ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
  1211. ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
  1212. ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
  1213. ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
  1214. ¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1215. ¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1216. ¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
  1217. ¼ʱ䣺2025-02-19 09:28:03,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
  1218. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
  1219. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
  1220. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
  1221. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
  1222. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1223. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1224. ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
  1225. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
  1226. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
  1227. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
  1228. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
  1229. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
  1230. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1231. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1232. ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
  1233. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
  1234. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
  1235. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
  1236. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
  1237. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
  1238. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1239. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1240. ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
  1241. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
  1242. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
  1243. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1244. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
  1245. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
  1246. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1247. ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1248. ¼ʱ䣺2025-02-19 09:28:03,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
  1249. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
  1250. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
  1251. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
  1252. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
  1253. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
  1254. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1255. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1256. ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
  1257. ¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
  1258. ¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
  1259. ¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
  1260. ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
  1261. ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
  1262. ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1263. ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1264. ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
  1265. ¼ʱ䣺2025-02-19 09:28:03,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
  1266. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
  1267. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1268. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
  1269. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
  1270. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1271. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1272. ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
  1273. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
  1274. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
  1275. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1276. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
  1277. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
  1278. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1279. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1280. ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
  1281. ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
  1282. ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
  1283. ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
  1284. ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
  1285. ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
  1286. ¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1287. ¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1288. ¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
  1289. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
  1290. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
  1291. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
  1292. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
  1293. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
  1294. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1295. ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1296. ¼ʱ䣺2025-02-19 09:28:03,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
  1297. ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
  1298. ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
  1299. ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1300. ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
  1301. ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
  1302. ¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1303. ¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1304. ¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
  1305. ¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
  1306. ¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
  1307. ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
  1308. ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
  1309. ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
  1310. ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1311. ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1312. ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
  1313. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
  1314. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
  1315. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1316. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
  1317. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
  1318. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1319. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1320. ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
  1321. ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
  1322. ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
  1323. ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1324. ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
  1325. ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
  1326. ¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1327. ¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1328. ¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
  1329. ¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
  1330. ¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
  1331. ¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
  1332. ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
  1333. ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
  1334. ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1335. ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1336. ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
  1337. ¼ʱ䣺2025-02-19 09:28:03,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
  1338. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
  1339. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
  1340. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
  1341. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
  1342. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1343. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1344. ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
  1345. ¼ʱ䣺2025-02-19 09:28:03,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
  1346. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
  1347. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
  1348. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
  1349. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
  1350. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1351. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1352. ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
  1353. ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
  1354. ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
  1355. ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
  1356. ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
  1357. ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
  1358. ¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1359. ¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1360. ¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
  1361. ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
  1362. ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
  1363. ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1364. ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
  1365. ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
  1366. ¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1367. ¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1368. ¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
  1369. ¼ʱ䣺2025-02-19 09:28:03,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
  1370. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
  1371. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
  1372. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
  1373. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
  1374. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1375. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1376. ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
  1377. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
  1378. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
  1379. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
  1380. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
  1381. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
  1382. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1383. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1384. ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
  1385. ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
  1386. ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
  1387. ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
  1388. ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
  1389. ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
  1390. ¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1391. ¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1392. ¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
  1393. ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
  1394. ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
  1395. ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
  1396. ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
  1397. ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
  1398. ¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1399. ¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1400. ¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
  1401. ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
  1402. ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
  1403. ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
  1404. ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
  1405. ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
  1406. ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1407. ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1408. ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
  1409. ¼ʱ䣺2025-02-19 09:28:03,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
  1410. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
  1411. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
  1412. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
  1413. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
  1414. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1415. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1416. ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
  1417. ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
  1418. ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
  1419. ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
  1420. ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
  1421. ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
  1422. ¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1423. ¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1424. ¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
  1425. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
  1426. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
  1427. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
  1428. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
  1429. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
  1430. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1431. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1432. ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
  1433. ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
  1434. ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
  1435. ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
  1436. ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
  1437. ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
  1438. ¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1439. ¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1440. ¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
  1441. ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
  1442. ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
  1443. ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
  1444. ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
  1445. ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
  1446. ¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1447. ¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1448. ¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
  1449. ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
  1450. ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
  1451. ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
  1452. ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
  1453. ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
  1454. ¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1455. ¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1456. ¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
  1457. ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
  1458. ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
  1459. ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
  1460. ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
  1461. ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
  1462. ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1463. ¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1464. ¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
  1465. ¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
  1466. ¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
  1467. ¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
  1468. ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
  1469. ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
  1470. ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1471. ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1472. ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
  1473. ¼ʱ䣺2025-02-19 09:28:04,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
  1474. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
  1475. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
  1476. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
  1477. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
  1478. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1479. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1480. ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
  1481. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
  1482. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
  1483. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
  1484. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
  1485. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
  1486. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1487. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1488. ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
  1489. ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
  1490. ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
  1491. ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1492. ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
  1493. ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
  1494. ¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1495. ¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1496. ¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
  1497. ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
  1498. ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
  1499. ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
  1500. ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
  1501. ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
  1502. ¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1503. ¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1504. ¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
  1505. ¼ʱ䣺2025-02-19 09:28:04,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
  1506. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
  1507. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
  1508. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
  1509. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
  1510. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1511. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1512. ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
  1513. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
  1514. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
  1515. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
  1516. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
  1517. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
  1518. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1519. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1520. ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
  1521. ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
  1522. ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
  1523. ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
  1524. ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
  1525. ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
  1526. ¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1527. ¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1528. ¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
  1529. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
  1530. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
  1531. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
  1532. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
  1533. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
  1534. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1535. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1536. ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
  1537. ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
  1538. ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
  1539. ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
  1540. ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
  1541. ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
  1542. ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1543. ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1544. ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
  1545. ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
  1546. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
  1547. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
  1548. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
  1549. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
  1550. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1551. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1552. ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
  1553. ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
  1554. ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
  1555. ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
  1556. ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
  1557. ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
  1558. ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1559. ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1560. ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
  1561. ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
  1562. ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
  1563. ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
  1564. ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
  1565. ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
  1566. ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1567. ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1568. ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
  1569. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
  1570. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
  1571. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
  1572. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
  1573. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
  1574. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1575. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1576. ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
  1577. ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
  1578. ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
  1579. ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
  1580. ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
  1581. ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
  1582. ¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1583. ¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1584. ¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
  1585. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
  1586. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
  1587. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
  1588. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
  1589. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
  1590. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1591. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1592. ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
  1593. ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
  1594. ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
  1595. ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
  1596. ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
  1597. ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
  1598. ¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1599. ¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1600. ¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
  1601. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
  1602. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
  1603. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
  1604. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
  1605. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
  1606. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1607. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1608. ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
  1609. ¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
  1610. ¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
  1611. ¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
  1612. ¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1613. ¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1614. ¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
  1615. ¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
  1616. ¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
  1617. ¼ʱ䣺2025-02-19 09:35:23,101 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1618. ¼ʱ䣺2025-02-19 09:35:23,139 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1619. ¼ʱ䣺2025-02-19 09:35:25,418 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1620. ¼ʱ䣺2025-02-19 09:35:25,425 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1621. ¼ʱ䣺2025-02-19 09:35:26,885 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1622. ¼ʱ䣺2025-02-19 09:35:26,893 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1623. ¼ʱ䣺2025-02-19 09:36:22,052 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵ޷ʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - ޷򿪵 SQL Server )
  1624. ¼ʱ䣺2025-02-19 09:36:42,303 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵ޷ʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - ޷򿪵 SQL Server )
  1625. ¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1626. ¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1627. ¼ʱ䣺2025-02-19 09:37:59,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
  1628. ¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
  1629. ¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
  1630. ¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1631. ¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1632. ¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1633. ¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1634. ¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1635. ¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1636. ¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1637. ¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1638. ¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1639. ¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1640. ¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1641. ¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1642. ¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
  1643. ¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
  1644. ¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
  1645. ¼ʱ䣺2025-02-19 09:40:14,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1646. ¼ʱ䣺2025-02-19 09:40:14,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1647. ¼ʱ䣺2025-02-19 09:40:14,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
  1648. ¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
  1649. ¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
  1650. ¼ʱ䣺2025-02-19 10:12:26,682 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1651. ¼ʱ䣺2025-02-19 10:12:26,716 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1652. ¼ʱ䣺2025-02-19 10:12:28,940 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1653. ¼ʱ䣺2025-02-19 10:12:28,947 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1654. ¼ʱ䣺2025-02-19 10:12:30,452 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1655. ¼ʱ䣺2025-02-19 10:12:30,460 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1656. ¼ʱ䣺2025-02-19 10:26:16,772 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1657. ¼ʱ䣺2025-02-19 10:26:16,807 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1658. ¼ʱ䣺2025-02-19 10:26:19,099 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1659. ¼ʱ䣺2025-02-19 10:26:19,106 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1660. ¼ʱ䣺2025-02-19 10:26:20,670 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1661. ¼ʱ䣺2025-02-19 10:26:20,678 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1662. ¼ʱ䣺2025-02-19 10:26:58,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  1663. ¼ʱ䣺2025-02-19 10:26:58,483 ߳ID:[1]- :MySQLDAL :GetTableTypeAndLenth Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  1664. ¼ʱ䣺2025-02-19 10:26:58,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  1665. ¼ʱ䣺2025-02-19 10:26:58,523 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  1666. ¼ʱ䣺2025-02-19 10:30:19,417 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1667. ¼ʱ䣺2025-02-19 10:30:19,452 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1668. ¼ʱ䣺2025-02-19 10:30:21,920 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1669. ¼ʱ䣺2025-02-19 10:30:21,927 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1670. ¼ʱ䣺2025-02-19 10:30:23,374 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1671. ¼ʱ䣺2025-02-19 10:30:23,382 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1672. ¼ʱ䣺2025-02-19 10:31:22,020 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unknown database 'cnas'
  1673. ¼ʱ䣺2025-02-19 10:31:28,260 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1674. ¼ʱ䣺2025-02-19 10:31:28,261 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1675. ¼ʱ䣺2025-02-19 10:31:28,262 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1676. ¼ʱ䣺2025-02-19 10:31:28,480 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1677. ¼ʱ䣺2025-02-19 10:31:28,554 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1678. ¼ʱ䣺2025-02-19 10:31:28,555 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1679. ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1680. ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1681. ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1682. ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1683. ¼ʱ䣺2025-02-19 10:31:28,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1684. ¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1685. ¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1686. ¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1687. ¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1688. ¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  1689. ¼ʱ䣺2025-02-19 10:33:35,525 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: ﷨ "'ColumnName'" 򸽽
  1690. POSITION: 23
  1691. ¼ʱ䣺2025-02-19 10:33:35,531 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: ﷨ "'ColumnName'" 򸽽
  1692. POSITION: 23
  1693. ¼ʱ䣺2025-02-19 10:45:50,899 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:42601: ﷨ "'ColumnName'" 򸽽
  1694. POSITION: 23
  1695. ¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  1696. a.attname as ColumnName,
  1697. format_type(a.atttypid, a.atttypmod) as DataType,
  1698. a.attnotnull as ǿ,
  1699. col_description(a.attrelid, a.attnum) as remark
  1700. FROM
  1701. pg_class as c, pg_attribute as a
  1702. where
  1703. a.attrelid = c.oid
  1704. and
  1705. a.attnum > 0
  1706. and
  1707. c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1708. ¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1709. a.attname as ColumnName,
  1710. format_type(a.atttypid, a.atttypmod) as DataType,
  1711. a.attnotnull as ǿ,
  1712. col_description(a.attrelid, a.attnum) as remark
  1713. FROM
  1714. pg_class as c, pg_attribute as a
  1715. where
  1716. a.attrelid = c.oid
  1717. and
  1718. a.attnum > 0
  1719. and
  1720. c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1721. ¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1722. a.attname as ColumnName,
  1723. format_type(a.atttypid, a.atttypmod) as DataType,
  1724. a.attnotnull as ǿ,
  1725. col_description(a.attrelid, a.attnum) as remark
  1726. FROM
  1727. pg_class as c, pg_attribute as a
  1728. where
  1729. a.attrelid = c.oid
  1730. and
  1731. a.attnum > 0
  1732. and
  1733. c.relname = 'STU'; System.Data.DataSet
  1734. ¼ʱ䣺2025-02-19 10:46:16,620 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction
  1735. ¼ʱ䣺2025-02-19 10:46:16,626 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction
  1736. ¼ʱ䣺2025-02-19 10:46:24,636 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:NpgsqlTransaction
  1737. ¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1738. ¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1739. ¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1740. ¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1741. ¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1742. ¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1743. ¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1744. ¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1745. ¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1746. ¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1747. ¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1748. ¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1749. ¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1750. ¼ʱ䣺2025-02-19 10:47:33,919 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1751. ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1752. ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1753. ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1754. ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1755. ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1756. ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1757. ¼ʱ䣺2025-02-19 10:47:34,126 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1758. ¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1759. ¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1760. ¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  1761. a.attname as ColumnName,
  1762. format_type(a.atttypid, a.atttypmod) as DataType,
  1763. a.attnotnull as ǿ,
  1764. col_description(a.attrelid, a.attnum) as remark
  1765. FROM
  1766. pg_class as c, pg_attribute as a
  1767. where
  1768. a.attrelid = c.oid
  1769. and
  1770. a.attnum > 0
  1771. and
  1772. c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1773. ¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1774. a.attname as ColumnName,
  1775. format_type(a.atttypid, a.atttypmod) as DataType,
  1776. a.attnotnull as ǿ,
  1777. col_description(a.attrelid, a.attnum) as remark
  1778. FROM
  1779. pg_class as c, pg_attribute as a
  1780. where
  1781. a.attrelid = c.oid
  1782. and
  1783. a.attnum > 0
  1784. and
  1785. c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1786. ¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1787. a.attname as ColumnName,
  1788. format_type(a.atttypid, a.atttypmod) as DataType,
  1789. a.attnotnull as ǿ,
  1790. col_description(a.attrelid, a.attnum) as remark
  1791. FROM
  1792. pg_class as c, pg_attribute as a
  1793. where
  1794. a.attrelid = c.oid
  1795. and
  1796. a.attnum > 0
  1797. and
  1798. c.relname = 'STU'; System.Data.DataSet
  1799. ¼ʱ䣺2025-02-19 10:49:12,131 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  1800. a.attname as ColumnName,
  1801. format_type(a.atttypid, a.atttypmod) as DataType,
  1802. a.attnotnull as ǿ,
  1803. col_description(a.attrelid, a.attnum) as remark
  1804. FROM
  1805. pg_class as c, pg_attribute as a
  1806. where
  1807. a.attrelid = c.oid
  1808. and
  1809. a.attnum > 0
  1810. and
  1811. c.relname = 'STU'; System.Data.DataSet
  1812. ¼ʱ䣺2025-02-19 10:49:12,198 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  1813. a.attname as ColumnName,
  1814. format_type(a.atttypid, a.atttypmod) as DataType,
  1815. a.attnotnull as ǿ,
  1816. col_description(a.attrelid, a.attnum) as remark
  1817. FROM
  1818. pg_class as c, pg_attribute as a
  1819. where
  1820. a.attrelid = c.oid
  1821. and
  1822. a.attnum > 0
  1823. and
  1824. c.relname = 'STU'; System.Data.DataSet
  1825. ¼ʱ䣺2025-02-19 10:49:23,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1826. ¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1827. ¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1828. ¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1829. ¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1830. ¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1831. ¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1832. ¼ʱ䣺2025-02-19 10:49:23,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1833. ¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1834. ¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1835. ¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1836. ¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1837. ¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1838. ¼ʱ䣺2025-02-19 10:50:49,334 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1839. ¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1840. ¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1841. ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1842. ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1843. ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1844. ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1845. ¼ʱ䣺2025-02-19 10:50:49,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1846. ¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1847. ¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1848. ¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  1849. a.attname as ColumnName,
  1850. format_type(a.atttypid, a.atttypmod) as DataType,
  1851. a.attnotnull as ǿ,
  1852. col_description(a.attrelid, a.attnum) as remark
  1853. FROM
  1854. pg_class as c, pg_attribute as a
  1855. where
  1856. a.attrelid = c.oid
  1857. and
  1858. a.attnum > 0
  1859. and
  1860. c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1861. ¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1862. a.attname as ColumnName,
  1863. format_type(a.atttypid, a.atttypmod) as DataType,
  1864. a.attnotnull as ǿ,
  1865. col_description(a.attrelid, a.attnum) as remark
  1866. FROM
  1867. pg_class as c, pg_attribute as a
  1868. where
  1869. a.attrelid = c.oid
  1870. and
  1871. a.attnum > 0
  1872. and
  1873. c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1874. ¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1875. a.attname as ColumnName,
  1876. format_type(a.atttypid, a.atttypmod) as DataType,
  1877. a.attnotnull as ǿ,
  1878. col_description(a.attrelid, a.attnum) as remark
  1879. FROM
  1880. pg_class as c, pg_attribute as a
  1881. where
  1882. a.attrelid = c.oid
  1883. and
  1884. a.attnum > 0
  1885. and
  1886. c.relname = 'STU'; System.Data.DataSet
  1887. ¼ʱ䣺2025-02-19 10:51:49,577 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  1888. a.attname as ColumnName,
  1889. format_type(a.atttypid, a.atttypmod) as DataType,
  1890. a.attnotnull as ǿ,
  1891. col_description(a.attrelid, a.attnum) as remark
  1892. FROM
  1893. pg_class as c, pg_attribute as a
  1894. where
  1895. a.attrelid = c.oid
  1896. and
  1897. a.attnum > 0
  1898. and
  1899. c.relname = 'STU'; System.Data.DataSet
  1900. ¼ʱ䣺2025-02-19 10:51:49,632 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  1901. a.attname as ColumnName,
  1902. format_type(a.atttypid, a.atttypmod) as DataType,
  1903. a.attnotnull as ǿ,
  1904. col_description(a.attrelid, a.attnum) as remark
  1905. FROM
  1906. pg_class as c, pg_attribute as a
  1907. where
  1908. a.attrelid = c.oid
  1909. and
  1910. a.attnum > 0
  1911. and
  1912. c.relname = 'STU'; System.Data.DataSet
  1913. ¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1914. ¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1915. ¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1916. ¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1917. ¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
  1918. ¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1919. ¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
  1920. ¼ʱ䣺2025-02-19 10:51:49,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1921. ¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1922. ¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
  1923. ¼ʱ䣺2025-02-19 10:52:15,796 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1924. ¼ʱ䣺2025-02-19 10:52:15,831 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1925. ¼ʱ䣺2025-02-19 10:52:18,015 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1926. ¼ʱ䣺2025-02-19 10:52:18,022 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1927. ¼ʱ䣺2025-02-19 10:52:19,487 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1928. ¼ʱ䣺2025-02-19 10:52:19,495 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  1929. ¼ʱ䣺2025-02-19 10:53:56,181 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1930. ¼ʱ䣺2025-02-19 10:53:56,182 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1931. ¼ʱ䣺2025-02-19 10:53:56,183 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1932. ¼ʱ䣺2025-02-19 10:53:56,403 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1933. ¼ʱ䣺2025-02-19 10:53:56,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1934. ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1935. ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1936. ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1937. ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1938. ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1939. ¼ʱ䣺2025-02-19 10:53:56,545 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1940. ¼ʱ䣺2025-02-19 10:53:56,616 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1941. ¼ʱ䣺2025-02-19 10:53:56,617 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1942. ¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  1943. a.attname as ColumnName,
  1944. format_type(a.atttypid, a.atttypmod) as DataType,
  1945. a.attnotnull as ǿ,
  1946. col_description(a.attrelid, a.attnum) as remark
  1947. FROM
  1948. pg_class as c, pg_attribute as a
  1949. where
  1950. a.attrelid = c.oid
  1951. and
  1952. a.attnum > 0
  1953. and
  1954. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1955. ¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1956. a.attname as ColumnName,
  1957. format_type(a.atttypid, a.atttypmod) as DataType,
  1958. a.attnotnull as ǿ,
  1959. col_description(a.attrelid, a.attnum) as remark
  1960. FROM
  1961. pg_class as c, pg_attribute as a
  1962. where
  1963. a.attrelid = c.oid
  1964. and
  1965. a.attnum > 0
  1966. and
  1967. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1968. ¼ʱ䣺2025-02-19 10:54:03,488 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  1969. a.attname as ColumnName,
  1970. format_type(a.atttypid, a.atttypmod) as DataType,
  1971. a.attnotnull as ǿ,
  1972. col_description(a.attrelid, a.attnum) as remark
  1973. FROM
  1974. pg_class as c, pg_attribute as a
  1975. where
  1976. a.attrelid = c.oid
  1977. and
  1978. a.attnum > 0
  1979. and
  1980. c.relname = 'stu'; System.Data.DataSet
  1981. ¼ʱ䣺2025-02-19 10:54:03,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  1982. a.attname as ColumnName,
  1983. format_type(a.atttypid, a.atttypmod) as DataType,
  1984. a.attnotnull as ǿ,
  1985. col_description(a.attrelid, a.attnum) as remark
  1986. FROM
  1987. pg_class as c, pg_attribute as a
  1988. where
  1989. a.attrelid = c.oid
  1990. and
  1991. a.attnum > 0
  1992. and
  1993. c.relname = 'stu'; System.Data.DataSet
  1994. ¼ʱ䣺2025-02-19 10:54:03,617 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  1995. a.attname as ColumnName,
  1996. format_type(a.atttypid, a.atttypmod) as DataType,
  1997. a.attnotnull as ǿ,
  1998. col_description(a.attrelid, a.attnum) as remark
  1999. FROM
  2000. pg_class as c, pg_attribute as a
  2001. where
  2002. a.attrelid = c.oid
  2003. and
  2004. a.attnum > 0
  2005. and
  2006. c.relname = 'stu'; System.Data.DataSet
  2007. ¼ʱ䣺2025-02-19 10:54:13,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2008. ¼ʱ䣺2025-02-19 10:54:13,196 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2009. ¼ʱ䣺2025-02-19 10:54:29,218 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2010. ¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2011. ¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2012. ¼ʱ䣺2025-02-19 10:54:29,277 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2013. ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2014. ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2015. ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2016. ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2017. ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2018. ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2019. ¼ʱ䣺2025-02-19 10:54:29,394 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2020. ¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2021. ¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  2022. ¼ʱ䣺2025-02-19 10:54:49,497 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2023. ¼ʱ䣺2025-02-19 10:54:49,532 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2024. ¼ʱ䣺2025-02-19 10:54:51,185 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2025. ¼ʱ䣺2025-02-19 10:54:51,192 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2026. ¼ʱ䣺2025-02-19 10:54:52,749 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2027. ¼ʱ䣺2025-02-19 10:54:52,757 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2028. ¼ʱ䣺2025-02-19 10:56:22,916 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2029. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2030. ¼ʱ䣺2025-02-19 10:56:22,922 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2031. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2032. ¼ʱ䣺2025-02-19 10:56:22,929 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
  2033. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2034. ¼ʱ䣺2025-02-19 10:57:13,533 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:The ConnectionString property has not been initialized.
  2035. ¼ʱ䣺2025-02-19 11:05:10,679 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2036. ¼ʱ䣺2025-02-19 11:05:10,713 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2037. ¼ʱ䣺2025-02-19 11:05:12,932 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2038. ¼ʱ䣺2025-02-19 11:05:12,939 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2039. ¼ʱ䣺2025-02-19 11:05:14,406 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2040. ¼ʱ䣺2025-02-19 11:05:14,414 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2041. ¼ʱ䣺2025-02-19 11:05:57,236 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2042. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2043. ¼ʱ䣺2025-02-19 11:05:57,242 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2044. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2045. ¼ʱ䣺2025-02-19 11:05:57,248 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
  2046. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2047. ¼ʱ䣺2025-02-19 11:06:05,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ:
  2048. ﷨ [sql]: {SELECT
  2049. COLUMN_NAME AS 'ColumnName',
  2050. NULLABLE AS 'IsNullable',
  2051. DATA_TYPE AS 'DataType',
  2052. DATA_LENGTH AS 'CharMaxLenth',
  2053. DATA_LENGTH AS 'CharOcterLenth',
  2054. DATA_PRECISION AS 'NumericPrecision',
  2055. DATA_SCALE AS 'NumericScale'
  2056. FROM USER_TAB_COLUMNS
  2057. WHERE TABLE_NAME = 'STU'};
  2058. ¼ʱ䣺2025-02-19 11:06:05,640 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ:
  2059. ﷨ [sql]: {SELECT
  2060. COLUMN_NAME AS 'ColumnName',
  2061. NULLABLE AS 'IsNullable',
  2062. DATA_TYPE AS 'DataType',
  2063. DATA_LENGTH AS 'CharMaxLenth',
  2064. DATA_LENGTH AS 'CharOcterLenth',
  2065. DATA_PRECISION AS 'NumericPrecision',
  2066. DATA_SCALE AS 'NumericScale'
  2067. FROM USER_TAB_COLUMNS
  2068. WHERE TABLE_NAME = 'STU'};
  2069. ¼ʱ䣺2025-02-19 11:08:24,907 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 56 [']ִ:
  2070. ﷨ [sql]: {SELECT
  2071. COLUMN_NAME AS 'ColumnName',
  2072. NULLABLE AS 'IsNullable',
  2073. DATA_TYPE AS 'DataType',
  2074. DATA_LENGTH AS 'CharMaxLenth',
  2075. DATA_LENGTH AS 'CharOcterLenth',
  2076. DATA_PRECISION AS 'NumericPrecision',
  2077. DATA_SCALE AS 'NumericScale'
  2078. FROM USER_TAB_COLUMNS
  2079. WHERE TABLE_NAME = 'STU'};
  2080. ¼ʱ䣺2025-02-19 11:13:38,201 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
  2081. Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
  2082. FROM USER_TAB_COLUMNS
  2083. WHERE TABLE_NAME = 'STU';};
  2084. ¼ʱ䣺2025-02-19 11:13:38,207 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
  2085. Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
  2086. FROM USER_TAB_COLUMNS
  2087. WHERE TABLE_NAME = 'STU';};
  2088. ¼ʱ䣺2025-02-19 11:14:08,488 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ:
  2089. Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
  2090. FROM USER_TAB_COLUMNS
  2091. WHERE TABLE_NAME = 'STU';};
  2092. ¼ʱ䣺2025-02-19 11:14:21,443 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
  2093. Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
  2094. FROM USER_TAB_COLUMNS
  2095. WHERE TABLE_NAME = 'STU';};
  2096. ¼ʱ䣺2025-02-19 11:14:21,450 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
  2097. Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
  2098. FROM USER_TAB_COLUMNS
  2099. WHERE TABLE_NAME = 'STU';};
  2100. ¼ʱ䣺2025-02-19 11:14:32,145 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ:
  2101. Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
  2102. FROM USER_TAB_COLUMNS
  2103. WHERE TABLE_NAME = 'STU';};
  2104. ¼ʱ䣺2025-02-19 11:25:27,296 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ:
  2105. ﷨ [sql]: {SELECT
  2106. a.COLUMN_NAME AS 'InstruFieldName',
  2107. b.COMMENTS AS 'remark',
  2108. a.DATA_TYPE || CASE
  2109. WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
  2110. WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
  2111. ELSE ''
  2112. END AS 'InstruDataType'
  2113. FROM
  2114. ALL_TAB_COLUMNS a
  2115. LEFT JOIN
  2116. ALL_COL_COMMENTS b
  2117. ON a.OWNER = b.OWNER
  2118. AND a.TABLE_NAME = b.TABLE_NAME
  2119. AND a.COLUMN_NAME = b.COLUMN_NAME
  2120. WHERE
  2121. a.TABLE_NAME = 'STU'
  2122. ORDER BY
  2123. a.COLUMN_ID;};
  2124. ¼ʱ䣺2025-02-19 11:25:27,303 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ:
  2125. ﷨ [sql]: {SELECT
  2126. a.COLUMN_NAME AS 'InstruFieldName',
  2127. b.COMMENTS AS 'remark',
  2128. a.DATA_TYPE || CASE
  2129. WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
  2130. WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
  2131. ELSE ''
  2132. END AS 'InstruDataType'
  2133. FROM
  2134. ALL_TAB_COLUMNS a
  2135. LEFT JOIN
  2136. ALL_COL_COMMENTS b
  2137. ON a.OWNER = b.OWNER
  2138. AND a.TABLE_NAME = b.TABLE_NAME
  2139. AND a.COLUMN_NAME = b.COLUMN_NAME
  2140. WHERE
  2141. a.TABLE_NAME = 'STU'
  2142. ORDER BY
  2143. a.COLUMN_ID;};
  2144. ¼ʱ䣺2025-02-19 11:26:15,401 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 52 [']ִ:
  2145. ﷨ [sql]: {SELECT
  2146. a.COLUMN_NAME AS 'InstruFieldName',
  2147. b.COMMENTS AS 'remark',
  2148. a.DATA_TYPE || CASE
  2149. WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
  2150. WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
  2151. ELSE ''
  2152. END AS 'InstruDataType'
  2153. FROM
  2154. ALL_TAB_COLUMNS a
  2155. LEFT JOIN
  2156. ALL_COL_COMMENTS b
  2157. ON a.OWNER = b.OWNER
  2158. AND a.TABLE_NAME = b.TABLE_NAME
  2159. AND a.COLUMN_NAME = b.COLUMN_NAME
  2160. WHERE
  2161. a.TABLE_NAME = 'STU'
  2162. ORDER BY
  2163. a.COLUMN_ID;};
  2164. ¼ʱ䣺2025-02-19 11:30:18,078 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ:
  2165. ޷ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
  2166. *
  2167. FROM
  2168. ALL_COL_COMMENTS
  2169. WHERE
  2170. ALL_COL_COMMENTS.TABLE_NAME = 'STU'
  2171. ORDER BY
  2172. ALL_COL_COMMENTS.COLUMN_ID;};
  2173. ¼ʱ䣺2025-02-19 11:30:18,084 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ:
  2174. ޷ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
  2175. *
  2176. FROM
  2177. ALL_COL_COMMENTS
  2178. WHERE
  2179. ALL_COL_COMMENTS.TABLE_NAME = 'STU'
  2180. ORDER BY
  2181. ALL_COL_COMMENTS.COLUMN_ID;};
  2182. ¼ʱ䣺2025-02-19 11:30:44,490 ߳ID:[1]- :SelectTableType :DmSql Ϣ:12 иִ:
  2183. ޷ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
  2184. *
  2185. FROM
  2186. ALL_COL_COMMENTS
  2187. WHERE
  2188. ALL_COL_COMMENTS.TABLE_NAME = 'STU'
  2189. ORDER BY
  2190. ALL_COL_COMMENTS.COLUMN_ID;};
  2191. ¼ʱ䣺2025-02-19 11:31:49,841 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ:
  2192. ﷨ [sql]: {SELECT
  2193. *
  2194. FROM
  2195. ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
  2196. ¼ʱ䣺2025-02-19 11:31:49,848 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ:
  2197. ﷨ [sql]: {SELECT
  2198. *
  2199. FROM
  2200. ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
  2201. ¼ʱ䣺2025-02-19 11:33:10,383 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 4 , 59 [TABLE_NAME]ִ:
  2202. ﷨ [sql]: {SELECT
  2203. *
  2204. FROM
  2205. ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
  2206. ¼ʱ䣺2025-02-19 11:34:23,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2207. ¼ʱ䣺2025-02-19 11:34:23,507 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2208. ¼ʱ䣺2025-02-19 11:34:34,320 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2209. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2210. ¼ʱ䣺2025-02-19 11:34:34,326 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2211. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2212. ¼ʱ䣺2025-02-19 11:34:34,332 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
  2213. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2214. ¼ʱ䣺2025-02-19 11:34:59,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2215. ¼ʱ䣺2025-02-19 11:34:59,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2216. ¼ʱ䣺2025-02-19 11:38:48,756 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2217. ¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2218. ¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2219. ¼ʱ䣺2025-02-19 11:38:48,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2220. ¼ʱ䣺2025-02-19 11:38:48,981 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2221. ¼ʱ䣺2025-02-19 11:38:48,987 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2222. ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2223. ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2224. ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2225. ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2226. ¼ʱ䣺2025-02-19 11:38:49,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2227. ¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2228. ¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  2229. ¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  2230. a.attname as ColumnName,
  2231. format_type(a.atttypid, a.atttypmod) as DataType,
  2232. a.attnotnull as ǿ,
  2233. col_description(a.attrelid, a.attnum) as remark
  2234. FROM
  2235. pg_class as c, pg_attribute as a
  2236. where
  2237. a.attrelid = c.oid
  2238. and
  2239. a.attnum > 0
  2240. and
  2241. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2242. ¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2243. a.attname as ColumnName,
  2244. format_type(a.atttypid, a.atttypmod) as DataType,
  2245. a.attnotnull as ǿ,
  2246. col_description(a.attrelid, a.attnum) as remark
  2247. FROM
  2248. pg_class as c, pg_attribute as a
  2249. where
  2250. a.attrelid = c.oid
  2251. and
  2252. a.attnum > 0
  2253. and
  2254. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2255. ¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2256. a.attname as ColumnName,
  2257. format_type(a.atttypid, a.atttypmod) as DataType,
  2258. a.attnotnull as ǿ,
  2259. col_description(a.attrelid, a.attnum) as remark
  2260. FROM
  2261. pg_class as c, pg_attribute as a
  2262. where
  2263. a.attrelid = c.oid
  2264. and
  2265. a.attnum > 0
  2266. and
  2267. c.relname = 'stu'; System.Data.DataSet
  2268. ¼ʱ䣺2025-02-19 11:38:51,457 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  2269. a.attname as ColumnName,
  2270. format_type(a.atttypid, a.atttypmod) as DataType,
  2271. a.attnotnull as ǿ,
  2272. col_description(a.attrelid, a.attnum) as remark
  2273. FROM
  2274. pg_class as c, pg_attribute as a
  2275. where
  2276. a.attrelid = c.oid
  2277. and
  2278. a.attnum > 0
  2279. and
  2280. c.relname = 'stu'; System.Data.DataSet
  2281. ¼ʱ䣺2025-02-19 11:38:51,590 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  2282. a.attname as ColumnName,
  2283. format_type(a.atttypid, a.atttypmod) as DataType,
  2284. a.attnotnull as ǿ,
  2285. col_description(a.attrelid, a.attnum) as remark
  2286. FROM
  2287. pg_class as c, pg_attribute as a
  2288. where
  2289. a.attrelid = c.oid
  2290. and
  2291. a.attnum > 0
  2292. and
  2293. c.relname = 'stu'; System.Data.DataSet
  2294. ¼ʱ䣺2025-02-19 11:38:51,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2295. ¼ʱ䣺2025-02-19 11:38:51,647 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2296. ¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2297. ¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2298. ¼ʱ䣺2025-02-19 11:39:09,449 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2299. ¼ʱ䣺2025-02-19 11:39:09,574 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2300. ¼ʱ䣺2025-02-19 11:39:09,728 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2301. ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2302. ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2303. ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2304. ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2305. ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2306. ¼ʱ䣺2025-02-19 11:39:09,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2307. ¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2308. ¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  2309. ¼ʱ䣺2025-02-19 11:39:11,704 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  2310. a.attname as ColumnName,
  2311. format_type(a.atttypid, a.atttypmod) as DataType,
  2312. a.attnotnull as ǿ,
  2313. col_description(a.attrelid, a.attnum) as remark
  2314. FROM
  2315. pg_class as c, pg_attribute as a
  2316. where
  2317. a.attrelid = c.oid
  2318. and
  2319. a.attnum > 0
  2320. and
  2321. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2322. ¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2323. a.attname as ColumnName,
  2324. format_type(a.atttypid, a.atttypmod) as DataType,
  2325. a.attnotnull as ǿ,
  2326. col_description(a.attrelid, a.attnum) as remark
  2327. FROM
  2328. pg_class as c, pg_attribute as a
  2329. where
  2330. a.attrelid = c.oid
  2331. and
  2332. a.attnum > 0
  2333. and
  2334. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2335. ¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2336. a.attname as ColumnName,
  2337. format_type(a.atttypid, a.atttypmod) as DataType,
  2338. a.attnotnull as ǿ,
  2339. col_description(a.attrelid, a.attnum) as remark
  2340. FROM
  2341. pg_class as c, pg_attribute as a
  2342. where
  2343. a.attrelid = c.oid
  2344. and
  2345. a.attnum > 0
  2346. and
  2347. c.relname = 'stu'; System.Data.DataSet
  2348. ¼ʱ䣺2025-02-19 11:39:11,840 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  2349. a.attname as ColumnName,
  2350. format_type(a.atttypid, a.atttypmod) as DataType,
  2351. a.attnotnull as ǿ,
  2352. col_description(a.attrelid, a.attnum) as remark
  2353. FROM
  2354. pg_class as c, pg_attribute as a
  2355. where
  2356. a.attrelid = c.oid
  2357. and
  2358. a.attnum > 0
  2359. and
  2360. c.relname = 'stu'; System.Data.DataSet
  2361. ¼ʱ䣺2025-02-19 11:39:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  2362. a.attname as ColumnName,
  2363. format_type(a.atttypid, a.atttypmod) as DataType,
  2364. a.attnotnull as ǿ,
  2365. col_description(a.attrelid, a.attnum) as remark
  2366. FROM
  2367. pg_class as c, pg_attribute as a
  2368. where
  2369. a.attrelid = c.oid
  2370. and
  2371. a.attnum > 0
  2372. and
  2373. c.relname = 'stu'; System.Data.DataSet
  2374. ¼ʱ䣺2025-02-19 11:39:11,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2375. ¼ʱ䣺2025-02-19 11:39:11,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2376. ¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  2377. a.attname as ColumnName,
  2378. format_type(a.atttypid, a.atttypmod) as DataType,
  2379. a.attnotnull as ǿ,
  2380. col_description(a.attrelid, a.attnum) as remark
  2381. FROM
  2382. pg_class as c, pg_attribute as a
  2383. where
  2384. a.attrelid = c.oid
  2385. and
  2386. a.attnum > 0
  2387. and
  2388. c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2389. ¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2390. a.attname as ColumnName,
  2391. format_type(a.atttypid, a.atttypmod) as DataType,
  2392. a.attnotnull as ǿ,
  2393. col_description(a.attrelid, a.attnum) as remark
  2394. FROM
  2395. pg_class as c, pg_attribute as a
  2396. where
  2397. a.attrelid = c.oid
  2398. and
  2399. a.attnum > 0
  2400. and
  2401. c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2402. ¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2403. a.attname as ColumnName,
  2404. format_type(a.atttypid, a.atttypmod) as DataType,
  2405. a.attnotnull as ǿ,
  2406. col_description(a.attrelid, a.attnum) as remark
  2407. FROM
  2408. pg_class as c, pg_attribute as a
  2409. where
  2410. a.attrelid = c.oid
  2411. and
  2412. a.attnum > 0
  2413. and
  2414. c.relname = ''; System.Data.DataSet
  2415. ¼ʱ䣺2025-02-19 11:39:19,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  2416. a.attname as ColumnName,
  2417. format_type(a.atttypid, a.atttypmod) as DataType,
  2418. a.attnotnull as ǿ,
  2419. col_description(a.attrelid, a.attnum) as remark
  2420. FROM
  2421. pg_class as c, pg_attribute as a
  2422. where
  2423. a.attrelid = c.oid
  2424. and
  2425. a.attnum > 0
  2426. and
  2427. c.relname = ''; System.Data.DataSet
  2428. ¼ʱ䣺2025-02-19 11:39:20,048 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  2429. a.attname as ColumnName,
  2430. format_type(a.atttypid, a.atttypmod) as DataType,
  2431. a.attnotnull as ǿ,
  2432. col_description(a.attrelid, a.attnum) as remark
  2433. FROM
  2434. pg_class as c, pg_attribute as a
  2435. where
  2436. a.attrelid = c.oid
  2437. and
  2438. a.attnum > 0
  2439. and
  2440. c.relname = ''; System.Data.DataSet
  2441. ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1
  2442. ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2443. ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2444. ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet
  2445. ¼ʱ䣺2025-02-19 11:40:49,390 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet
  2446. ¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet
  2447. ¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table
  2448. ¼ʱ䣺2025-02-19 11:40:58,387 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2449. ¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2450. ¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2451. ¼ʱ䣺2025-02-19 11:40:58,495 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2452. ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2453. ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2454. ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2455. ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2456. ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2457. ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2458. ¼ʱ䣺2025-02-19 11:40:58,767 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2459. ¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2460. ¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  2461. ¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
  2462. a.attname as ColumnName,
  2463. format_type(a.atttypid, a.atttypmod) as DataType,
  2464. a.attnotnull as ǿ,
  2465. col_description(a.attrelid, a.attnum) as remark
  2466. FROM
  2467. pg_class as c, pg_attribute as a
  2468. where
  2469. a.attrelid = c.oid
  2470. and
  2471. a.attnum > 0
  2472. and
  2473. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2474. ¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2475. a.attname as ColumnName,
  2476. format_type(a.atttypid, a.atttypmod) as DataType,
  2477. a.attnotnull as ǿ,
  2478. col_description(a.attrelid, a.attnum) as remark
  2479. FROM
  2480. pg_class as c, pg_attribute as a
  2481. where
  2482. a.attrelid = c.oid
  2483. and
  2484. a.attnum > 0
  2485. and
  2486. c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2487. ¼ʱ䣺2025-02-19 11:41:00,360 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
  2488. a.attname as ColumnName,
  2489. format_type(a.atttypid, a.atttypmod) as DataType,
  2490. a.attnotnull as ǿ,
  2491. col_description(a.attrelid, a.attnum) as remark
  2492. FROM
  2493. pg_class as c, pg_attribute as a
  2494. where
  2495. a.attrelid = c.oid
  2496. and
  2497. a.attnum > 0
  2498. and
  2499. c.relname = 'stu'; System.Data.DataSet
  2500. ¼ʱ䣺2025-02-19 11:41:00,462 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
  2501. a.attname as ColumnName,
  2502. format_type(a.atttypid, a.atttypmod) as DataType,
  2503. a.attnotnull as ǿ,
  2504. col_description(a.attrelid, a.attnum) as remark
  2505. FROM
  2506. pg_class as c, pg_attribute as a
  2507. where
  2508. a.attrelid = c.oid
  2509. and
  2510. a.attnum > 0
  2511. and
  2512. c.relname = 'stu'; System.Data.DataSet
  2513. ¼ʱ䣺2025-02-19 11:41:00,541 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
  2514. a.attname as ColumnName,
  2515. format_type(a.atttypid, a.atttypmod) as DataType,
  2516. a.attnotnull as ǿ,
  2517. col_description(a.attrelid, a.attnum) as remark
  2518. FROM
  2519. pg_class as c, pg_attribute as a
  2520. where
  2521. a.attrelid = c.oid
  2522. and
  2523. a.attnum > 0
  2524. and
  2525. c.relname = 'stu'; System.Data.DataSet
  2526. ¼ʱ䣺2025-02-19 11:41:00,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2527. ¼ʱ䣺2025-02-19 11:41:00,592 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2528. ¼ʱ䣺2025-02-19 11:54:34,034 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2529. ¼ʱ䣺2025-02-19 11:54:34,072 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2530. ¼ʱ䣺2025-02-19 11:54:36,330 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2531. ¼ʱ䣺2025-02-19 11:54:36,337 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2532. ¼ʱ䣺2025-02-19 11:54:37,790 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2533. ¼ʱ䣺2025-02-19 11:54:37,799 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236
  2534. ¼ʱ䣺2025-02-19 11:56:00,854 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2535. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2536. ¼ʱ䣺2025-02-19 11:56:00,861 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
  2537. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2538. ¼ʱ䣺2025-02-19 11:56:00,866 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
  2539. Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
  2540. ¼ʱ䣺2025-02-19 12:07:38,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
  2541. ¼ʱ䣺2025-02-19 12:07:38,446 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)