|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550 |
- ¼ʱ䣺2025-02-13 08:32:14,012 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unable to connect to any of the specified MySQL hosts.
- ¼ʱ䣺2025-02-13 08:33:21,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:21,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:21,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:21,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:21,273 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:21,273 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:33:34,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:33:39,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:39,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:39,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:39,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:39,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:39,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:33:39,180 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:33:40,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1
- ¼ʱ䣺2025-02-13 08:33:41,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:41,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:41,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:41,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:41,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:41,449 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:33:41,449 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:33:42,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1
- ¼ʱ䣺2025-02-13 08:33:42,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:42,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:33:42,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:42,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:42,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:33:42,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:33:42,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:33:43,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1
- ¼ʱ䣺2025-02-13 08:34:02,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:02,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:02,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:02,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:02,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:02,349 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:02,349 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:03,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1
- ¼ʱ䣺2025-02-13 08:34:03,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:03,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:03,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:03,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:03,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:03,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:03,769 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:04,380 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:04,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:04,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:04,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:04,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:04,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:04,599 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:04,599 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,851 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,862 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,872 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,873 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,883 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas.reportmainMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,905 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,917 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,918 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,921 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,922 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,923 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,926 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,929 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,935 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,937 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,941 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,942 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,944 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,974 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,977 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,983 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,983 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1
- ¼ʱ䣺2025-02-13 08:34:06,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:06,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:06,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,056 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,060 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,067 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,067 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,069 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,071 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,072 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,076 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,076 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,080 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,088 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,088 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,089 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,097 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,101 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,106 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,112 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,125 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,132 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,132 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,139 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,149 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,159 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,169 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,170 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,171 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,171 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,177 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,178 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,178 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,186 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,207 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,213 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,213 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,215 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,218 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,223 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,229 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,230 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,235 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,239 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,245 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,246 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,251 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,253 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,254 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,255 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,262 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,274 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,277 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,281 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,296 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,298 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,299 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,301 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,302 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,323 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,324 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,337 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,340 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,346 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,347 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,356 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,360 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,365 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,368 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,371 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,378 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,380 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,383 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,384 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,396 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,401 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,402 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,408 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,410 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,411 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,413 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,418 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,439 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,447 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,451 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,455 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,458 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,461 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,465 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,469 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,483 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,493 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,495 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,497 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,499 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,503 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,506 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,509 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,513 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,531 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,532 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,543 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,546 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,549 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,560 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,566 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,592 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,604 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,619 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,622 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,625 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,631 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,632 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,632 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,636 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,639 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,643 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,646 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,647 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,654 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,655 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,667 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,672 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,679 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,688 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:34:07,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1
- ¼ʱ䣺2025-02-13 08:34:07,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:34:07,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:34:07,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:34:07,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:34:07,775 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:37:29,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:37:29,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:37:29,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:37:29,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:37:29,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:37:29,154 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:37:29,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 08:37:29,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:37:29,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:37:29,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:37:29,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:37:29,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:37:29,157 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:37:56,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:37:56,828 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:39:23,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:39:23,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:39:23,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:39:23,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 08:39:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:39:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:39:23,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:39:23,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:39:23,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:39:23,581 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:39:23,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:39:23,628 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:41:47,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:41:47,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:41:47,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='TEST'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:41:47,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=TEST;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:41:47,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:41:47,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:41:47,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:41:47,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:09,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:54:09,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:54:09,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:09,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:09,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:30,759 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:54:35,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 08:54:35,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:54:35,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:54:35,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:35,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:35,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:54:35,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:56:12,108 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:56:12,114 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:56:54,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:56:54,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:56:54,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:56:54,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:56:54,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:56:56,716 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:56:56,728 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 08:57:30,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:57:30,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:57:30,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 08:57:30,198 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:30,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 08:57:32,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:57:32,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 08:57:32,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:32,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 08:57:32,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 09:52:49,971 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
- ¼ʱ䣺2025-02-13 10:02:14,744 ߳ID:[9]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:02:14,763 ߳ID:[9]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:02:14,763 ߳ID:[9]- :MySQLDAL :GetMaxTimeByTableName Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:20:50,513 ߳ID:[8]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:20:51,854 ߳ID:[8]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:20:51,854 ߳ID:[8]- :MySQLDAL :GetMaxTimeByTableName Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:23:32,811 ߳ID:[7]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:23:34,404 ߳ID:[7]- :MySQLHelper :TestConnectMySql Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:23:34,404 ߳ID:[7]- :MySQLDAL :GetMaxTimeByTableName Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 10:25:37,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 10:25:37,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 10:25:37,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:37,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:37,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:37,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 10:25:37,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 10:25:37,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 10:25:37,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 10:25:37,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:37,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:37,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:37,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 10:25:39,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 10:25:39,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 10:25:39,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:39,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 10:25:39,287 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:09:17,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:09:17,010 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 14:09:17,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:09:17,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:09:17,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:09:17,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:09:17,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:09:22,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 14:09:22,753 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 14:13:33,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:13:33,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:13:33,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:13:33,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:13:33,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:13:33,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 14:13:33,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:13:33,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:13:33,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:13:33,774 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:13:38,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 14:13:38,147 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user ''@'localhost' (using password: NO)
- ¼ʱ䣺2025-02-13 14:15:02,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:15:02,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:15:02,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:15:02,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:15:02,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:15:02,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 14:15:02,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:15:02,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:15:02,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:15:02,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:15:02,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:15:02,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:15:02,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:16:49,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:16:49,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:16:49,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:49,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:49,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:49,377 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 14:16:49,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:16:49,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:16:49,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:16:49,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:49,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:49,381 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:49,381 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:16:59,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:16:59,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:16:59,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:59,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:16:59,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,194 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
- ¼ʱ䣺2025-02-13 14:17:10,194 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:10,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:17:13,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:17:13,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:17:13,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:13,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:17:13,097 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:20:36,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
- ¼ʱ䣺2025-02-13 14:20:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:20:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:20:36,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:20:36,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:20:36,154 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:20:36,154 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:20:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:20:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:20:36,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:20:36,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:20:36,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:46,680 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 14:39:46,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:46,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:46,688 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:46,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:46,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:46,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:39:46,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:46,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:46,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:46,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:46,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:58,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 14:39:58,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:58,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:58,023 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:58,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:58,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:58,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:39:58,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:58,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:39:58,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:58,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:39:58,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:09,546 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:48:09,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:09,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:09,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:09,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:09,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:09,567 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:48:09,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:09,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:09,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:09,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:09,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:14,054 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:48:14,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:14,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:14,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:14,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:14,062 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:14,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:48:22,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:48:22,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:22,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:22,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:22,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:22,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:22,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:48:22,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:48:22,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:22,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:22,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:22,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:22,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:22,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:48:25,254 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1
- ¼ʱ䣺2025-02-13 14:48:25,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:25,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:25,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:25,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:25,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:25,260 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:48:27,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:48:27,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:27,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:48:27,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:27,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:27,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:48:27,750 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:09,321 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:09,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,325 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,327 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:09,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,430 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:09,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:09,439 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:10,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:10,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:10,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:10,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:10,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:10,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:10,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:10,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:10,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:10,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:10,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:10,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,078 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,078 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,542 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,542 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,699 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,846 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,848 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,856 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,859 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,859 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,890 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:11,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,994 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:11,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:11,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:11,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,025 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,034 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,038 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,145 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,162 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,172 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,275 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,314 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,314 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,413 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,417 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,417 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,473 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,474 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,475 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,475 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,573 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,580 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,625 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,629 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:49:12,724 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:49:12,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:49:12,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:52:01,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 14:52:01,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:01,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:01,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:52:01,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:01,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:01,626 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:52:01,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:01,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:01,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:01,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:52:03,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
- ¼ʱ䣺2025-02-13 14:52:03,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:03,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:03,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:03,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:03,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 14:52:06,409 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 14:52:06,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:06,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 14:52:06,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:06,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:06,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 14:52:06,415 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:02:33,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:02:33,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:02:33,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:02:33,713 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:02:33,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:02:33,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:02:33,724 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,917 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:02:33,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:02:33,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:02:33,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:02:33,921 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:05:23,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:05:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:05:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:05:23,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:23,096 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:23,096 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:05:26,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:05:26,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:05:26,504 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:26,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:26,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:26,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:05:26,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:05:26,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:05:26,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:26,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:26,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:05:26,709 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:16:37,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:16:37,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:16:37,972 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:16:37,973 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:37,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:37,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:37,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:16:37,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:16:37,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:16:37,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:37,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:37,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:38,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:16:38,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:16:38,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:16:38,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:38,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:38,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:16:38,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:19:59,258 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:19:59,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:19:59,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:19:59,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,274 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,274 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:19:59,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:19:59,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:19:59,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,307 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:19:59,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:19:59,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:19:59,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,420 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,421 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:19:59,421 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:06,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:32:06,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:06,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:06,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:06,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:06,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:06,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:06,918 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:06,922 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:06,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:07,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:32:07,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:07,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:07,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:07,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:07,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:07,026 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:44,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,810 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:44,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:44,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:44,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:32:44,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:44,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:44,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:44,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:45,435 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:32:45,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:45,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:32:45,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,515 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:45,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:32:45,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,609 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:45,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:45,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:32:45,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,892 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:32:45,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:32:45,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:32:45,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:40:26,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:40:26,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:26,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:26,658 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:40:26,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:26,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:26,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:26,791 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:40:35,144 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,146 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:40:35,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:35,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:35,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,249 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:40:35,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:35,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:40:35,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:44:03,446 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 15:44:03,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:03,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:03,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,465 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,466 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:44:03,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:03,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:03,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,534 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:44:03,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:03,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:03,535 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:03,538 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:44:05,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:44:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:05,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:05,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:05,441 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:44:08,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 15:44:08,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:08,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:44:08,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:08,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:08,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:44:08,454 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:45:41,411 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 15:45:41,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,415 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,416 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:45:41,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 15:45:41,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,557 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:45:41,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 15:45:41,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:45:41,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:45:41,563 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 15:49:50,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:49:50,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:49:50,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:50,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:50,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * FROM macaddress WHERE MAC_ADDRESS='74-13-EA-0C-EB-71'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:53,527 ߳ID:[1]- :AccessInstrumentData :.ctor Ϣ:δҵ·C:\Users\Li\Desktop\calorimeter.mdbһ֡
- ¼ʱ䣺2025-02-13 15:49:56,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:49:56,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:49:56,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:56,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:56,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-03 15:49:55',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:56,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:49:56,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 15:49:56,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:56,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 15:49:56,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===StuSELECT * FROM Stu Where 0=1
- ¼ʱ䣺2025-02-13 16:25:23,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,207 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,208 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,217 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM Stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,219 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===StuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 16:25:23,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,247 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,248 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
- ¼ʱ䣺2025-02-13 16:25:23,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,295 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 16:25:23,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
- ¼ʱ䣺2025-02-13 16:25:23,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:25:23,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,313 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:25:23,313 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 16:26:37,085 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
- ¼ʱ䣺2025-02-13 16:27:36,177 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
- ¼ʱ䣺2025-02-13 16:32:11,321 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
- ¼ʱ䣺2025-02-13 16:37:24,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUserver=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:24,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUserver=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:24,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:24,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:24,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUserver=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUserver=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,909 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
- ¼ʱ䣺2025-02-13 16:37:38,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:37:38,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:37:38,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
- ¼ʱ䣺2025-02-13 16:38:30,663 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
- ¼ʱ䣺2025-02-13 16:39:00,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUserver=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:39:00,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUserver=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:39:00,414 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:39:00,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:39:00,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:39,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:43:39,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:43:39,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:39,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:39,570 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:43:49,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:43:49,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,807 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
- ¼ʱ䣺2025-02-13 16:43:49,810 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:43:49,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
- ¼ʱ䣺2025-02-13 16:43:49,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
- ¼ʱ䣺2025-02-13 16:43:49,812 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
|