|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613 |
- ¼ʱ䣺2025-02-19 09:27:08,234 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:27:08,271 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:27:10,689 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:27:10,697 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:27:12,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:27:12,641 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
- ¼ʱ䣺2025-02-19 09:28:03,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
- ¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist
- ¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
- ¼ʱ䣺2025-02-19 09:28:03,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist
- ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist
- ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
- ¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:35:23,101 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:35:23,139 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:35:25,418 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:35:25,425 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:35:26,885 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:35:26,893 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 09:36:22,052 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - SQL Server )
- ¼ʱ䣺2025-02-19 09:36:42,303 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - SQL Server )
- ¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:37:59,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:40:14,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:40:14,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 09:40:14,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
- ¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:12:26,682 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:12:26,716 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:12:28,940 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:12:28,947 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:12:30,452 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:12:30,460 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:16,772 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:16,807 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:19,099 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:19,106 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:20,670 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:20,678 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:26:58,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 10:26:58,483 ߳ID:[1]- :MySQLDAL :GetTableTypeAndLenth Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 10:26:58,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 10:26:58,523 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 10:30:19,417 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:30:19,452 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:30:21,920 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:30:21,927 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:30:23,374 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:30:23,382 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:31:22,020 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unknown database 'cnas'
- ¼ʱ䣺2025-02-19 10:31:28,260 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:31:28,261 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:31:28,262 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:31:28,480 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:31:28,554 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:31:28,555 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:31:28,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:33:35,525 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: "'ColumnName'"
-
- POSITION: 23
- ¼ʱ䣺2025-02-19 10:33:35,531 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: "'ColumnName'"
-
- POSITION: 23
- ¼ʱ䣺2025-02-19 10:45:50,899 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:42601: "'ColumnName'"
-
- POSITION: 23
- ¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:46:16,620 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction
- ¼ʱ䣺2025-02-19 10:46:16,626 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction
- ¼ʱ䣺2025-02-19 10:46:24,636 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:NpgsqlTransaction
- ¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:33,919 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:34,126 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:12,131 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:12,198 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:23,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:49:23,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,334 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,577 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,632 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'STU'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-19 10:51:49,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:52:15,796 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:52:15,831 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:52:18,015 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:52:18,022 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:52:19,487 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:52:19,495 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:53:56,181 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:53:56,182 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:53:56,183 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:53:56,403 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:53:56,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:53:56,545 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:53:56,616 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:53:56,617 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:54:03,488 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:03,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:03,617 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:13,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 10:54:13,196 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 10:54:29,218 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:29,277 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:29,394 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 10:54:49,497 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:54:49,532 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:54:51,185 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:54:51,192 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:54:52,749 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:54:52,757 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 10:56:22,916 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 10:56:22,922 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 10:56:22,929 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 10:57:13,533 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:The ConnectionString property has not been initialized.
- ¼ʱ䣺2025-02-19 11:05:10,679 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:05:10,713 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:05:12,932 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:05:12,939 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:05:14,406 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:05:14,414 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:05:57,236 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:05:57,242 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:05:57,248 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:06:05,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ:
- [sql]: {SELECT
- COLUMN_NAME AS 'ColumnName',
- NULLABLE AS 'IsNullable',
- DATA_TYPE AS 'DataType',
- DATA_LENGTH AS 'CharMaxLenth',
- DATA_LENGTH AS 'CharOcterLenth',
- DATA_PRECISION AS 'NumericPrecision',
- DATA_SCALE AS 'NumericScale'
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU'};
- ¼ʱ䣺2025-02-19 11:06:05,640 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ:
- [sql]: {SELECT
- COLUMN_NAME AS 'ColumnName',
- NULLABLE AS 'IsNullable',
- DATA_TYPE AS 'DataType',
- DATA_LENGTH AS 'CharMaxLenth',
- DATA_LENGTH AS 'CharOcterLenth',
- DATA_PRECISION AS 'NumericPrecision',
- DATA_SCALE AS 'NumericScale'
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU'};
- ¼ʱ䣺2025-02-19 11:08:24,907 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 56 [']ִ:
- [sql]: {SELECT
- COLUMN_NAME AS 'ColumnName',
- NULLABLE AS 'IsNullable',
- DATA_TYPE AS 'DataType',
- DATA_LENGTH AS 'CharMaxLenth',
- DATA_LENGTH AS 'CharOcterLenth',
- DATA_PRECISION AS 'NumericPrecision',
- DATA_SCALE AS 'NumericScale'
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU'};
- ¼ʱ䣺2025-02-19 11:13:38,201 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
- Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU';};
- ¼ʱ䣺2025-02-19 11:13:38,207 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
- Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU';};
- ¼ʱ䣺2025-02-19 11:14:08,488 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ:
- Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU';};
- ¼ʱ䣺2025-02-19 11:14:21,443 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
- Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU';};
- ¼ʱ䣺2025-02-19 11:14:21,450 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ:
- Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU';};
- ¼ʱ䣺2025-02-19 11:14:32,145 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ:
- Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS
- FROM USER_TAB_COLUMNS
- WHERE TABLE_NAME = 'STU';};
- ¼ʱ䣺2025-02-19 11:25:27,296 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ:
- [sql]: {SELECT
- a.COLUMN_NAME AS 'InstruFieldName',
- b.COMMENTS AS 'remark',
- a.DATA_TYPE || CASE
- WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
- WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
- ELSE ''
- END AS 'InstruDataType'
- FROM
- ALL_TAB_COLUMNS a
- LEFT JOIN
- ALL_COL_COMMENTS b
- ON a.OWNER = b.OWNER
- AND a.TABLE_NAME = b.TABLE_NAME
- AND a.COLUMN_NAME = b.COLUMN_NAME
- WHERE
- a.TABLE_NAME = 'STU'
-
- ORDER BY
- a.COLUMN_ID;};
- ¼ʱ䣺2025-02-19 11:25:27,303 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ:
- [sql]: {SELECT
- a.COLUMN_NAME AS 'InstruFieldName',
- b.COMMENTS AS 'remark',
- a.DATA_TYPE || CASE
- WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
- WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
- ELSE ''
- END AS 'InstruDataType'
- FROM
- ALL_TAB_COLUMNS a
- LEFT JOIN
- ALL_COL_COMMENTS b
- ON a.OWNER = b.OWNER
- AND a.TABLE_NAME = b.TABLE_NAME
- AND a.COLUMN_NAME = b.COLUMN_NAME
- WHERE
- a.TABLE_NAME = 'STU'
-
- ORDER BY
- a.COLUMN_ID;};
- ¼ʱ䣺2025-02-19 11:26:15,401 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 52 [']ִ:
- [sql]: {SELECT
- a.COLUMN_NAME AS 'InstruFieldName',
- b.COMMENTS AS 'remark',
- a.DATA_TYPE || CASE
- WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')'
- WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')'
- ELSE ''
- END AS 'InstruDataType'
- FROM
- ALL_TAB_COLUMNS a
- LEFT JOIN
- ALL_COL_COMMENTS b
- ON a.OWNER = b.OWNER
- AND a.TABLE_NAME = b.TABLE_NAME
- AND a.COLUMN_NAME = b.COLUMN_NAME
- WHERE
- a.TABLE_NAME = 'STU'
-
- ORDER BY
- a.COLUMN_ID;};
- ¼ʱ䣺2025-02-19 11:30:18,078 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ:
- ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
- *
- FROM
- ALL_COL_COMMENTS
-
-
-
- WHERE
- ALL_COL_COMMENTS.TABLE_NAME = 'STU'
-
- ORDER BY
- ALL_COL_COMMENTS.COLUMN_ID;};
- ¼ʱ䣺2025-02-19 11:30:18,084 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ:
- ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
- *
- FROM
- ALL_COL_COMMENTS
-
-
-
- WHERE
- ALL_COL_COMMENTS.TABLE_NAME = 'STU'
-
- ORDER BY
- ALL_COL_COMMENTS.COLUMN_ID;};
- ¼ʱ䣺2025-02-19 11:30:44,490 ߳ID:[1]- :SelectTableType :DmSql Ϣ:12 иִ:
- ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT
- *
- FROM
- ALL_COL_COMMENTS
-
-
-
- WHERE
- ALL_COL_COMMENTS.TABLE_NAME = 'STU'
-
- ORDER BY
- ALL_COL_COMMENTS.COLUMN_ID;};
- ¼ʱ䣺2025-02-19 11:31:49,841 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ:
- [sql]: {SELECT
- *
- FROM
- ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
- ¼ʱ䣺2025-02-19 11:31:49,848 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ:
- [sql]: {SELECT
- *
- FROM
- ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
- ¼ʱ䣺2025-02-19 11:33:10,383 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 4 , 59 [TABLE_NAME]ִ:
- [sql]: {SELECT
- *
- FROM
- ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;};
- ¼ʱ䣺2025-02-19 11:34:23,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:34:23,507 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:34:34,320 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:34:34,326 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:34:34,332 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:34:59,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:34:59,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:38:48,756 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:48,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:48,981 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:48,987 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:49,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:51,457 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:51,590 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:38:51,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:38:51,647 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:09,449 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:09,574 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:09,728 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:09,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 11:39:11,704 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:11,840 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:11,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:39:11,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = ''; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:19,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = ''; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:39:20,048 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = ''; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1
- ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:49,390 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 11:40:58,387 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:58,495 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:58,767 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
- ¼ʱ䣺2025-02-19 11:41:00,360 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:41:00,462 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:41:00,541 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT
- a.attname as ColumnName,
- format_type(a.atttypid, a.atttypmod) as DataType,
- a.attnotnull as ǿ,
- col_description(a.attrelid, a.attnum) as remark
- FROM
- pg_class as c, pg_attribute as a
- where
- a.attrelid = c.oid
- and
- a.attnum > 0
- and
- c.relname = 'stu'; System.Data.DataSet
- ¼ʱ䣺2025-02-19 11:41:00,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:41:00,592 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 11:54:34,034 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:54:34,072 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:54:36,330 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:54:36,337 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:54:37,790 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:54:37,799 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾӡ [::1]:5236
-
- ¼ʱ䣺2025-02-19 11:56:00,854 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:56:00,861 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 11:56:00,866 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ:
- Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1};
- ¼ʱ䣺2025-02-19 12:07:38,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
- ¼ʱ䣺2025-02-19 12:07:38,446 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES)
|