CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249
  1. ¼ʱ䣺2025-02-14 09:37:57,930 ߳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
  2. ¼ʱ䣺2025-02-14 09:37:57,940 ߳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
  3. ¼ʱ䣺2025-02-14 09:37:57,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  4. ¼ʱ䣺2025-02-14 09:37:57,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  5. ¼ʱ䣺2025-02-14 09:37:57,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  6. ¼ʱ䣺2025-02-14 09:37:57,977 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  7. ¼ʱ䣺2025-02-14 09:37:57,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  8. ¼ʱ䣺2025-02-14 09:37:57,979 ߳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
  9. ¼ʱ䣺2025-02-14 09:37:57,979 ߳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
  10. ¼ʱ䣺2025-02-14 09:37:57,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  11. ¼ʱ䣺2025-02-14 09:37:57,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  12. ¼ʱ䣺2025-02-14 09:37:57,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  13. ¼ʱ䣺2025-02-14 09:37:57,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  14. ¼ʱ䣺2025-02-14 09:37:58,035 ߳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
  15. ¼ʱ䣺2025-02-14 09:37:58,035 ߳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
  16. ¼ʱ䣺2025-02-14 09:37:58,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  17. ¼ʱ䣺2025-02-14 09:37:58,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  18. ¼ʱ䣺2025-02-14 09:37:58,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  19. ¼ʱ䣺2025-02-14 09:37:58,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  20. ¼ʱ䣺2025-02-14 09:37:58,068 ߳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
  21. ¼ʱ䣺2025-02-14 09:37:58,068 ߳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
  22. ¼ʱ䣺2025-02-14 09:37:58,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  23. ¼ʱ䣺2025-02-14 09:37:58,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  24. ¼ʱ䣺2025-02-14 09:37:58,077 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  25. ¼ʱ䣺2025-02-14 09:37:58,077 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  26. ¼ʱ䣺2025-02-14 09:37:58,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  27. ¼ʱ䣺2025-02-14 09:37:58,083 ߳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
  28. ¼ʱ䣺2025-02-14 09:37:58,083 ߳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
  29. ¼ʱ䣺2025-02-14 09:37:58,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  30. ¼ʱ䣺2025-02-14 09:37:58,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  31. ¼ʱ䣺2025-02-14 09:37:58,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  32. ¼ʱ䣺2025-02-14 09:37:58,093 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  33. ¼ʱ䣺2025-02-14 09:37:58,100 ߳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
  34. ¼ʱ䣺2025-02-14 09:37:58,101 ߳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
  35. ¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  36. ¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  37. ¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  38. ¼ʱ䣺2025-02-14 09:37:58,101 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  39. ¼ʱ䣺2025-02-14 09:37:58,102 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  40. ¼ʱ䣺2025-02-14 09:37:58,102 ߳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
  41. ¼ʱ䣺2025-02-14 09:37:58,103 ߳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
  42. ¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  43. ¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  44. ¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  45. ¼ʱ䣺2025-02-14 09:37:58,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  46. ¼ʱ䣺2025-02-14 09:37:58,106 ߳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
  47. ¼ʱ䣺2025-02-14 09:37:58,106 ߳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
  48. ¼ʱ䣺2025-02-14 09:37:58,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  49. ¼ʱ䣺2025-02-14 09:37:58,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  50. ¼ʱ䣺2025-02-14 09:37:58,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  51. ¼ʱ䣺2025-02-14 09:37:58,128 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  52. ¼ʱ䣺2025-02-14 09:37:58,130 ߳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
  53. ¼ʱ䣺2025-02-14 09:37:58,130 ߳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
  54. ¼ʱ䣺2025-02-14 09:37:58,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  55. ¼ʱ䣺2025-02-14 09:37:58,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  56. ¼ʱ䣺2025-02-14 09:37:58,131 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  57. ¼ʱ䣺2025-02-14 09:37:58,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  58. ¼ʱ䣺2025-02-14 09:37:58,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  59. ¼ʱ䣺2025-02-14 09:37:58,141 ߳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
  60. ¼ʱ䣺2025-02-14 09:37:58,142 ߳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
  61. ¼ʱ䣺2025-02-14 09:37:58,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  62. ¼ʱ䣺2025-02-14 09:37:58,142 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  63. ¼ʱ䣺2025-02-14 09:37:58,143 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  64. ¼ʱ䣺2025-02-14 09:37:58,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  65. ¼ʱ䣺2025-02-14 09:37:58,159 ߳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
  66. ¼ʱ䣺2025-02-14 09:37:58,159 ߳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
  67. ¼ʱ䣺2025-02-14 09:37:58,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  68. ¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  69. ¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  70. ¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  71. ¼ʱ䣺2025-02-14 09:37:58,160 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  72. ¼ʱ䣺2025-02-14 09:37:58,161 ߳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
  73. ¼ʱ䣺2025-02-14 09:37:58,161 ߳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
  74. ¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  75. ¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  76. ¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  77. ¼ʱ䣺2025-02-14 09:37:58,161 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  78. ¼ʱ䣺2025-02-14 09:37:58,164 ߳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
  79. ¼ʱ䣺2025-02-14 09:37:58,164 ߳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
  80. ¼ʱ䣺2025-02-14 09:37:58,164 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  81. ¼ʱ䣺2025-02-14 09:37:58,167 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  82. ¼ʱ䣺2025-02-14 09:37:58,168 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  83. ¼ʱ䣺2025-02-14 09:37:58,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  84. ¼ʱ䣺2025-02-14 09:37:58,195 ߳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
  85. ¼ʱ䣺2025-02-14 09:37:58,196 ߳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
  86. ¼ʱ䣺2025-02-14 09:37:58,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  87. ¼ʱ䣺2025-02-14 09:37:58,196 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  88. ¼ʱ䣺2025-02-14 09:37:58,197 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  89. ¼ʱ䣺2025-02-14 09:37:58,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  90. ¼ʱ䣺2025-02-14 09:37:58,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  91. ¼ʱ䣺2025-02-14 09:37:58,201 ߳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
  92. ¼ʱ䣺2025-02-14 09:37:58,201 ߳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
  93. ¼ʱ䣺2025-02-14 09:37:58,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  94. ¼ʱ䣺2025-02-14 09:37:58,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  95. ¼ʱ䣺2025-02-14 09:37:58,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  96. ¼ʱ䣺2025-02-14 09:37:58,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  97. ¼ʱ䣺2025-02-14 09:46:29,576 ߳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
  98. ¼ʱ䣺2025-02-14 09:46:29,585 ߳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
  99. ¼ʱ䣺2025-02-14 09:46:29,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  100. ¼ʱ䣺2025-02-14 09:46:29,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  101. ¼ʱ䣺2025-02-14 09:46:29,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  102. ¼ʱ䣺2025-02-14 09:46:29,612 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  103. ¼ʱ䣺2025-02-14 09:46:29,612 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  104. ¼ʱ䣺2025-02-14 09:46:29,613 ߳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
  105. ¼ʱ䣺2025-02-14 09:46:29,613 ߳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
  106. ¼ʱ䣺2025-02-14 09:46:29,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  107. ¼ʱ䣺2025-02-14 09:46:29,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  108. ¼ʱ䣺2025-02-14 09:46:29,614 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  109. ¼ʱ䣺2025-02-14 09:46:29,614 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  110. ¼ʱ䣺2025-02-14 09:46:29,636 ߳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
  111. ¼ʱ䣺2025-02-14 09:46:29,636 ߳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
  112. ¼ʱ䣺2025-02-14 09:46:29,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  113. ¼ʱ䣺2025-02-14 09:46:29,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  114. ¼ʱ䣺2025-02-14 09:46:29,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  115. ¼ʱ䣺2025-02-14 09:46:29,654 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  116. ¼ʱ䣺2025-02-14 09:46:29,656 ߳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
  117. ¼ʱ䣺2025-02-14 09:46:29,656 ߳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
  118. ¼ʱ䣺2025-02-14 09:46:29,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  119. ¼ʱ䣺2025-02-14 09:46:29,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  120. ¼ʱ䣺2025-02-14 09:46:29,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  121. ¼ʱ䣺2025-02-14 09:46:29,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  122. ¼ʱ䣺2025-02-14 09:46:29,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  123. ¼ʱ䣺2025-02-14 09:46:29,663 ߳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
  124. ¼ʱ䣺2025-02-14 09:46:29,663 ߳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
  125. ¼ʱ䣺2025-02-14 09:46:29,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  126. ¼ʱ䣺2025-02-14 09:46:29,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  127. ¼ʱ䣺2025-02-14 09:46:29,664 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  128. ¼ʱ䣺2025-02-14 09:46:29,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  129. ¼ʱ䣺2025-02-14 09:46:29,669 ߳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
  130. ¼ʱ䣺2025-02-14 09:46:29,669 ߳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
  131. ¼ʱ䣺2025-02-14 09:46:29,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  132. ¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  133. ¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  134. ¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  135. ¼ʱ䣺2025-02-14 09:46:29,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  136. ¼ʱ䣺2025-02-14 09:46:29,670 ߳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
  137. ¼ʱ䣺2025-02-14 09:46:29,671 ߳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
  138. ¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  139. ¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  140. ¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  141. ¼ʱ䣺2025-02-14 09:46:29,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  142. ¼ʱ䣺2025-02-14 09:46:29,673 ߳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
  143. ¼ʱ䣺2025-02-14 09:46:29,673 ߳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
  144. ¼ʱ䣺2025-02-14 09:46:29,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  145. ¼ʱ䣺2025-02-14 09:46:29,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  146. ¼ʱ䣺2025-02-14 09:46:29,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  147. ¼ʱ䣺2025-02-14 09:46:29,691 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  148. ¼ʱ䣺2025-02-14 09:46:29,693 ߳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
  149. ¼ʱ䣺2025-02-14 09:46:29,693 ߳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
  150. ¼ʱ䣺2025-02-14 09:46:29,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  151. ¼ʱ䣺2025-02-14 09:46:29,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  152. ¼ʱ䣺2025-02-14 09:46:29,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  153. ¼ʱ䣺2025-02-14 09:46:29,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  154. ¼ʱ䣺2025-02-14 09:46:29,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  155. ¼ʱ䣺2025-02-14 09:46:29,701 ߳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
  156. ¼ʱ䣺2025-02-14 09:46:29,701 ߳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
  157. ¼ʱ䣺2025-02-14 09:46:29,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  158. ¼ʱ䣺2025-02-14 09:46:29,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  159. ¼ʱ䣺2025-02-14 09:46:29,702 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  160. ¼ʱ䣺2025-02-14 09:46:29,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  161. ¼ʱ䣺2025-02-14 09:46:29,719 ߳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
  162. ¼ʱ䣺2025-02-14 09:46:29,719 ߳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
  163. ¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  164. ¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  165. ¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  166. ¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  167. ¼ʱ䣺2025-02-14 09:46:29,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  168. ¼ʱ䣺2025-02-14 09:46:29,720 ߳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
  169. ¼ʱ䣺2025-02-14 09:46:29,720 ߳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
  170. ¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  171. ¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  172. ¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  173. ¼ʱ䣺2025-02-14 09:46:29,720 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  174. ¼ʱ䣺2025-02-14 09:46:29,723 ߳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
  175. ¼ʱ䣺2025-02-14 09:46:29,723 ߳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
  176. ¼ʱ䣺2025-02-14 09:46:29,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  177. ¼ʱ䣺2025-02-14 09:46:29,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  178. ¼ʱ䣺2025-02-14 09:46:29,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  179. ¼ʱ䣺2025-02-14 09:46:29,740 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  180. ¼ʱ䣺2025-02-14 09:46:29,741 ߳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
  181. ¼ʱ䣺2025-02-14 09:46:29,742 ߳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
  182. ¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  183. ¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  184. ¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  185. ¼ʱ䣺2025-02-14 09:46:29,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  186. ¼ʱ䣺2025-02-14 09:46:29,745 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  187. ¼ʱ䣺2025-02-14 09:46:29,746 ߳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
  188. ¼ʱ䣺2025-02-14 09:46:29,746 ߳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
  189. ¼ʱ䣺2025-02-14 09:46:29,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  190. ¼ʱ䣺2025-02-14 09:46:29,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  191. ¼ʱ䣺2025-02-14 09:46:29,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  192. ¼ʱ䣺2025-02-14 09:46:29,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  193. ¼ʱ䣺2025-02-14 09:46:31,856 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵPostgreSqlFormatConfig.xml
  194. ¼ʱ䣺2025-02-14 09:46:31,933 ߳ID:[1]- :FileOperation :GetFormatConfigData Ϣ:XML ĵ(0, 0)д
  195. ¼ʱ䣺2025-02-14 09:47:47,036 ߳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
  196. ¼ʱ䣺2025-02-14 09:47:47,044 ߳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
  197. ¼ʱ䣺2025-02-14 09:47:47,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  198. ¼ʱ䣺2025-02-14 09:47:47,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  199. ¼ʱ䣺2025-02-14 09:47:47,068 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  200. ¼ʱ䣺2025-02-14 09:47:47,069 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  201. ¼ʱ䣺2025-02-14 09:47:47,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  202. ¼ʱ䣺2025-02-14 09:47:47,071 ߳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
  203. ¼ʱ䣺2025-02-14 09:47:47,071 ߳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
  204. ¼ʱ䣺2025-02-14 09:47:47,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  205. ¼ʱ䣺2025-02-14 09:47:47,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  206. ¼ʱ䣺2025-02-14 09:47:47,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  207. ¼ʱ䣺2025-02-14 09:47:47,073 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  208. ¼ʱ䣺2025-02-14 09:47:47,095 ߳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
  209. ¼ʱ䣺2025-02-14 09:47:47,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
  210. ¼ʱ䣺2025-02-14 09:47:47,095 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  211. ¼ʱ䣺2025-02-14 09:47:47,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  212. ¼ʱ䣺2025-02-14 09:47:47,098 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  213. ¼ʱ䣺2025-02-14 09:47:47,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  214. ¼ʱ䣺2025-02-14 09:47:47,118 ߳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
  215. ¼ʱ䣺2025-02-14 09:47:47,118 ߳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
  216. ¼ʱ䣺2025-02-14 09:47:47,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  217. ¼ʱ䣺2025-02-14 09:47:47,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  218. ¼ʱ䣺2025-02-14 09:47:47,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  219. ¼ʱ䣺2025-02-14 09:47:47,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  220. ¼ʱ䣺2025-02-14 09:47:47,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  221. ¼ʱ䣺2025-02-14 09:47:47,125 ߳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
  222. ¼ʱ䣺2025-02-14 09:47:47,125 ߳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
  223. ¼ʱ䣺2025-02-14 09:47:47,125 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  224. ¼ʱ䣺2025-02-14 09:47:47,126 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  225. ¼ʱ䣺2025-02-14 09:47:47,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  226. ¼ʱ䣺2025-02-14 09:47:47,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  227. ¼ʱ䣺2025-02-14 09:47:47,133 ߳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
  228. ¼ʱ䣺2025-02-14 09:47:47,133 ߳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
  229. ¼ʱ䣺2025-02-14 09:47:47,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  230. ¼ʱ䣺2025-02-14 09:47:47,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  231. ¼ʱ䣺2025-02-14 09:47:47,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  232. ¼ʱ䣺2025-02-14 09:47:47,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  233. ¼ʱ䣺2025-02-14 09:47:47,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  234. ¼ʱ䣺2025-02-14 09:47:47,135 ߳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
  235. ¼ʱ䣺2025-02-14 09:47:47,135 ߳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
  236. ¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  237. ¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  238. ¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  239. ¼ʱ䣺2025-02-14 09:47:47,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  240. ¼ʱ䣺2025-02-14 09:47:47,137 ߳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
  241. ¼ʱ䣺2025-02-14 09:47:47,137 ߳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
  242. ¼ʱ䣺2025-02-14 09:47:47,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  243. ¼ʱ䣺2025-02-14 09:47:47,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  244. ¼ʱ䣺2025-02-14 09:47:47,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  245. ¼ʱ䣺2025-02-14 09:47:47,155 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  246. ¼ʱ䣺2025-02-14 09:47:47,157 ߳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
  247. ¼ʱ䣺2025-02-14 09:47:47,157 ߳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
  248. ¼ʱ䣺2025-02-14 09:47:47,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  249. ¼ʱ䣺2025-02-14 09:47:47,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  250. ¼ʱ䣺2025-02-14 09:47:47,158 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  251. ¼ʱ䣺2025-02-14 09:47:47,158 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  252. ¼ʱ䣺2025-02-14 09:47:47,163 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  253. ¼ʱ䣺2025-02-14 09:47:47,165 ߳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
  254. ¼ʱ䣺2025-02-14 09:47:47,165 ߳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
  255. ¼ʱ䣺2025-02-14 09:47:47,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  256. ¼ʱ䣺2025-02-14 09:47:47,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  257. ¼ʱ䣺2025-02-14 09:47:47,166 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  258. ¼ʱ䣺2025-02-14 09:47:47,166 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  259. ¼ʱ䣺2025-02-14 09:47:47,173 ߳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
  260. ¼ʱ䣺2025-02-14 09:47:47,173 ߳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
  261. ¼ʱ䣺2025-02-14 09:47:47,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  262. ¼ʱ䣺2025-02-14 09:47:47,173 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  263. ¼ʱ䣺2025-02-14 09:47:47,174 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  264. ¼ʱ䣺2025-02-14 09:47:47,174 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  265. ¼ʱ䣺2025-02-14 09:47:47,174 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  266. ¼ʱ䣺2025-02-14 09:47:47,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
  267. ¼ʱ䣺2025-02-14 09:47:47,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
  268. ¼ʱ䣺2025-02-14 09:47:47,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  269. ¼ʱ䣺2025-02-14 09:47:47,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  270. ¼ʱ䣺2025-02-14 09:47:47,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  271. ¼ʱ䣺2025-02-14 09:47:47,176 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  272. ¼ʱ䣺2025-02-14 09:47:47,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
  273. ¼ʱ䣺2025-02-14 09:47:47,180 ߳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
  274. ¼ʱ䣺2025-02-14 09:47:47,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  275. ¼ʱ䣺2025-02-14 09:47:47,183 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  276. ¼ʱ䣺2025-02-14 09:47:47,184 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  277. ¼ʱ䣺2025-02-14 09:47:47,199 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  278. ¼ʱ䣺2025-02-14 09:47:47,201 ߳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
  279. ¼ʱ䣺2025-02-14 09:47:47,201 ߳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
  280. ¼ʱ䣺2025-02-14 09:47:47,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  281. ¼ʱ䣺2025-02-14 09:47:47,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  282. ¼ʱ䣺2025-02-14 09:47:47,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  283. ¼ʱ䣺2025-02-14 09:47:47,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  284. ¼ʱ䣺2025-02-14 09:47:47,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  285. ¼ʱ䣺2025-02-14 09:47:47,205 ߳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
  286. ¼ʱ䣺2025-02-14 09:47:47,205 ߳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
  287. ¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  288. ¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  289. ¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  290. ¼ʱ䣺2025-02-14 09:47:47,205 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  291. ¼ʱ䣺2025-02-14 09:48:04,204 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵPostgreSqlFormatConfig.xml
  292. ¼ʱ䣺2025-02-14 09:50:27,587 ߳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
  293. ¼ʱ䣺2025-02-14 09:50:27,587 ߳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
  294. ¼ʱ䣺2025-02-14 09:50:27,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  295. ¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  296. ¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  297. ¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  298. ¼ʱ䣺2025-02-14 09:50:27,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  299. ¼ʱ䣺2025-02-14 09:50:27,590 ߳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
  300. ¼ʱ䣺2025-02-14 09:50:27,590 ߳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
  301. ¼ʱ䣺2025-02-14 09:50:27,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  302. ¼ʱ䣺2025-02-14 09:50:27,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  303. ¼ʱ䣺2025-02-14 09:50:27,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  304. ¼ʱ䣺2025-02-14 09:50:27,591 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  305. ¼ʱ䣺2025-02-14 09:50:27,593 ߳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
  306. ¼ʱ䣺2025-02-14 09:50:27,593 ߳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
  307. ¼ʱ䣺2025-02-14 09:50:27,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  308. ¼ʱ䣺2025-02-14 09:50:27,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  309. ¼ʱ䣺2025-02-14 09:50:27,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  310. ¼ʱ䣺2025-02-14 09:50:27,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  311. ¼ʱ䣺2025-02-14 09:50:27,617 ߳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
  312. ¼ʱ䣺2025-02-14 09:50:27,617 ߳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
  313. ¼ʱ䣺2025-02-14 09:50:27,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  314. ¼ʱ䣺2025-02-14 09:50:27,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  315. ¼ʱ䣺2025-02-14 09:50:27,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  316. ¼ʱ䣺2025-02-14 09:50:27,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  317. ¼ʱ䣺2025-02-14 09:50:27,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  318. ¼ʱ䣺2025-02-14 09:50:27,623 ߳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
  319. ¼ʱ䣺2025-02-14 09:50:27,623 ߳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
  320. ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  321. ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  322. ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  323. ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  324. ¼ʱ䣺2025-02-14 11:38:35,389 ߳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
  325. ¼ʱ䣺2025-02-14 11:38:35,397 ߳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
  326. ¼ʱ䣺2025-02-14 11:38:35,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  327. ¼ʱ䣺2025-02-14 11:38:35,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  328. ¼ʱ䣺2025-02-14 11:38:35,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  329. ¼ʱ䣺2025-02-14 11:38:35,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  330. ¼ʱ䣺2025-02-14 11:38:35,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  331. ¼ʱ䣺2025-02-14 11:38:35,426 ߳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
  332. ¼ʱ䣺2025-02-14 11:38:35,427 ߳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
  333. ¼ʱ䣺2025-02-14 11:38:35,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  334. ¼ʱ䣺2025-02-14 11:38:35,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  335. ¼ʱ䣺2025-02-14 11:38:35,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  336. ¼ʱ䣺2025-02-14 11:38:35,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  337. ¼ʱ䣺2025-02-14 11:38:35,462 ߳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
  338. ¼ʱ䣺2025-02-14 11:38:35,462 ߳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
  339. ¼ʱ䣺2025-02-14 11:38:35,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  340. ¼ʱ䣺2025-02-14 11:38:35,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  341. ¼ʱ䣺2025-02-14 11:38:35,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  342. ¼ʱ䣺2025-02-14 11:38:35,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  343. ¼ʱ䣺2025-02-14 11:38:35,496 ߳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
  344. ¼ʱ䣺2025-02-14 11:38:35,496 ߳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
  345. ¼ʱ䣺2025-02-14 11:38:35,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  346. ¼ʱ䣺2025-02-14 11:38:35,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  347. ¼ʱ䣺2025-02-14 11:38:35,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  348. ¼ʱ䣺2025-02-14 11:38:35,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  349. ¼ʱ䣺2025-02-14 11:38:35,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  350. ¼ʱ䣺2025-02-14 11:38:35,506 ߳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
  351. ¼ʱ䣺2025-02-14 11:38:35,506 ߳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
  352. ¼ʱ䣺2025-02-14 11:38:35,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  353. ¼ʱ䣺2025-02-14 11:38:35,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  354. ¼ʱ䣺2025-02-14 11:38:35,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  355. ¼ʱ䣺2025-02-14 11:38:35,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  356. ¼ʱ䣺2025-02-14 11:38:35,516 ߳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
  357. ¼ʱ䣺2025-02-14 11:38:35,516 ߳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
  358. ¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  359. ¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  360. ¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  361. ¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  362. ¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  363. ¼ʱ䣺2025-02-14 11:38:35,517 ߳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
  364. ¼ʱ䣺2025-02-14 11:38:35,517 ߳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
  365. ¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  366. ¼ʱ䣺2025-02-14 11:38:35,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  367. ¼ʱ䣺2025-02-14 11:38:35,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  368. ¼ʱ䣺2025-02-14 11:38:35,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  369. ¼ʱ䣺2025-02-14 11:38:35,520 ߳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
  370. ¼ʱ䣺2025-02-14 11:38:35,520 ߳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
  371. ¼ʱ䣺2025-02-14 11:38:35,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  372. ¼ʱ䣺2025-02-14 11:38:35,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  373. ¼ʱ䣺2025-02-14 11:38:35,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  374. ¼ʱ䣺2025-02-14 11:38:35,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  375. ¼ʱ䣺2025-02-14 11:38:35,552 ߳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
  376. ¼ʱ䣺2025-02-14 11:38:35,552 ߳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
  377. ¼ʱ䣺2025-02-14 11:38:35,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  378. ¼ʱ䣺2025-02-14 11:38:35,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  379. ¼ʱ䣺2025-02-14 11:38:35,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  380. ¼ʱ䣺2025-02-14 11:38:35,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  381. ¼ʱ䣺2025-02-14 11:38:35,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  382. ¼ʱ䣺2025-02-14 11:38:35,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
  383. ¼ʱ䣺2025-02-14 11:38:35,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
  384. ¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  385. ¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  386. ¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  387. ¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  388. ¼ʱ䣺2025-02-14 11:38:35,582 ߳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
  389. ¼ʱ䣺2025-02-14 11:38:35,582 ߳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
  390. ¼ʱ䣺2025-02-14 11:38:35,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  391. ¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  392. ¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  393. ¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  394. ¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  395. ¼ʱ䣺2025-02-14 11:38:35,584 ߳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
  396. ¼ʱ䣺2025-02-14 11:38:35,584 ߳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
  397. ¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  398. ¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  399. ¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  400. ¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  401. ¼ʱ䣺2025-02-14 11:38:35,586 ߳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
  402. ¼ʱ䣺2025-02-14 11:38:35,586 ߳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
  403. ¼ʱ䣺2025-02-14 11:38:35,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  404. ¼ʱ䣺2025-02-14 11:38:35,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  405. ¼ʱ䣺2025-02-14 11:38:35,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  406. ¼ʱ䣺2025-02-14 11:38:35,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  407. ¼ʱ䣺2025-02-14 11:38:35,612 ߳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
  408. ¼ʱ䣺2025-02-14 11:38:35,612 ߳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
  409. ¼ʱ䣺2025-02-14 11:38:35,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  410. ¼ʱ䣺2025-02-14 11:38:35,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  411. ¼ʱ䣺2025-02-14 11:38:35,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  412. ¼ʱ䣺2025-02-14 11:38:35,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  413. ¼ʱ䣺2025-02-14 11:38:35,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  414. ¼ʱ䣺2025-02-14 11:38:35,617 ߳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
  415. ¼ʱ䣺2025-02-14 11:38:35,617 ߳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
  416. ¼ʱ䣺2025-02-14 11:38:35,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  417. ¼ʱ䣺2025-02-14 11:38:35,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  418. ¼ʱ䣺2025-02-14 11:38:35,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  419. ¼ʱ䣺2025-02-14 11:38:35,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  420. ¼ʱ䣺2025-02-14 11:38:49,233 ߳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
  421. ¼ʱ䣺2025-02-14 11:38:49,233 ߳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
  422. ¼ʱ䣺2025-02-14 11:38:49,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  423. ¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  424. ¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  425. ¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  426. ¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  427. ¼ʱ䣺2025-02-14 11:38:49,235 ߳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
  428. ¼ʱ䣺2025-02-14 11:38:49,235 ߳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
  429. ¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  430. ¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  431. ¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  432. ¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  433. ¼ʱ䣺2025-02-14 11:38:49,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
  434. ¼ʱ䣺2025-02-14 11:38:49,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
  435. ¼ʱ䣺2025-02-14 11:38:49,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  436. ¼ʱ䣺2025-02-14 11:38:49,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  437. ¼ʱ䣺2025-02-14 11:38:49,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  438. ¼ʱ䣺2025-02-14 11:38:49,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  439. ¼ʱ䣺2025-02-14 11:38:49,292 ߳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
  440. ¼ʱ䣺2025-02-14 11:38:49,292 ߳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
  441. ¼ʱ䣺2025-02-14 11:38:49,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  442. ¼ʱ䣺2025-02-14 11:38:49,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  443. ¼ʱ䣺2025-02-14 11:38:49,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  444. ¼ʱ䣺2025-02-14 11:38:49,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  445. ¼ʱ䣺2025-02-14 11:38:53,352 ߳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
  446. ¼ʱ䣺2025-02-14 11:38:53,352 ߳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
  447. ¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  448. ¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  449. ¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  450. ¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  451. ¼ʱ䣺2025-02-14 11:38:53,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  452. ¼ʱ䣺2025-02-14 11:38:53,354 ߳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
  453. ¼ʱ䣺2025-02-14 11:38:53,354 ߳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
  454. ¼ʱ䣺2025-02-14 11:38:53,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  455. ¼ʱ䣺2025-02-14 11:38:53,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  456. ¼ʱ䣺2025-02-14 11:38:53,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  457. ¼ʱ䣺2025-02-14 11:38:53,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  458. ¼ʱ䣺2025-02-14 11:38:53,357 ߳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
  459. ¼ʱ䣺2025-02-14 11:38:53,357 ߳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
  460. ¼ʱ䣺2025-02-14 11:38:53,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  461. ¼ʱ䣺2025-02-14 11:38:53,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  462. ¼ʱ䣺2025-02-14 11:38:53,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  463. ¼ʱ䣺2025-02-14 11:38:53,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  464. ¼ʱ䣺2025-02-14 11:38:53,390 ߳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
  465. ¼ʱ䣺2025-02-14 11:38:53,390 ߳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
  466. ¼ʱ䣺2025-02-14 11:38:53,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  467. ¼ʱ䣺2025-02-14 11:38:53,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  468. ¼ʱ䣺2025-02-14 11:38:53,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  469. ¼ʱ䣺2025-02-14 11:38:53,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  470. ¼ʱ䣺2025-02-14 11:38:53,403 ߳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
  471. ¼ʱ䣺2025-02-14 11:38:53,403 ߳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
  472. ¼ʱ䣺2025-02-14 11:38:53,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  473. ¼ʱ䣺2025-02-14 11:38:53,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  474. ¼ʱ䣺2025-02-14 11:38:53,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  475. ¼ʱ䣺2025-02-14 11:38:53,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  476. ¼ʱ䣺2025-02-14 11:38:53,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  477. ¼ʱ䣺2025-02-14 11:38:53,405 ߳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
  478. ¼ʱ䣺2025-02-14 11:38:53,405 ߳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
  479. ¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  480. ¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  481. ¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  482. ¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  483. ¼ʱ䣺2025-02-14 11:38:53,432 ߳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
  484. ¼ʱ䣺2025-02-14 11:38:53,432 ߳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
  485. ¼ʱ䣺2025-02-14 11:38:53,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  486. ¼ʱ䣺2025-02-14 11:38:53,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  487. ¼ʱ䣺2025-02-14 11:38:53,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  488. ¼ʱ䣺2025-02-14 11:38:53,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  489. ¼ʱ䣺2025-02-14 11:38:53,463 ߳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
  490. ¼ʱ䣺2025-02-14 11:38:53,463 ߳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
  491. ¼ʱ䣺2025-02-14 11:38:53,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  492. ¼ʱ䣺2025-02-14 11:38:53,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  493. ¼ʱ䣺2025-02-14 11:38:53,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  494. ¼ʱ䣺2025-02-14 11:38:53,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  495. ¼ʱ䣺2025-02-14 11:38:53,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  496. ¼ʱ䣺2025-02-14 11:38:53,468 ߳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
  497. ¼ʱ䣺2025-02-14 11:38:53,468 ߳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
  498. ¼ʱ䣺2025-02-14 11:38:53,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  499. ¼ʱ䣺2025-02-14 11:38:53,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  500. ¼ʱ䣺2025-02-14 11:38:53,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  501. ¼ʱ䣺2025-02-14 11:38:53,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  502. ¼ʱ䣺2025-02-14 11:38:53,477 ߳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
  503. ¼ʱ䣺2025-02-14 11:38:53,477 ߳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
  504. ¼ʱ䣺2025-02-14 11:38:53,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  505. ¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  506. ¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  507. ¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  508. ¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  509. ¼ʱ䣺2025-02-14 11:38:53,479 ߳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
  510. ¼ʱ䣺2025-02-14 11:38:53,479 ߳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
  511. ¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  512. ¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  513. ¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  514. ¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  515. ¼ʱ䣺2025-02-14 11:38:53,481 ߳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
  516. ¼ʱ䣺2025-02-14 11:38:53,481 ߳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
  517. ¼ʱ䣺2025-02-14 11:38:53,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  518. ¼ʱ䣺2025-02-14 11:38:53,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  519. ¼ʱ䣺2025-02-14 11:38:53,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  520. ¼ʱ䣺2025-02-14 11:38:53,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  521. ¼ʱ䣺2025-02-14 11:38:53,511 ߳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
  522. ¼ʱ䣺2025-02-14 11:38:53,511 ߳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
  523. ¼ʱ䣺2025-02-14 11:38:53,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  524. ¼ʱ䣺2025-02-14 11:38:53,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  525. ¼ʱ䣺2025-02-14 11:38:53,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  526. ¼ʱ䣺2025-02-14 11:38:53,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  527. ¼ʱ䣺2025-02-14 11:38:53,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  528. ¼ʱ䣺2025-02-14 11:38:53,516 ߳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
  529. ¼ʱ䣺2025-02-14 11:38:53,516 ߳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
  530. ¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  531. ¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  532. ¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  533. ¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  534. ¼ʱ䣺2025-02-14 11:41:05,070 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Connection unexpectedly terminated.
  535. ¼ʱ䣺2025-02-14 11:45:38,893 ߳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
  536. ¼ʱ䣺2025-02-14 11:45:38,901 ߳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
  537. ¼ʱ䣺2025-02-14 11:45:38,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  538. ¼ʱ䣺2025-02-14 11:45:38,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  539. ¼ʱ䣺2025-02-14 11:45:38,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  540. ¼ʱ䣺2025-02-14 11:45:38,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  541. ¼ʱ䣺2025-02-14 11:45:38,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  542. ¼ʱ䣺2025-02-14 11:45:38,929 ߳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
  543. ¼ʱ䣺2025-02-14 11:45:38,929 ߳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
  544. ¼ʱ䣺2025-02-14 11:45:38,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  545. ¼ʱ䣺2025-02-14 11:45:38,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  546. ¼ʱ䣺2025-02-14 11:45:38,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  547. ¼ʱ䣺2025-02-14 11:45:38,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  548. ¼ʱ䣺2025-02-14 11:45:38,960 ߳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
  549. ¼ʱ䣺2025-02-14 11:45:38,960 ߳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
  550. ¼ʱ䣺2025-02-14 11:45:38,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  551. ¼ʱ䣺2025-02-14 11:45:38,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  552. ¼ʱ䣺2025-02-14 11:45:38,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  553. ¼ʱ䣺2025-02-14 11:45:38,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  554. ¼ʱ䣺2025-02-14 11:45:38,994 ߳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
  555. ¼ʱ䣺2025-02-14 11:45:38,994 ߳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
  556. ¼ʱ䣺2025-02-14 11:45:38,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  557. ¼ʱ䣺2025-02-14 11:45:38,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  558. ¼ʱ䣺2025-02-14 11:45:38,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  559. ¼ʱ䣺2025-02-14 11:45:38,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  560. ¼ʱ䣺2025-02-14 11:45:39,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  561. ¼ʱ䣺2025-02-14 11:45:39,002 ߳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
  562. ¼ʱ䣺2025-02-14 11:45:39,002 ߳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
  563. ¼ʱ䣺2025-02-14 11:45:39,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  564. ¼ʱ䣺2025-02-14 11:45:39,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  565. ¼ʱ䣺2025-02-14 11:45:39,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  566. ¼ʱ䣺2025-02-14 11:45:39,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  567. ¼ʱ䣺2025-02-14 11:45:39,017 ߳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
  568. ¼ʱ䣺2025-02-14 11:45:39,017 ߳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
  569. ¼ʱ䣺2025-02-14 11:45:39,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  570. ¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  571. ¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  572. ¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  573. ¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  574. ¼ʱ䣺2025-02-14 11:45:39,019 ߳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
  575. ¼ʱ䣺2025-02-14 11:45:39,019 ߳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
  576. ¼ʱ䣺2025-02-14 11:45:39,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  577. ¼ʱ䣺2025-02-14 11:45:39,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  578. ¼ʱ䣺2025-02-14 11:45:39,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  579. ¼ʱ䣺2025-02-14 11:45:39,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  580. ¼ʱ䣺2025-02-14 11:45:39,022 ߳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
  581. ¼ʱ䣺2025-02-14 11:45:39,022 ߳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
  582. ¼ʱ䣺2025-02-14 11:45:39,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  583. ¼ʱ䣺2025-02-14 11:45:39,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  584. ¼ʱ䣺2025-02-14 11:45:39,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  585. ¼ʱ䣺2025-02-14 11:45:39,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  586. ¼ʱ䣺2025-02-14 11:45:39,048 ߳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
  587. ¼ʱ䣺2025-02-14 11:45:39,048 ߳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
  588. ¼ʱ䣺2025-02-14 11:45:39,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  589. ¼ʱ䣺2025-02-14 11:45:39,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  590. ¼ʱ䣺2025-02-14 11:45:39,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  591. ¼ʱ䣺2025-02-14 11:45:39,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  592. ¼ʱ䣺2025-02-14 11:45:39,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  593. ¼ʱ䣺2025-02-14 11:45:39,059 ߳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
  594. ¼ʱ䣺2025-02-14 11:45:39,059 ߳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
  595. ¼ʱ䣺2025-02-14 11:45:39,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  596. ¼ʱ䣺2025-02-14 11:45:39,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  597. ¼ʱ䣺2025-02-14 11:45:39,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  598. ¼ʱ䣺2025-02-14 11:45:39,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  599. ¼ʱ䣺2025-02-14 11:45:39,091 ߳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
  600. ¼ʱ䣺2025-02-14 11:45:39,091 ߳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
  601. ¼ʱ䣺2025-02-14 11:45:39,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  602. ¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  603. ¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  604. ¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  605. ¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  606. ¼ʱ䣺2025-02-14 11:45:39,093 ߳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
  607. ¼ʱ䣺2025-02-14 11:45:39,093 ߳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
  608. ¼ʱ䣺2025-02-14 11:45:39,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  609. ¼ʱ䣺2025-02-14 11:45:39,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  610. ¼ʱ䣺2025-02-14 11:45:39,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  611. ¼ʱ䣺2025-02-14 11:45:39,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  612. ¼ʱ䣺2025-02-14 11:45:39,099 ߳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
  613. ¼ʱ䣺2025-02-14 11:45:39,099 ߳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
  614. ¼ʱ䣺2025-02-14 11:45:39,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  615. ¼ʱ䣺2025-02-14 11:45:39,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  616. ¼ʱ䣺2025-02-14 11:45:39,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  617. ¼ʱ䣺2025-02-14 11:45:39,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  618. ¼ʱ䣺2025-02-14 11:45:39,122 ߳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
  619. ¼ʱ䣺2025-02-14 11:45:39,122 ߳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
  620. ¼ʱ䣺2025-02-14 11:45:39,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  621. ¼ʱ䣺2025-02-14 11:45:39,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  622. ¼ʱ䣺2025-02-14 11:45:39,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  623. ¼ʱ䣺2025-02-14 11:45:39,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  624. ¼ʱ䣺2025-02-14 11:45:39,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  625. ¼ʱ䣺2025-02-14 11:45:39,127 ߳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
  626. ¼ʱ䣺2025-02-14 11:45:39,127 ߳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
  627. ¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  628. ¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  629. ¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  630. ¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  631. ¼ʱ䣺2025-02-14 11:45:44,927 ߳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
  632. ¼ʱ䣺2025-02-14 11:45:44,927 ߳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
  633. ¼ʱ䣺2025-02-14 11:45:44,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  634. ¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  635. ¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  636. ¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  637. ¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  638. ¼ʱ䣺2025-02-14 11:45:44,929 ߳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
  639. ¼ʱ䣺2025-02-14 11:45:44,929 ߳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
  640. ¼ʱ䣺2025-02-14 11:45:44,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  641. ¼ʱ䣺2025-02-14 11:45:44,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  642. ¼ʱ䣺2025-02-14 11:45:44,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  643. ¼ʱ䣺2025-02-14 11:45:44,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  644. ¼ʱ䣺2025-02-14 11:45:44,932 ߳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
  645. ¼ʱ䣺2025-02-14 11:45:44,932 ߳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
  646. ¼ʱ䣺2025-02-14 11:45:44,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  647. ¼ʱ䣺2025-02-14 11:45:44,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  648. ¼ʱ䣺2025-02-14 11:45:44,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  649. ¼ʱ䣺2025-02-14 11:45:44,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  650. ¼ʱ䣺2025-02-14 11:45:44,969 ߳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
  651. ¼ʱ䣺2025-02-14 11:45:44,970 ߳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
  652. ¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  653. ¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  654. ¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  655. ¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  656. ¼ʱ䣺2025-02-14 11:45:44,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  657. ¼ʱ䣺2025-02-14 11:45:44,974 ߳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
  658. ¼ʱ䣺2025-02-14 11:45:44,974 ߳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
  659. ¼ʱ䣺2025-02-14 11:45:44,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  660. ¼ʱ䣺2025-02-14 11:45:44,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  661. ¼ʱ䣺2025-02-14 11:45:44,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  662. ¼ʱ䣺2025-02-14 11:45:44,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  663. ¼ʱ䣺2025-02-14 11:45:44,982 ߳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
  664. ¼ʱ䣺2025-02-14 11:45:44,983 ߳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
  665. ¼ʱ䣺2025-02-14 11:45:44,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  666. ¼ʱ䣺2025-02-14 11:45:44,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  667. ¼ʱ䣺2025-02-14 11:45:44,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  668. ¼ʱ䣺2025-02-14 11:45:44,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  669. ¼ʱ䣺2025-02-14 11:45:44,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  670. ¼ʱ䣺2025-02-14 11:45:44,985 ߳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
  671. ¼ʱ䣺2025-02-14 11:45:44,985 ߳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
  672. ¼ʱ䣺2025-02-14 11:45:44,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  673. ¼ʱ䣺2025-02-14 11:45:44,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  674. ¼ʱ䣺2025-02-14 11:45:44,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  675. ¼ʱ䣺2025-02-14 11:45:44,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  676. ¼ʱ䣺2025-02-14 11:45:44,988 ߳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
  677. ¼ʱ䣺2025-02-14 11:45:44,988 ߳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
  678. ¼ʱ䣺2025-02-14 11:45:44,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  679. ¼ʱ䣺2025-02-14 11:45:44,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  680. ¼ʱ䣺2025-02-14 11:45:44,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  681. ¼ʱ䣺2025-02-14 11:45:45,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  682. ¼ʱ䣺2025-02-14 11:45:45,026 ߳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
  683. ¼ʱ䣺2025-02-14 11:45:45,026 ߳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
  684. ¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  685. ¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  686. ¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  687. ¼ʱ䣺2025-02-14 11:45:45,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  688. ¼ʱ䣺2025-02-14 11:45:45,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  689. ¼ʱ䣺2025-02-14 11:45:45,032 ߳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
  690. ¼ʱ䣺2025-02-14 11:45:45,032 ߳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
  691. ¼ʱ䣺2025-02-14 11:45:45,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  692. ¼ʱ䣺2025-02-14 11:45:45,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  693. ¼ʱ䣺2025-02-14 11:45:45,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  694. ¼ʱ䣺2025-02-14 11:45:45,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  695. ¼ʱ䣺2025-02-14 11:45:45,041 ߳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
  696. ¼ʱ䣺2025-02-14 11:45:45,041 ߳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
  697. ¼ʱ䣺2025-02-14 11:45:45,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  698. ¼ʱ䣺2025-02-14 11:45:45,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  699. ¼ʱ䣺2025-02-14 11:45:45,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  700. ¼ʱ䣺2025-02-14 11:45:45,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  701. ¼ʱ䣺2025-02-14 11:45:45,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  702. ¼ʱ䣺2025-02-14 11:45:45,043 ߳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
  703. ¼ʱ䣺2025-02-14 11:45:45,043 ߳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
  704. ¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  705. ¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  706. ¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  707. ¼ʱ䣺2025-02-14 11:45:45,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  708. ¼ʱ䣺2025-02-14 11:45:45,049 ߳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
  709. ¼ʱ䣺2025-02-14 11:45:45,049 ߳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
  710. ¼ʱ䣺2025-02-14 11:45:45,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  711. ¼ʱ䣺2025-02-14 11:45:45,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  712. ¼ʱ䣺2025-02-14 11:45:45,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  713. ¼ʱ䣺2025-02-14 11:45:45,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  714. ¼ʱ䣺2025-02-14 11:45:45,081 ߳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
  715. ¼ʱ䣺2025-02-14 11:45:45,081 ߳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
  716. ¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  717. ¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  718. ¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  719. ¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  720. ¼ʱ䣺2025-02-14 11:45:45,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  721. ¼ʱ䣺2025-02-14 11:45:45,086 ߳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
  722. ¼ʱ䣺2025-02-14 11:45:45,087 ߳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
  723. ¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  724. ¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  725. ¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  726. ¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  727. ¼ʱ䣺2025-02-14 11:47:59,891 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Connection unexpectedly terminated.
  728. ¼ʱ䣺2025-02-14 14:19:42,469 ߳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
  729. ¼ʱ䣺2025-02-14 14:19:42,477 ߳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
  730. ¼ʱ䣺2025-02-14 14:19:42,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  731. ¼ʱ䣺2025-02-14 14:19:42,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  732. ¼ʱ䣺2025-02-14 14:19:42,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  733. ¼ʱ䣺2025-02-14 14:19:42,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  734. ¼ʱ䣺2025-02-14 14:19:42,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  735. ¼ʱ䣺2025-02-14 14:19:42,506 ߳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
  736. ¼ʱ䣺2025-02-14 14:19:42,506 ߳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
  737. ¼ʱ䣺2025-02-14 14:19:42,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  738. ¼ʱ䣺2025-02-14 14:19:42,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  739. ¼ʱ䣺2025-02-14 14:19:42,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  740. ¼ʱ䣺2025-02-14 14:19:42,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  741. ¼ʱ䣺2025-02-14 14:19:42,544 ߳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
  742. ¼ʱ䣺2025-02-14 14:19:42,544 ߳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
  743. ¼ʱ䣺2025-02-14 14:19:42,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  744. ¼ʱ䣺2025-02-14 14:19:42,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  745. ¼ʱ䣺2025-02-14 14:19:42,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  746. ¼ʱ䣺2025-02-14 14:19:42,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  747. ¼ʱ䣺2025-02-14 14:19:42,575 ߳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
  748. ¼ʱ䣺2025-02-14 14:19:42,575 ߳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
  749. ¼ʱ䣺2025-02-14 14:19:42,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  750. ¼ʱ䣺2025-02-14 14:19:42,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  751. ¼ʱ䣺2025-02-14 14:19:42,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  752. ¼ʱ䣺2025-02-14 14:19:42,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  753. ¼ʱ䣺2025-02-14 14:19:42,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  754. ¼ʱ䣺2025-02-14 14:19:42,584 ߳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
  755. ¼ʱ䣺2025-02-14 14:19:42,584 ߳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
  756. ¼ʱ䣺2025-02-14 14:19:42,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  757. ¼ʱ䣺2025-02-14 14:19:42,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  758. ¼ʱ䣺2025-02-14 14:19:42,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  759. ¼ʱ䣺2025-02-14 14:19:42,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  760. ¼ʱ䣺2025-02-14 14:19:42,593 ߳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
  761. ¼ʱ䣺2025-02-14 14:19:42,593 ߳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
  762. ¼ʱ䣺2025-02-14 14:19:42,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  763. ¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  764. ¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  765. ¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  766. ¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  767. ¼ʱ䣺2025-02-14 14:19:42,595 ߳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
  768. ¼ʱ䣺2025-02-14 14:19:42,595 ߳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
  769. ¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  770. ¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  771. ¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  772. ¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  773. ¼ʱ䣺2025-02-14 14:19:42,601 ߳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
  774. ¼ʱ䣺2025-02-14 14:19:42,601 ߳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
  775. ¼ʱ䣺2025-02-14 14:19:42,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  776. ¼ʱ䣺2025-02-14 14:19:42,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  777. ¼ʱ䣺2025-02-14 14:19:42,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  778. ¼ʱ䣺2025-02-14 14:19:42,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  779. ¼ʱ䣺2025-02-14 14:19:42,632 ߳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
  780. ¼ʱ䣺2025-02-14 14:19:42,632 ߳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
  781. ¼ʱ䣺2025-02-14 14:19:42,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  782. ¼ʱ䣺2025-02-14 14:19:42,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  783. ¼ʱ䣺2025-02-14 14:19:42,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  784. ¼ʱ䣺2025-02-14 14:19:42,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  785. ¼ʱ䣺2025-02-14 14:19:42,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  786. ¼ʱ䣺2025-02-14 14:19:42,641 ߳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
  787. ¼ʱ䣺2025-02-14 14:19:42,641 ߳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
  788. ¼ʱ䣺2025-02-14 14:19:42,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  789. ¼ʱ䣺2025-02-14 14:19:42,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  790. ¼ʱ䣺2025-02-14 14:19:42,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  791. ¼ʱ䣺2025-02-14 14:19:42,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  792. ¼ʱ䣺2025-02-14 14:19:42,660 ߳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
  793. ¼ʱ䣺2025-02-14 14:19:42,660 ߳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
  794. ¼ʱ䣺2025-02-14 14:19:42,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  795. ¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  796. ¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  797. ¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  798. ¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  799. ¼ʱ䣺2025-02-14 14:19:42,661 ߳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
  800. ¼ʱ䣺2025-02-14 14:19:42,661 ߳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
  801. ¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  802. ¼ʱ䣺2025-02-14 14:19:42,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  803. ¼ʱ䣺2025-02-14 14:19:42,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  804. ¼ʱ䣺2025-02-14 14:19:42,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  805. ¼ʱ䣺2025-02-14 14:19:42,666 ߳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
  806. ¼ʱ䣺2025-02-14 14:19:42,666 ߳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
  807. ¼ʱ䣺2025-02-14 14:19:42,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  808. ¼ʱ䣺2025-02-14 14:19:42,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  809. ¼ʱ䣺2025-02-14 14:19:42,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  810. ¼ʱ䣺2025-02-14 14:19:42,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  811. ¼ʱ䣺2025-02-14 14:19:42,696 ߳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
  812. ¼ʱ䣺2025-02-14 14:19:42,696 ߳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
  813. ¼ʱ䣺2025-02-14 14:19:42,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  814. ¼ʱ䣺2025-02-14 14:19:42,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  815. ¼ʱ䣺2025-02-14 14:19:42,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  816. ¼ʱ䣺2025-02-14 14:19:42,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  817. ¼ʱ䣺2025-02-14 14:19:42,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  818. ¼ʱ䣺2025-02-14 14:19:42,704 ߳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
  819. ¼ʱ䣺2025-02-14 14:19:42,704 ߳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
  820. ¼ʱ䣺2025-02-14 14:19:42,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  821. ¼ʱ䣺2025-02-14 14:19:42,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  822. ¼ʱ䣺2025-02-14 14:19:42,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  823. ¼ʱ䣺2025-02-14 14:19:42,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  824. ¼ʱ䣺2025-02-14 14:20:31,946 ߳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
  825. ¼ʱ䣺2025-02-14 14:20:31,946 ߳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
  826. ¼ʱ䣺2025-02-14 14:20:31,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  827. ¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  828. ¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  829. ¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  830. ¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  831. ¼ʱ䣺2025-02-14 14:20:31,949 ߳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
  832. ¼ʱ䣺2025-02-14 14:20:31,949 ߳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
  833. ¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  834. ¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  835. ¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  836. ¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  837. ¼ʱ䣺2025-02-14 14:20:31,952 ߳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
  838. ¼ʱ䣺2025-02-14 14:20:31,952 ߳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
  839. ¼ʱ䣺2025-02-14 14:20:31,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  840. ¼ʱ䣺2025-02-14 14:20:31,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  841. ¼ʱ䣺2025-02-14 14:20:31,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  842. ¼ʱ䣺2025-02-14 14:20:32,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  843. ¼ʱ䣺2025-02-14 14:20:32,015 ߳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
  844. ¼ʱ䣺2025-02-14 14:20:32,015 ߳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
  845. ¼ʱ䣺2025-02-14 14:20:32,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  846. ¼ʱ䣺2025-02-14 14:20:32,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  847. ¼ʱ䣺2025-02-14 14:20:32,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  848. ¼ʱ䣺2025-02-14 14:20:32,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  849. ¼ʱ䣺2025-02-14 14:20:32,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  850. ¼ʱ䣺2025-02-14 14:20:32,021 ߳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
  851. ¼ʱ䣺2025-02-14 14:20:32,021 ߳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
  852. ¼ʱ䣺2025-02-14 14:20:32,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  853. ¼ʱ䣺2025-02-14 14:20:32,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  854. ¼ʱ䣺2025-02-14 14:20:32,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  855. ¼ʱ䣺2025-02-14 14:20:32,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  856. ¼ʱ䣺2025-02-14 14:20:32,040 ߳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
  857. ¼ʱ䣺2025-02-14 14:20:32,040 ߳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
  858. ¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  859. ¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  860. ¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  861. ¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  862. ¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  863. ¼ʱ䣺2025-02-14 14:20:32,041 ߳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
  864. ¼ʱ䣺2025-02-14 14:20:32,041 ߳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
  865. ¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  866. ¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  867. ¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  868. ¼ʱ䣺2025-02-14 14:20:32,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  869. ¼ʱ䣺2025-02-14 14:20:32,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
  870. ¼ʱ䣺2025-02-14 14:20:32,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
  871. ¼ʱ䣺2025-02-14 14:20:32,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  872. ¼ʱ䣺2025-02-14 14:20:32,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  873. ¼ʱ䣺2025-02-14 14:20:32,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  874. ¼ʱ䣺2025-02-14 14:20:32,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  875. ¼ʱ䣺2025-02-14 14:20:32,114 ߳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
  876. ¼ʱ䣺2025-02-14 14:20:32,114 ߳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
  877. ¼ʱ䣺2025-02-14 14:20:32,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  878. ¼ʱ䣺2025-02-14 14:20:32,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  879. ¼ʱ䣺2025-02-14 14:20:32,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  880. ¼ʱ䣺2025-02-14 14:20:32,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  881. ¼ʱ䣺2025-02-14 14:20:32,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  882. ¼ʱ䣺2025-02-14 14:20:32,121 ߳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
  883. ¼ʱ䣺2025-02-14 14:20:32,121 ߳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
  884. ¼ʱ䣺2025-02-14 14:20:32,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  885. ¼ʱ䣺2025-02-14 14:20:32,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  886. ¼ʱ䣺2025-02-14 14:20:32,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  887. ¼ʱ䣺2025-02-14 14:20:32,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  888. ¼ʱ䣺2025-02-14 14:20:32,133 ߳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
  889. ¼ʱ䣺2025-02-14 14:20:32,133 ߳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
  890. ¼ʱ䣺2025-02-14 14:20:32,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  891. ¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  892. ¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  893. ¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  894. ¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  895. ¼ʱ䣺2025-02-14 14:20:32,135 ߳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
  896. ¼ʱ䣺2025-02-14 14:20:32,135 ߳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
  897. ¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  898. ¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  899. ¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  900. ¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  901. ¼ʱ䣺2025-02-14 14:20:32,138 ߳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
  902. ¼ʱ䣺2025-02-14 14:20:32,138 ߳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
  903. ¼ʱ䣺2025-02-14 14:20:32,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  904. ¼ʱ䣺2025-02-14 14:20:32,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  905. ¼ʱ䣺2025-02-14 14:20:32,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  906. ¼ʱ䣺2025-02-14 14:20:32,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  907. ¼ʱ䣺2025-02-14 14:20:32,178 ߳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
  908. ¼ʱ䣺2025-02-14 14:20:32,178 ߳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
  909. ¼ʱ䣺2025-02-14 14:20:32,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  910. ¼ʱ䣺2025-02-14 14:20:32,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  911. ¼ʱ䣺2025-02-14 14:20:32,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  912. ¼ʱ䣺2025-02-14 14:20:32,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  913. ¼ʱ䣺2025-02-14 14:20:32,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  914. ¼ʱ䣺2025-02-14 14:20:32,186 ߳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
  915. ¼ʱ䣺2025-02-14 14:20:32,186 ߳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
  916. ¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  917. ¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  918. ¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  919. ¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  920. ¼ʱ䣺2025-02-14 14:42:19,674 ߳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
  921. ¼ʱ䣺2025-02-14 14:42:19,682 ߳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
  922. ¼ʱ䣺2025-02-14 14:42:19,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  923. ¼ʱ䣺2025-02-14 14:42:19,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  924. ¼ʱ䣺2025-02-14 14:42:19,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  925. ¼ʱ䣺2025-02-14 14:42:19,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  926. ¼ʱ䣺2025-02-14 14:42:19,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  927. ¼ʱ䣺2025-02-14 14:42:19,712 ߳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
  928. ¼ʱ䣺2025-02-14 14:42:19,712 ߳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
  929. ¼ʱ䣺2025-02-14 14:42:19,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  930. ¼ʱ䣺2025-02-14 14:42:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  931. ¼ʱ䣺2025-02-14 14:42:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  932. ¼ʱ䣺2025-02-14 14:42:19,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  933. ¼ʱ䣺2025-02-14 14:42:19,746 ߳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
  934. ¼ʱ䣺2025-02-14 14:42:19,746 ߳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
  935. ¼ʱ䣺2025-02-14 14:42:19,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  936. ¼ʱ䣺2025-02-14 14:42:19,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  937. ¼ʱ䣺2025-02-14 14:42:19,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  938. ¼ʱ䣺2025-02-14 14:42:19,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  939. ¼ʱ䣺2025-02-14 14:42:19,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
  940. ¼ʱ䣺2025-02-14 14:42:19,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
  941. ¼ʱ䣺2025-02-14 14:42:19,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  942. ¼ʱ䣺2025-02-14 14:42:19,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  943. ¼ʱ䣺2025-02-14 14:42:19,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  944. ¼ʱ䣺2025-02-14 14:42:19,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  945. ¼ʱ䣺2025-02-14 14:42:19,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  946. ¼ʱ䣺2025-02-14 14:42:19,801 ߳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
  947. ¼ʱ䣺2025-02-14 14:42:19,801 ߳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
  948. ¼ʱ䣺2025-02-14 14:42:19,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  949. ¼ʱ䣺2025-02-14 14:42:19,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  950. ¼ʱ䣺2025-02-14 14:42:19,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  951. ¼ʱ䣺2025-02-14 14:42:19,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  952. ¼ʱ䣺2025-02-14 14:42:19,814 ߳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
  953. ¼ʱ䣺2025-02-14 14:42:19,814 ߳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
  954. ¼ʱ䣺2025-02-14 14:42:19,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  955. ¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  956. ¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  957. ¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  958. ¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  959. ¼ʱ䣺2025-02-14 14:42:19,817 ߳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
  960. ¼ʱ䣺2025-02-14 14:42:19,817 ߳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
  961. ¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  962. ¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  963. ¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  964. ¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  965. ¼ʱ䣺2025-02-14 14:42:19,821 ߳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
  966. ¼ʱ䣺2025-02-14 14:42:19,821 ߳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
  967. ¼ʱ䣺2025-02-14 14:42:19,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  968. ¼ʱ䣺2025-02-14 14:42:19,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  969. ¼ʱ䣺2025-02-14 14:42:19,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  970. ¼ʱ䣺2025-02-14 14:42:19,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  971. ¼ʱ䣺2025-02-14 14:42:19,870 ߳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
  972. ¼ʱ䣺2025-02-14 14:42:19,870 ߳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
  973. ¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  974. ¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  975. ¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  976. ¼ʱ䣺2025-02-14 14:42:19,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  977. ¼ʱ䣺2025-02-14 14:42:19,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  978. ¼ʱ䣺2025-02-14 14:42:19,875 ߳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
  979. ¼ʱ䣺2025-02-14 14:42:19,876 ߳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
  980. ¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  981. ¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  982. ¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  983. ¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  984. ¼ʱ䣺2025-02-14 14:42:19,885 ߳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
  985. ¼ʱ䣺2025-02-14 14:42:19,885 ߳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
  986. ¼ʱ䣺2025-02-14 14:42:19,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  987. ¼ʱ䣺2025-02-14 14:42:19,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  988. ¼ʱ䣺2025-02-14 14:42:19,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  989. ¼ʱ䣺2025-02-14 14:42:19,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  990. ¼ʱ䣺2025-02-14 14:42:19,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  991. ¼ʱ䣺2025-02-14 14:42:19,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
  992. ¼ʱ䣺2025-02-14 14:42:19,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
  993. ¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  994. ¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  995. ¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  996. ¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  997. ¼ʱ䣺2025-02-14 14:42:19,899 ߳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
  998. ¼ʱ䣺2025-02-14 14:42:19,899 ߳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
  999. ¼ʱ䣺2025-02-14 14:42:19,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1000. ¼ʱ䣺2025-02-14 14:42:19,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1001. ¼ʱ䣺2025-02-14 14:42:19,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1002. ¼ʱ䣺2025-02-14 14:42:19,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1003. ¼ʱ䣺2025-02-14 14:42:19,938 ߳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
  1004. ¼ʱ䣺2025-02-14 14:42:19,938 ߳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
  1005. ¼ʱ䣺2025-02-14 14:42:19,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1006. ¼ʱ䣺2025-02-14 14:42:19,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1007. ¼ʱ䣺2025-02-14 14:42:19,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1008. ¼ʱ䣺2025-02-14 14:42:19,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1009. ¼ʱ䣺2025-02-14 14:42:19,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1010. ¼ʱ䣺2025-02-14 14:42:19,952 ߳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
  1011. ¼ʱ䣺2025-02-14 14:42:19,952 ߳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
  1012. ¼ʱ䣺2025-02-14 14:42:19,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1013. ¼ʱ䣺2025-02-14 14:42:19,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1014. ¼ʱ䣺2025-02-14 14:42:19,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1015. ¼ʱ䣺2025-02-14 14:42:19,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1016. ¼ʱ䣺2025-02-14 14:43:15,689 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1017. ¼ʱ䣺2025-02-14 14:43:15,915 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144315xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1018. ¼ʱ䣺2025-02-14 14:43:33,896 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1019. ¼ʱ䣺2025-02-14 14:43:33,964 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144333xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1020. ¼ʱ䣺2025-02-14 14:43:38,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
  1021. ¼ʱ䣺2025-02-14 14:43:38,011 ߳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
  1022. ¼ʱ䣺2025-02-14 14:43:38,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1023. ¼ʱ䣺2025-02-14 14:43:38,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1024. ¼ʱ䣺2025-02-14 14:43:38,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1025. ¼ʱ䣺2025-02-14 14:43:38,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1026. ¼ʱ䣺2025-02-14 14:43:38,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1027. ¼ʱ䣺2025-02-14 14:43:38,016 ߳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
  1028. ¼ʱ䣺2025-02-14 14:43:38,016 ߳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
  1029. ¼ʱ䣺2025-02-14 14:43:38,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1030. ¼ʱ䣺2025-02-14 14:43:38,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1031. ¼ʱ䣺2025-02-14 14:43:38,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1032. ¼ʱ䣺2025-02-14 14:43:38,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1033. ¼ʱ䣺2025-02-14 14:43:38,021 ߳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
  1034. ¼ʱ䣺2025-02-14 14:43:38,021 ߳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
  1035. ¼ʱ䣺2025-02-14 14:43:38,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1036. ¼ʱ䣺2025-02-14 14:43:38,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1037. ¼ʱ䣺2025-02-14 14:43:38,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1038. ¼ʱ䣺2025-02-14 14:43:38,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1039. ¼ʱ䣺2025-02-14 14:43:38,086 ߳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
  1040. ¼ʱ䣺2025-02-14 14:43:38,086 ߳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
  1041. ¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1042. ¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1043. ¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1044. ¼ʱ䣺2025-02-14 14:43:38,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1045. ¼ʱ䣺2025-02-14 14:44:01,073 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1046. ¼ʱ䣺2025-02-14 14:44:01,130 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144401xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1047. ¼ʱ䣺2025-02-14 14:44:14,670 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1048. ¼ʱ䣺2025-02-14 14:44:14,730 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144414xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1049. ¼ʱ䣺2025-02-14 14:45:39,181 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Connection unexpectedly terminated.
  1050. ¼ʱ䣺2025-02-14 14:57:03,335 ߳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
  1051. ¼ʱ䣺2025-02-14 14:57:03,343 ߳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
  1052. ¼ʱ䣺2025-02-14 14:57:03,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1053. ¼ʱ䣺2025-02-14 14:57:03,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1054. ¼ʱ䣺2025-02-14 14:57:03,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1055. ¼ʱ䣺2025-02-14 14:57:03,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1056. ¼ʱ䣺2025-02-14 14:57:03,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1057. ¼ʱ䣺2025-02-14 14:57:03,370 ߳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
  1058. ¼ʱ䣺2025-02-14 14:57:03,370 ߳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
  1059. ¼ʱ䣺2025-02-14 14:57:03,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1060. ¼ʱ䣺2025-02-14 14:57:03,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1061. ¼ʱ䣺2025-02-14 14:57:03,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1062. ¼ʱ䣺2025-02-14 14:57:03,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1063. ¼ʱ䣺2025-02-14 14:57:03,418 ߳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
  1064. ¼ʱ䣺2025-02-14 14:57:03,418 ߳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
  1065. ¼ʱ䣺2025-02-14 14:57:03,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1066. ¼ʱ䣺2025-02-14 14:57:03,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1067. ¼ʱ䣺2025-02-14 14:57:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1068. ¼ʱ䣺2025-02-14 14:57:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1069. ¼ʱ䣺2025-02-14 14:57:03,458 ߳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
  1070. ¼ʱ䣺2025-02-14 14:57:03,458 ߳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
  1071. ¼ʱ䣺2025-02-14 14:57:03,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1072. ¼ʱ䣺2025-02-14 14:57:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1073. ¼ʱ䣺2025-02-14 14:57:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1074. ¼ʱ䣺2025-02-14 14:57:03,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1075. ¼ʱ䣺2025-02-14 14:57:03,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1076. ¼ʱ䣺2025-02-14 14:57:03,466 ߳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
  1077. ¼ʱ䣺2025-02-14 14:57:03,466 ߳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
  1078. ¼ʱ䣺2025-02-14 14:57:03,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1079. ¼ʱ䣺2025-02-14 14:57:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1080. ¼ʱ䣺2025-02-14 14:57:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1081. ¼ʱ䣺2025-02-14 14:57:03,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1082. ¼ʱ䣺2025-02-14 14:57:03,477 ߳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
  1083. ¼ʱ䣺2025-02-14 14:57:03,477 ߳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
  1084. ¼ʱ䣺2025-02-14 14:57:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1085. ¼ʱ䣺2025-02-14 14:57:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1086. ¼ʱ䣺2025-02-14 14:57:03,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1087. ¼ʱ䣺2025-02-14 14:57:03,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1088. ¼ʱ䣺2025-02-14 14:57:03,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1089. ¼ʱ䣺2025-02-14 14:57:03,479 ߳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
  1090. ¼ʱ䣺2025-02-14 14:57:03,479 ߳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
  1091. ¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1092. ¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1093. ¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1094. ¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1095. ¼ʱ䣺2025-02-14 14:57:03,481 ߳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
  1096. ¼ʱ䣺2025-02-14 14:57:03,483 ߳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
  1097. ¼ʱ䣺2025-02-14 14:57:03,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1098. ¼ʱ䣺2025-02-14 14:57:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1099. ¼ʱ䣺2025-02-14 14:57:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1100. ¼ʱ䣺2025-02-14 14:57:03,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1101. ¼ʱ䣺2025-02-14 14:57:03,522 ߳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
  1102. ¼ʱ䣺2025-02-14 14:57:03,522 ߳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
  1103. ¼ʱ䣺2025-02-14 14:57:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1104. ¼ʱ䣺2025-02-14 14:57:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1105. ¼ʱ䣺2025-02-14 14:57:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1106. ¼ʱ䣺2025-02-14 14:57:03,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1107. ¼ʱ䣺2025-02-14 14:57:03,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1108. ¼ʱ䣺2025-02-14 14:57:03,530 ߳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
  1109. ¼ʱ䣺2025-02-14 14:57:03,530 ߳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
  1110. ¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1111. ¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1112. ¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1113. ¼ʱ䣺2025-02-14 14:57:03,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1114. ¼ʱ䣺2025-02-14 14:57:03,554 ߳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
  1115. ¼ʱ䣺2025-02-14 14:57:03,554 ߳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
  1116. ¼ʱ䣺2025-02-14 14:57:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1117. ¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1118. ¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1119. ¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1120. ¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1121. ¼ʱ䣺2025-02-14 14:57:03,556 ߳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
  1122. ¼ʱ䣺2025-02-14 14:57:03,556 ߳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
  1123. ¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1124. ¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1125. ¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1126. ¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1127. ¼ʱ䣺2025-02-14 14:57:03,558 ߳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
  1128. ¼ʱ䣺2025-02-14 14:57:03,559 ߳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
  1129. ¼ʱ䣺2025-02-14 14:57:03,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1130. ¼ʱ䣺2025-02-14 14:57:03,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1131. ¼ʱ䣺2025-02-14 14:57:03,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1132. ¼ʱ䣺2025-02-14 14:57:03,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1133. ¼ʱ䣺2025-02-14 14:57:03,590 ߳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
  1134. ¼ʱ䣺2025-02-14 14:57:03,590 ߳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
  1135. ¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1136. ¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1137. ¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1138. ¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1139. ¼ʱ䣺2025-02-14 14:57:03,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1140. ¼ʱ䣺2025-02-14 14:57:03,596 ߳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
  1141. ¼ʱ䣺2025-02-14 14:57:03,596 ߳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
  1142. ¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1143. ¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1144. ¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1145. ¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1146. ¼ʱ䣺2025-02-14 14:57:13,684 ߳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
  1147. ¼ʱ䣺2025-02-14 14:57:13,684 ߳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
  1148. ¼ʱ䣺2025-02-14 14:57:13,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1149. ¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1150. ¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1151. ¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1152. ¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1153. ¼ʱ䣺2025-02-14 14:57:13,687 ߳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
  1154. ¼ʱ䣺2025-02-14 14:57:13,687 ߳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
  1155. ¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1156. ¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1157. ¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1158. ¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1159. ¼ʱ䣺2025-02-14 14:57:13,691 ߳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
  1160. ¼ʱ䣺2025-02-14 14:57:13,691 ߳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
  1161. ¼ʱ䣺2025-02-14 14:57:13,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1162. ¼ʱ䣺2025-02-14 14:57:13,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1163. ¼ʱ䣺2025-02-14 14:57:13,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1164. ¼ʱ䣺2025-02-14 14:57:13,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1165. ¼ʱ䣺2025-02-14 14:57:13,757 ߳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
  1166. ¼ʱ䣺2025-02-14 14:57:13,757 ߳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
  1167. ¼ʱ䣺2025-02-14 14:57:13,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1168. ¼ʱ䣺2025-02-14 14:57:13,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1169. ¼ʱ䣺2025-02-14 14:57:13,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1170. ¼ʱ䣺2025-02-14 14:57:13,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1171. ¼ʱ䣺2025-02-14 14:57:13,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1172. ¼ʱ䣺2025-02-14 14:57:13,765 ߳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
  1173. ¼ʱ䣺2025-02-14 14:57:13,765 ߳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
  1174. ¼ʱ䣺2025-02-14 14:57:13,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1175. ¼ʱ䣺2025-02-14 14:57:13,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1176. ¼ʱ䣺2025-02-14 14:57:13,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1177. ¼ʱ䣺2025-02-14 14:57:13,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1178. ¼ʱ䣺2025-02-14 14:57:44,495 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1179. ¼ʱ䣺2025-02-14 14:57:44,603 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145744xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1180. ¼ʱ䣺2025-02-14 14:58:22,567 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1181. ¼ʱ䣺2025-02-14 14:58:22,623 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145822xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1182. ¼ʱ䣺2025-02-14 14:58:30,738 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1183. ¼ʱ䣺2025-02-14 14:58:30,802 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145830xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1184. ¼ʱ䣺2025-02-14 14:58:32,836 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ
  1185. ¼ʱ䣺2025-02-14 14:58:32,896 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145832xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ
  1186. ¼ʱ䣺2025-02-14 15:00:27,891 ߳ID:[1]- :TXTInstrumentData :.ctor Ϣ:·ʽϷ
  1187. ¼ʱ䣺2025-02-14 15:01:05,554 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1188. ¼ʱ䣺2025-02-14 15:01:05,555 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1189. ¼ʱ䣺2025-02-14 15:01:05,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1190. ¼ʱ䣺2025-02-14 15:01:05,815 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1191. ¼ʱ䣺2025-02-14 15:01:05,889 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1192. ¼ʱ䣺2025-02-14 15:02:03,754 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1193. ¼ʱ䣺2025-02-14 15:02:03,754 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1194. ¼ʱ䣺2025-02-14 15:02:03,754 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1195. ¼ʱ䣺2025-02-14 15:02:03,818 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1196. ¼ʱ䣺2025-02-14 15:02:03,871 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1197. ¼ʱ䣺2025-02-14 15:05:59,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1198. ¼ʱ䣺2025-02-14 15:05:59,759 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1199. ¼ʱ䣺2025-02-14 15:05:59,760 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1200. ¼ʱ䣺2025-02-14 15:05:59,823 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1201. ¼ʱ䣺2025-02-14 15:05:59,881 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1202. ¼ʱ䣺2025-02-14 15:08:24,859 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1203. ¼ʱ䣺2025-02-14 15:08:24,863 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1204. ¼ʱ䣺2025-02-14 15:08:24,864 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1205. ¼ʱ䣺2025-02-14 15:08:24,968 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1206. ¼ʱ䣺2025-02-14 15:08:25,029 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1207. ¼ʱ䣺2025-02-14 15:08:32,926 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1208. ¼ʱ䣺2025-02-14 15:08:32,927 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1209. ¼ʱ䣺2025-02-14 15:08:32,927 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1210. ¼ʱ䣺2025-02-14 15:08:32,927 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1211. ¼ʱ䣺2025-02-14 15:08:32,927 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1212. ¼ʱ䣺2025-02-14 15:08:33,013 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1213. ¼ʱ䣺2025-02-14 15:08:33,104 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1214. ¼ʱ䣺2025-02-14 15:08:33,104 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1215. ¼ʱ䣺2025-02-14 15:08:33,110 ߳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
  1216. ¼ʱ䣺2025-02-14 15:08:33,110 ߳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
  1217. ¼ʱ䣺2025-02-14 15:08:33,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1218. ¼ʱ䣺2025-02-14 15:08:33,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1219. ¼ʱ䣺2025-02-14 15:08:33,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1220. ¼ʱ䣺2025-02-14 15:08:33,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1221. ¼ʱ䣺2025-02-14 15:08:33,249 ߳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
  1222. ¼ʱ䣺2025-02-14 15:08:33,249 ߳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
  1223. ¼ʱ䣺2025-02-14 15:08:33,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1224. ¼ʱ䣺2025-02-14 15:08:33,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1225. ¼ʱ䣺2025-02-14 15:08:33,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1226. ¼ʱ䣺2025-02-14 15:08:33,250 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1227. ¼ʱ䣺2025-02-14 15:08:38,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1
  1228. ¼ʱ䣺2025-02-14 15:08:38,185 ߳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
  1229. ¼ʱ䣺2025-02-14 15:08:38,185 ߳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
  1230. ¼ʱ䣺2025-02-14 15:08:38,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
  1231. ¼ʱ䣺2025-02-14 15:08:38,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
  1232. ¼ʱ䣺2025-02-14 15:08:38,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet
  1233. ¼ʱ䣺2025-02-14 15:08:38,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1234. ¼ʱ䣺2025-02-14 15:08:40,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1235. ¼ʱ䣺2025-02-14 15:08:40,652 ߳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
  1236. ¼ʱ䣺2025-02-14 15:08:40,652 ߳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
  1237. ¼ʱ䣺2025-02-14 15:08:40,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1238. ¼ʱ䣺2025-02-14 15:08:40,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1239. ¼ʱ䣺2025-02-14 15:08:40,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1240. ¼ʱ䣺2025-02-14 15:08:40,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1241. ¼ʱ䣺2025-02-14 15:11:06,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1242. ¼ʱ䣺2025-02-14 15:11:06,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1243. ¼ʱ䣺2025-02-14 15:11:06,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)System.Data.DataSet
  1244. ¼ʱ䣺2025-02-14 15:11:06,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)System.Data.DataSet
  1245. ¼ʱ䣺2025-02-14 15:11:06,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)System.Data.DataSet
  1246. ¼ʱ䣺2025-02-14 15:11:06,186 ߳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
  1247. ¼ʱ䣺2025-02-14 15:11:06,186 ߳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
  1248. ¼ʱ䣺2025-02-14 15:11:06,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1249. ¼ʱ䣺2025-02-14 15:11:06,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1250. ¼ʱ䣺2025-02-14 15:11:06,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1251. ¼ʱ䣺2025-02-14 15:11:12,048 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1252. ¼ʱ䣺2025-02-14 15:11:12,049 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1253. ¼ʱ䣺2025-02-14 15:11:12,049 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)System.Data.DataSet
  1254. ¼ʱ䣺2025-02-14 15:11:12,368 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu"
  1255. POSITION: 15
  1256. ¼ʱ䣺2025-02-14 15:11:12,383 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu"
  1257. POSITION: 15
  1258. ¼ʱ䣺2025-02-14 15:11:12,397 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42P01: ϵ "cnas.stu"
  1259. POSITION: 15
  1260. ¼ʱ䣺2025-02-14 15:13:33,522 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1261. ¼ʱ䣺2025-02-14 15:13:33,522 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1262. ¼ʱ䣺2025-02-14 15:13:33,522 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)System.Data.DataSet
  1263. ¼ʱ䣺2025-02-14 15:13:33,715 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu"
  1264. POSITION: 15
  1265. ¼ʱ䣺2025-02-14 15:13:33,731 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu"
  1266. POSITION: 15
  1267. ¼ʱ䣺2025-02-14 15:14:11,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1268. ¼ʱ䣺2025-02-14 15:14:11,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1269. ¼ʱ䣺2025-02-14 15:14:11,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)System.Data.DataSet
  1270. ¼ʱ䣺2025-02-14 15:14:11,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)System.Data.DataSet
  1271. ¼ʱ䣺2025-02-14 15:14:11,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)System.Data.DataSet
  1272. ¼ʱ䣺2025-02-14 15:14:11,294 ߳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
  1273. ¼ʱ䣺2025-02-14 15:14:11,295 ߳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
  1274. ¼ʱ䣺2025-02-14 15:14:11,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1275. ¼ʱ䣺2025-02-14 15:14:11,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1276. ¼ʱ䣺2025-02-14 15:14:11,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1277. ¼ʱ䣺2025-02-14 15:14:13,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:14:12',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1278. ¼ʱ䣺2025-02-14 15:14:13,940 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:14:12',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1279. ¼ʱ䣺2025-02-14 15:14:13,940 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:14:12',datetime)System.Data.DataSet
  1280. ¼ʱ䣺2025-02-14 15:14:14,253 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1281. POSITION: 37
  1282. ¼ʱ䣺2025-02-14 15:14:14,268 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1283. POSITION: 37
  1284. ¼ʱ䣺2025-02-14 15:14:14,278 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime"
  1285. POSITION: 37
  1286. ¼ʱ䣺2025-02-14 15:29:52,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1287. ¼ʱ䣺2025-02-14 15:29:52,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1288. ¼ʱ䣺2025-02-14 15:29:52,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)System.Data.DataSet
  1289. ¼ʱ䣺2025-02-14 15:29:52,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)System.Data.DataSet
  1290. ¼ʱ䣺2025-02-14 15:29:52,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)System.Data.DataSet
  1291. ¼ʱ䣺2025-02-14 15:29:52,756 ߳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
  1292. ¼ʱ䣺2025-02-14 15:29:52,756 ߳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
  1293. ¼ʱ䣺2025-02-14 15:29:52,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1294. ¼ʱ䣺2025-02-14 15:29:52,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1295. ¼ʱ䣺2025-02-14 15:29:52,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1296. ¼ʱ䣺2025-02-14 15:29:55,851 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:29:54',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1297. ¼ʱ䣺2025-02-14 15:29:55,851 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:29:54',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1298. ¼ʱ䣺2025-02-14 15:29:55,851 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:29:54',datetime)System.Data.DataSet
  1299. ¼ʱ䣺2025-02-14 15:29:56,102 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1300. POSITION: 37
  1301. ¼ʱ䣺2025-02-14 15:29:56,117 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1302. POSITION: 37
  1303. ¼ʱ䣺2025-02-14 15:29:56,126 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime"
  1304. POSITION: 37
  1305. ¼ʱ䣺2025-02-14 15:30:17,141 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:30:16',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1306. ¼ʱ䣺2025-02-14 15:30:17,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:30:16',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1307. ¼ʱ䣺2025-02-14 15:30:17,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:30:16',datetime)System.Data.DataSet
  1308. ¼ʱ䣺2025-02-14 15:30:17,171 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:30:16',datetime)System.Data.DataSet
  1309. ¼ʱ䣺2025-02-14 15:30:17,172 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:30:16',datetime)System.Data.DataSet
  1310. ¼ʱ䣺2025-02-14 15:30:17,174 ߳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
  1311. ¼ʱ䣺2025-02-14 15:30:17,175 ߳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
  1312. ¼ʱ䣺2025-02-14 15:30:17,175 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1313. ¼ʱ䣺2025-02-14 15:30:17,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1314. ¼ʱ䣺2025-02-14 15:30:17,176 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1315. ¼ʱ䣺2025-02-14 15:35:47,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:35:47',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1316. ¼ʱ䣺2025-02-14 15:35:47,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:35:47',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1317. ¼ʱ䣺2025-02-14 15:35:47,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:35:47',datetime)System.Data.DataSet
  1318. ¼ʱ䣺2025-02-14 15:35:47,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:35:47',datetime)System.Data.DataSet
  1319. ¼ʱ䣺2025-02-14 15:35:47,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:35:47',datetime)System.Data.DataSet
  1320. ¼ʱ䣺2025-02-14 15:35:47,258 ߳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
  1321. ¼ʱ䣺2025-02-14 15:35:47,258 ߳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
  1322. ¼ʱ䣺2025-02-14 15:35:47,258 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1323. ¼ʱ䣺2025-02-14 15:35:47,259 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1324. ¼ʱ䣺2025-02-14 15:35:47,260 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1325. ¼ʱ䣺2025-02-14 15:35:52,435 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:35:51',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1326. ¼ʱ䣺2025-02-14 15:35:52,435 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:35:51',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1327. ¼ʱ䣺2025-02-14 15:35:52,436 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:35:51',datetime)System.Data.DataSet
  1328. ¼ʱ䣺2025-02-14 15:35:52,709 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1329. POSITION: 37
  1330. ¼ʱ䣺2025-02-14 15:35:52,725 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1331. POSITION: 37
  1332. ¼ʱ䣺2025-02-14 15:35:52,735 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime"
  1333. POSITION: 37
  1334. ¼ʱ䣺2025-02-14 15:36:51,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:36:51',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1335. ¼ʱ䣺2025-02-14 15:36:51,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:36:51',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1336. ¼ʱ䣺2025-02-14 15:36:51,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:36:51',datetime)System.Data.DataSet
  1337. ¼ʱ䣺2025-02-14 15:36:51,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:36:51',datetime)System.Data.DataSet
  1338. ¼ʱ䣺2025-02-14 15:36:51,454 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:36:51',datetime)System.Data.DataSet
  1339. ¼ʱ䣺2025-02-14 15:36:51,458 ߳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
  1340. ¼ʱ䣺2025-02-14 15:36:51,458 ߳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
  1341. ¼ʱ䣺2025-02-14 15:36:51,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1342. ¼ʱ䣺2025-02-14 15:36:51,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1343. ¼ʱ䣺2025-02-14 15:36:51,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1344. ¼ʱ䣺2025-02-14 15:37:56,665 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:37:55',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1345. ¼ʱ䣺2025-02-14 15:37:56,665 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:37:55',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1346. ¼ʱ䣺2025-02-14 15:37:56,665 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:37:55',datetime)System.Data.DataSet
  1347. ¼ʱ䣺2025-02-14 15:37:56,917 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1348. POSITION: 37
  1349. ¼ʱ䣺2025-02-14 15:37:56,936 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1350. POSITION: 37
  1351. ¼ʱ䣺2025-02-14 15:37:56,945 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime"
  1352. POSITION: 37
  1353. ¼ʱ䣺2025-02-14 15:38:12,082 ߳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
  1354. ¼ʱ䣺2025-02-14 15:38:12,090 ߳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
  1355. ¼ʱ䣺2025-02-14 15:38:12,090 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1356. ¼ʱ䣺2025-02-14 15:38:12,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1357. ¼ʱ䣺2025-02-14 15:38:12,112 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1358. ¼ʱ䣺2025-02-14 15:38:12,114 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1359. ¼ʱ䣺2025-02-14 15:38:12,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1360. ¼ʱ䣺2025-02-14 15:38:12,116 ߳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
  1361. ¼ʱ䣺2025-02-14 15:38:12,116 ߳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
  1362. ¼ʱ䣺2025-02-14 15:38:12,116 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1363. ¼ʱ䣺2025-02-14 15:38:12,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1364. ¼ʱ䣺2025-02-14 15:38:12,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1365. ¼ʱ䣺2025-02-14 15:38:12,117 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1366. ¼ʱ䣺2025-02-14 15:38:12,158 ߳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
  1367. ¼ʱ䣺2025-02-14 15:38:12,158 ߳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
  1368. ¼ʱ䣺2025-02-14 15:38:12,159 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1369. ¼ʱ䣺2025-02-14 15:38:12,162 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1370. ¼ʱ䣺2025-02-14 15:38:12,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1371. ¼ʱ䣺2025-02-14 15:38:12,196 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1372. ¼ʱ䣺2025-02-14 15:38:12,198 ߳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
  1373. ¼ʱ䣺2025-02-14 15:38:12,198 ߳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
  1374. ¼ʱ䣺2025-02-14 15:38:12,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1375. ¼ʱ䣺2025-02-14 15:38:12,199 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1376. ¼ʱ䣺2025-02-14 15:38:12,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1377. ¼ʱ䣺2025-02-14 15:38:12,200 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1378. ¼ʱ䣺2025-02-14 15:38:12,209 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1379. ¼ʱ䣺2025-02-14 15:38:12,210 ߳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
  1380. ¼ʱ䣺2025-02-14 15:38:12,212 ߳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
  1381. ¼ʱ䣺2025-02-14 15:38:12,212 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1382. ¼ʱ䣺2025-02-14 15:38:12,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1383. ¼ʱ䣺2025-02-14 15:38:12,214 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1384. ¼ʱ䣺2025-02-14 15:38:12,214 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1385. ¼ʱ䣺2025-02-14 15:38:12,226 ߳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
  1386. ¼ʱ䣺2025-02-14 15:38:12,226 ߳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
  1387. ¼ʱ䣺2025-02-14 15:38:12,226 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1388. ¼ʱ䣺2025-02-14 15:38:12,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1389. ¼ʱ䣺2025-02-14 15:38:12,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1390. ¼ʱ䣺2025-02-14 15:38:12,227 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1391. ¼ʱ䣺2025-02-14 15:38:12,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1392. ¼ʱ䣺2025-02-14 15:38:12,228 ߳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
  1393. ¼ʱ䣺2025-02-14 15:38:12,228 ߳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
  1394. ¼ʱ䣺2025-02-14 15:38:12,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1395. ¼ʱ䣺2025-02-14 15:38:12,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1396. ¼ʱ䣺2025-02-14 15:38:12,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1397. ¼ʱ䣺2025-02-14 15:38:12,229 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1398. ¼ʱ䣺2025-02-14 15:38:12,230 ߳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
  1399. ¼ʱ䣺2025-02-14 15:38:12,230 ߳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
  1400. ¼ʱ䣺2025-02-14 15:38:12,232 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1401. ¼ʱ䣺2025-02-14 15:38:12,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1402. ¼ʱ䣺2025-02-14 15:38:12,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1403. ¼ʱ䣺2025-02-14 15:38:12,275 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1404. ¼ʱ䣺2025-02-14 15:38:12,277 ߳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
  1405. ¼ʱ䣺2025-02-14 15:38:12,277 ߳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
  1406. ¼ʱ䣺2025-02-14 15:38:12,277 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1407. ¼ʱ䣺2025-02-14 15:38:12,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1408. ¼ʱ䣺2025-02-14 15:38:12,278 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1409. ¼ʱ䣺2025-02-14 15:38:12,278 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1410. ¼ʱ䣺2025-02-14 15:38:12,287 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1411. ¼ʱ䣺2025-02-14 15:38:12,289 ߳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
  1412. ¼ʱ䣺2025-02-14 15:38:12,289 ߳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
  1413. ¼ʱ䣺2025-02-14 15:38:12,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1414. ¼ʱ䣺2025-02-14 15:38:12,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1415. ¼ʱ䣺2025-02-14 15:38:12,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1416. ¼ʱ䣺2025-02-14 15:38:12,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1417. ¼ʱ䣺2025-02-14 15:38:12,310 ߳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
  1418. ¼ʱ䣺2025-02-14 15:38:12,310 ߳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
  1419. ¼ʱ䣺2025-02-14 15:38:12,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1420. ¼ʱ䣺2025-02-14 15:38:12,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1421. ¼ʱ䣺2025-02-14 15:38:12,311 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1422. ¼ʱ䣺2025-02-14 15:38:12,311 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1423. ¼ʱ䣺2025-02-14 15:38:12,311 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1424. ¼ʱ䣺2025-02-14 15:38:12,312 ߳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
  1425. ¼ʱ䣺2025-02-14 15:38:12,312 ߳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
  1426. ¼ʱ䣺2025-02-14 15:38:12,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1427. ¼ʱ䣺2025-02-14 15:38:12,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1428. ¼ʱ䣺2025-02-14 15:38:12,312 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1429. ¼ʱ䣺2025-02-14 15:38:12,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1430. ¼ʱ䣺2025-02-14 15:38:12,316 ߳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
  1431. ¼ʱ䣺2025-02-14 15:38:12,316 ߳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
  1432. ¼ʱ䣺2025-02-14 15:38:12,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1433. ¼ʱ䣺2025-02-14 15:38:12,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1434. ¼ʱ䣺2025-02-14 15:38:12,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1435. ¼ʱ䣺2025-02-14 15:38:12,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1436. ¼ʱ䣺2025-02-14 15:38:12,350 ߳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
  1437. ¼ʱ䣺2025-02-14 15:38:12,350 ߳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
  1438. ¼ʱ䣺2025-02-14 15:38:12,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1439. ¼ʱ䣺2025-02-14 15:38:12,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1440. ¼ʱ䣺2025-02-14 15:38:12,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1441. ¼ʱ䣺2025-02-14 15:38:12,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1442. ¼ʱ䣺2025-02-14 15:38:12,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1443. ¼ʱ䣺2025-02-14 15:38:12,356 ߳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
  1444. ¼ʱ䣺2025-02-14 15:38:12,356 ߳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
  1445. ¼ʱ䣺2025-02-14 15:38:12,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1446. ¼ʱ䣺2025-02-14 15:38:12,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1447. ¼ʱ䣺2025-02-14 15:38:12,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1448. ¼ʱ䣺2025-02-14 15:38:12,357 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1449. ¼ʱ䣺2025-02-14 15:38:29,543 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1450. ¼ʱ䣺2025-02-14 15:38:29,544 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1451. ¼ʱ䣺2025-02-14 15:38:29,544 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1452. ¼ʱ䣺2025-02-14 15:38:29,685 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1453. ¼ʱ䣺2025-02-14 15:38:29,744 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1454. ¼ʱ䣺2025-02-14 15:38:29,748 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1455. ¼ʱ䣺2025-02-14 15:38:29,748 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1456. ¼ʱ䣺2025-02-14 15:38:29,748 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1457. ¼ʱ䣺2025-02-14 15:38:29,748 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1458. ¼ʱ䣺2025-02-14 15:38:29,748 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1459. ¼ʱ䣺2025-02-14 15:38:29,825 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1460. ¼ʱ䣺2025-02-14 15:38:29,877 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1461. ¼ʱ䣺2025-02-14 15:38:29,877 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1462. ¼ʱ䣺2025-02-14 15:38:29,882 ߳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
  1463. ¼ʱ䣺2025-02-14 15:38:29,882 ߳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
  1464. ¼ʱ䣺2025-02-14 15:38:29,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1465. ¼ʱ䣺2025-02-14 15:38:29,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1466. ¼ʱ䣺2025-02-14 15:38:29,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1467. ¼ʱ䣺2025-02-14 15:38:29,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1468. ¼ʱ䣺2025-02-14 15:38:29,932 ߳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
  1469. ¼ʱ䣺2025-02-14 15:38:29,932 ߳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
  1470. ¼ʱ䣺2025-02-14 15:38:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1471. ¼ʱ䣺2025-02-14 15:38:29,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1472. ¼ʱ䣺2025-02-14 15:38:29,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1473. ¼ʱ䣺2025-02-14 15:38:29,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1474. ¼ʱ䣺2025-02-14 15:38:29,938 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1475. ¼ʱ䣺2025-02-14 15:38:29,940 ߳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
  1476. ¼ʱ䣺2025-02-14 15:38:29,940 ߳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
  1477. ¼ʱ䣺2025-02-14 15:38:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1478. ¼ʱ䣺2025-02-14 15:38:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1479. ¼ʱ䣺2025-02-14 15:38:29,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1480. ¼ʱ䣺2025-02-14 15:38:29,942 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1481. ¼ʱ䣺2025-02-14 15:42:34,173 ߳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
  1482. ¼ʱ䣺2025-02-14 15:42:34,181 ߳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
  1483. ¼ʱ䣺2025-02-14 15:42:34,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1484. ¼ʱ䣺2025-02-14 15:42:34,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1485. ¼ʱ䣺2025-02-14 15:42:34,202 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1486. ¼ʱ䣺2025-02-14 15:42:34,203 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1487. ¼ʱ䣺2025-02-14 15:42:34,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1488. ¼ʱ䣺2025-02-14 15:42:34,205 ߳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
  1489. ¼ʱ䣺2025-02-14 15:42:34,205 ߳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
  1490. ¼ʱ䣺2025-02-14 15:42:34,205 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1491. ¼ʱ䣺2025-02-14 15:42:34,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1492. ¼ʱ䣺2025-02-14 15:42:34,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1493. ¼ʱ䣺2025-02-14 15:42:34,206 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1494. ¼ʱ䣺2025-02-14 15:42:34,233 ߳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
  1495. ¼ʱ䣺2025-02-14 15:42:34,233 ߳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
  1496. ¼ʱ䣺2025-02-14 15:42:34,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1497. ¼ʱ䣺2025-02-14 15:42:34,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1498. ¼ʱ䣺2025-02-14 15:42:34,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1499. ¼ʱ䣺2025-02-14 15:42:34,263 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1500. ¼ʱ䣺2025-02-14 15:42:34,264 ߳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
  1501. ¼ʱ䣺2025-02-14 15:42:34,264 ߳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
  1502. ¼ʱ䣺2025-02-14 15:42:34,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1503. ¼ʱ䣺2025-02-14 15:42:34,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1504. ¼ʱ䣺2025-02-14 15:42:34,265 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1505. ¼ʱ䣺2025-02-14 15:42:34,265 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1506. ¼ʱ䣺2025-02-14 15:42:34,269 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1507. ¼ʱ䣺2025-02-14 15:42:34,269 ߳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
  1508. ¼ʱ䣺2025-02-14 15:42:34,269 ߳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
  1509. ¼ʱ䣺2025-02-14 15:42:34,270 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1510. ¼ʱ䣺2025-02-14 15:42:34,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1511. ¼ʱ䣺2025-02-14 15:42:34,272 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1512. ¼ʱ䣺2025-02-14 15:42:34,272 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1513. ¼ʱ䣺2025-02-14 15:42:34,283 ߳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
  1514. ¼ʱ䣺2025-02-14 15:42:34,284 ߳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
  1515. ¼ʱ䣺2025-02-14 15:42:34,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1516. ¼ʱ䣺2025-02-14 15:42:34,284 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1517. ¼ʱ䣺2025-02-14 15:42:34,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1518. ¼ʱ䣺2025-02-14 15:42:34,285 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1519. ¼ʱ䣺2025-02-14 15:42:34,285 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1520. ¼ʱ䣺2025-02-14 15:42:34,286 ߳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
  1521. ¼ʱ䣺2025-02-14 15:42:34,286 ߳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
  1522. ¼ʱ䣺2025-02-14 15:42:34,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1523. ¼ʱ䣺2025-02-14 15:42:34,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1524. ¼ʱ䣺2025-02-14 15:42:34,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1525. ¼ʱ䣺2025-02-14 15:42:34,286 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1526. ¼ʱ䣺2025-02-14 15:42:34,288 ߳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
  1527. ¼ʱ䣺2025-02-14 15:42:34,289 ߳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
  1528. ¼ʱ䣺2025-02-14 15:42:34,289 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1529. ¼ʱ䣺2025-02-14 15:42:34,290 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1530. ¼ʱ䣺2025-02-14 15:42:34,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1531. ¼ʱ䣺2025-02-14 15:42:34,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1532. ¼ʱ䣺2025-02-14 15:42:34,319 ߳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
  1533. ¼ʱ䣺2025-02-14 15:42:34,319 ߳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
  1534. ¼ʱ䣺2025-02-14 15:42:34,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1535. ¼ʱ䣺2025-02-14 15:42:34,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1536. ¼ʱ䣺2025-02-14 15:42:34,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1537. ¼ʱ䣺2025-02-14 15:42:34,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1538. ¼ʱ䣺2025-02-14 15:42:34,326 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1539. ¼ʱ䣺2025-02-14 15:42:34,328 ߳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
  1540. ¼ʱ䣺2025-02-14 15:42:34,328 ߳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
  1541. ¼ʱ䣺2025-02-14 15:42:34,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1542. ¼ʱ䣺2025-02-14 15:42:34,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1543. ¼ʱ䣺2025-02-14 15:42:34,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1544. ¼ʱ䣺2025-02-14 15:42:34,328 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1545. ¼ʱ䣺2025-02-14 15:42:34,349 ߳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
  1546. ¼ʱ䣺2025-02-14 15:42:34,349 ߳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
  1547. ¼ʱ䣺2025-02-14 15:42:34,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1548. ¼ʱ䣺2025-02-14 15:42:34,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1549. ¼ʱ䣺2025-02-14 15:42:34,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1550. ¼ʱ䣺2025-02-14 15:42:34,352 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1551. ¼ʱ䣺2025-02-14 15:42:34,352 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1552. ¼ʱ䣺2025-02-14 15:42:34,353 ߳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
  1553. ¼ʱ䣺2025-02-14 15:42:34,353 ߳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
  1554. ¼ʱ䣺2025-02-14 15:42:34,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1555. ¼ʱ䣺2025-02-14 15:42:34,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1556. ¼ʱ䣺2025-02-14 15:42:34,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1557. ¼ʱ䣺2025-02-14 15:42:34,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1558. ¼ʱ䣺2025-02-14 15:42:34,356 ߳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
  1559. ¼ʱ䣺2025-02-14 15:42:34,356 ߳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
  1560. ¼ʱ䣺2025-02-14 15:42:34,356 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1561. ¼ʱ䣺2025-02-14 15:42:34,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1562. ¼ʱ䣺2025-02-14 15:42:34,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1563. ¼ʱ䣺2025-02-14 15:42:34,385 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1564. ¼ʱ䣺2025-02-14 15:42:34,386 ߳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
  1565. ¼ʱ䣺2025-02-14 15:42:34,387 ߳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
  1566. ¼ʱ䣺2025-02-14 15:42:34,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1567. ¼ʱ䣺2025-02-14 15:42:34,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1568. ¼ʱ䣺2025-02-14 15:42:34,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1569. ¼ʱ䣺2025-02-14 15:42:34,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1570. ¼ʱ䣺2025-02-14 15:42:34,390 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1571. ¼ʱ䣺2025-02-14 15:42:34,391 ߳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
  1572. ¼ʱ䣺2025-02-14 15:42:34,391 ߳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
  1573. ¼ʱ䣺2025-02-14 15:42:34,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1574. ¼ʱ䣺2025-02-14 15:42:34,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1575. ¼ʱ䣺2025-02-14 15:42:34,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1576. ¼ʱ䣺2025-02-14 15:42:34,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1577. ¼ʱ䣺2025-02-14 15:42:39,054 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1578. ¼ʱ䣺2025-02-14 15:42:39,055 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1579. ¼ʱ䣺2025-02-14 15:42:39,055 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1580. ¼ʱ䣺2025-02-14 15:42:39,216 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1581. ¼ʱ䣺2025-02-14 15:42:39,306 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  1582. ¼ʱ䣺2025-02-14 15:42:39,310 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1583. ¼ʱ䣺2025-02-14 15:42:39,311 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1584. ¼ʱ䣺2025-02-14 15:42:39,311 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1585. ¼ʱ䣺2025-02-14 15:42:39,311 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1586. ¼ʱ䣺2025-02-14 15:42:39,311 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1587. ¼ʱ䣺2025-02-14 15:42:39,399 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1588. ¼ʱ䣺2025-02-14 15:42:39,464 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1589. ¼ʱ䣺2025-02-14 15:42:39,464 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  1590. ¼ʱ䣺2025-02-14 15:42:39,467 ߳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
  1591. ¼ʱ䣺2025-02-14 15:42:39,468 ߳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
  1592. ¼ʱ䣺2025-02-14 15:42:39,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1593. ¼ʱ䣺2025-02-14 15:42:39,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1594. ¼ʱ䣺2025-02-14 15:42:39,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1595. ¼ʱ䣺2025-02-14 15:42:39,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1596. ¼ʱ䣺2025-02-14 15:42:39,509 ߳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
  1597. ¼ʱ䣺2025-02-14 15:42:39,509 ߳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
  1598. ¼ʱ䣺2025-02-14 15:42:39,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1599. ¼ʱ䣺2025-02-14 15:42:39,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1600. ¼ʱ䣺2025-02-14 15:42:39,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1601. ¼ʱ䣺2025-02-14 15:42:39,511 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1602. ¼ʱ䣺2025-02-14 15:42:39,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1603. ¼ʱ䣺2025-02-14 15:42:39,517 ߳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
  1604. ¼ʱ䣺2025-02-14 15:42:39,517 ߳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
  1605. ¼ʱ䣺2025-02-14 15:42:39,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1606. ¼ʱ䣺2025-02-14 15:42:39,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1607. ¼ʱ䣺2025-02-14 15:42:39,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1608. ¼ʱ䣺2025-02-14 15:42:39,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1609. ¼ʱ䣺2025-02-14 15:43:23,619 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:43:23',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1610. ¼ʱ䣺2025-02-14 15:43:23,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:43:23',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1611. ¼ʱ䣺2025-02-14 15:43:23,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:43:23',datetime)System.Data.DataSet
  1612. ¼ʱ䣺2025-02-14 15:43:23,647 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:43:23',datetime)System.Data.DataSet
  1613. ¼ʱ䣺2025-02-14 15:43:23,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:43:23',datetime)System.Data.DataSet
  1614. ¼ʱ䣺2025-02-14 15:43:23,650 ߳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
  1615. ¼ʱ䣺2025-02-14 15:43:23,650 ߳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
  1616. ¼ʱ䣺2025-02-14 15:43:23,650 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1617. ¼ʱ䣺2025-02-14 15:43:23,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1618. ¼ʱ䣺2025-02-14 15:43:23,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1619. ¼ʱ䣺2025-02-14 15:44:11,490 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where InTime >convert( '2025-02-04 15:44:10',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1620. ¼ʱ䣺2025-02-14 15:44:11,490 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where InTime >convert( '2025-02-04 15:44:10',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1621. ¼ʱ䣺2025-02-14 15:44:11,490 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where InTime >convert( '2025-02-04 15:44:10',datetime)System.Data.DataSet
  1622. ¼ʱ䣺2025-02-14 15:44:11,786 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1623. POSITION: 37
  1624. ¼ʱ䣺2025-02-14 15:44:11,802 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime"
  1625. POSITION: 37
  1626. ¼ʱ䣺2025-02-14 15:44:11,811 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime"
  1627. POSITION: 37
  1628. ¼ʱ䣺2025-02-14 15:48:46,248 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:48:46',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1629. ¼ʱ䣺2025-02-14 15:48:46,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:48:46',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1630. ¼ʱ䣺2025-02-14 15:48:46,257 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:48:46',datetime)System.Data.DataSet
  1631. ¼ʱ䣺2025-02-14 15:48:46,279 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:48:46',datetime)System.Data.DataSet
  1632. ¼ʱ䣺2025-02-14 15:48:46,280 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:48:46',datetime)System.Data.DataSet
  1633. ¼ʱ䣺2025-02-14 15:48:46,283 ߳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
  1634. ¼ʱ䣺2025-02-14 15:48:46,283 ߳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
  1635. ¼ʱ䣺2025-02-14 15:48:46,283 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1636. ¼ʱ䣺2025-02-14 15:48:46,285 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1637. ¼ʱ䣺2025-02-14 15:48:46,286 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1638. ¼ʱ䣺2025-02-14 15:48:48,697 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:48:47', 'YYYY-MM-DD HH:mm:ss');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1639. ¼ʱ䣺2025-02-14 15:48:48,698 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:48:47', 'YYYY-MM-DD HH:mm:ss');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1640. ¼ʱ䣺2025-02-14 15:48:48,698 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:48:47', 'YYYY-MM-DD HH:mm:ss');System.Data.DataSet
  1641. ¼ʱ䣺2025-02-14 15:48:48,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:22007: ڸʽַж"mm"ֶεֵͻ
  1642. DETAIL: Detail redacted as it may contain sensitive data. Specify 'Include Error Detail' in the connection string to include this information.
  1643. ¼ʱ䣺2025-02-14 15:48:48,950 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:22007: ڸʽַж"mm"ֶεֵͻ
  1644. DETAIL: Detail redacted as it may contain sensitive data. Specify 'Include Error Detail' in the connection string to include this information.
  1645. ¼ʱ䣺2025-02-14 15:48:48,960 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:22007: ڸʽַж"mm"ֶεֵͻ
  1646. DETAIL: Detail redacted as it may contain sensitive data. Specify 'Include Error Detail' in the connection string to include this information.
  1647. ¼ʱ䣺2025-02-14 15:54:48,543 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:54:48',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1648. ¼ʱ䣺2025-02-14 15:54:48,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:54:48',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1649. ¼ʱ䣺2025-02-14 15:54:48,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:54:48',datetime)System.Data.DataSet
  1650. ¼ʱ䣺2025-02-14 15:54:48,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:54:48',datetime)System.Data.DataSet
  1651. ¼ʱ䣺2025-02-14 15:54:48,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:54:48',datetime)System.Data.DataSet
  1652. ¼ʱ䣺2025-02-14 15:54:48,579 ߳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
  1653. ¼ʱ䣺2025-02-14 15:54:48,579 ߳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
  1654. ¼ʱ䣺2025-02-14 15:54:48,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1655. ¼ʱ䣺2025-02-14 15:54:48,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1656. ¼ʱ䣺2025-02-14 15:54:48,580 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1657. ¼ʱ䣺2025-02-14 15:54:51,343 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:54:50', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1658. ¼ʱ䣺2025-02-14 15:54:51,343 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:54:50', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1659. ¼ʱ䣺2025-02-14 15:54:51,343 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:54:50', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1660. ¼ʱ䣺2025-02-14 15:54:51,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:54:50', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1661. ¼ʱ䣺2025-02-14 15:54:51,533 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 15:54:50', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1662. ¼ʱ䣺2025-02-14 15:54:51,538 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1663. ¼ʱ䣺2025-02-14 15:54:51,538 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1664. ¼ʱ䣺2025-02-14 15:54:51,538 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1665. ¼ʱ䣺2025-02-14 15:54:51,600 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1666. ¼ʱ䣺2025-02-14 15:54:51,650 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1667. ¼ʱ䣺2025-02-14 16:27:07,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 16:27:07',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1668. ¼ʱ䣺2025-02-14 16:27:07,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 16:27:07',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1669. ¼ʱ䣺2025-02-14 16:27:07,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 16:27:07',datetime)System.Data.DataSet
  1670. ¼ʱ䣺2025-02-14 16:27:07,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 16:27:07',datetime)System.Data.DataSet
  1671. ¼ʱ䣺2025-02-14 16:27:07,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 16:27:07',datetime)System.Data.DataSet
  1672. ¼ʱ䣺2025-02-14 16:27:07,396 ߳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
  1673. ¼ʱ䣺2025-02-14 16:27:07,396 ߳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
  1674. ¼ʱ䣺2025-02-14 16:27:07,396 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1675. ¼ʱ䣺2025-02-14 16:27:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1676. ¼ʱ䣺2025-02-14 16:27:07,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1677. ¼ʱ䣺2025-02-14 16:27:10,435 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:27:09', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1678. ¼ʱ䣺2025-02-14 16:27:10,436 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:27:09', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1679. ¼ʱ䣺2025-02-14 16:27:10,436 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:27:09', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1680. ¼ʱ䣺2025-02-14 16:27:10,565 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:27:09', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1681. ¼ʱ䣺2025-02-14 16:27:10,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:27:09', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1682. ¼ʱ䣺2025-02-14 16:27:10,621 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1683. ¼ʱ䣺2025-02-14 16:27:10,621 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1684. ¼ʱ䣺2025-02-14 16:27:10,621 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1685. ¼ʱ䣺2025-02-14 16:27:10,702 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1686. ¼ʱ䣺2025-02-14 16:27:10,755 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1687. ¼ʱ䣺2025-02-14 16:33:50,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 16:33:50',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1688. ¼ʱ䣺2025-02-14 16:33:50,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 16:33:50',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  1689. ¼ʱ䣺2025-02-14 16:33:50,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 16:33:50',datetime)System.Data.DataSet
  1690. ¼ʱ䣺2025-02-14 16:33:50,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 16:33:50',datetime)System.Data.DataSet
  1691. ¼ʱ䣺2025-02-14 16:33:50,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 16:33:50',datetime)System.Data.DataSet
  1692. ¼ʱ䣺2025-02-14 16:33:50,907 ߳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
  1693. ¼ʱ䣺2025-02-14 16:33:50,907 ߳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
  1694. ¼ʱ䣺2025-02-14 16:33:50,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1695. ¼ʱ䣺2025-02-14 16:33:50,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1696. ¼ʱ䣺2025-02-14 16:33:50,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1697. ¼ʱ䣺2025-02-14 16:33:54,549 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:33:53', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1698. ¼ʱ䣺2025-02-14 16:33:54,550 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:33:53', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1699. ¼ʱ䣺2025-02-14 16:33:54,550 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:33:53', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1700. ¼ʱ䣺2025-02-14 16:33:54,730 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:33:53', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1701. ¼ʱ䣺2025-02-14 16:33:54,797 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 16:33:53', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1702. ¼ʱ䣺2025-02-14 16:33:54,801 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1703. ¼ʱ䣺2025-02-14 16:33:54,801 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1704. ¼ʱ䣺2025-02-14 16:33:54,801 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1705. ¼ʱ䣺2025-02-14 16:33:54,879 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1706. ¼ʱ䣺2025-02-14 16:33:54,946 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1707. ¼ʱ䣺2025-02-14 16:36:53,866 ߳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
  1708. ¼ʱ䣺2025-02-14 16:36:53,874 ߳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
  1709. ¼ʱ䣺2025-02-14 16:36:53,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1710. ¼ʱ䣺2025-02-14 16:36:53,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1711. ¼ʱ䣺2025-02-14 16:36:53,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1712. ¼ʱ䣺2025-02-14 16:36:53,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1713. ¼ʱ䣺2025-02-14 16:36:53,898 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1714. ¼ʱ䣺2025-02-14 16:36:53,899 ߳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
  1715. ¼ʱ䣺2025-02-14 16:36:53,899 ߳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
  1716. ¼ʱ䣺2025-02-14 16:36:53,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1717. ¼ʱ䣺2025-02-14 16:36:53,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1718. ¼ʱ䣺2025-02-14 16:36:53,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1719. ¼ʱ䣺2025-02-14 16:36:53,903 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1720. ¼ʱ䣺2025-02-14 16:36:53,953 ߳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
  1721. ¼ʱ䣺2025-02-14 16:36:53,953 ߳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
  1722. ¼ʱ䣺2025-02-14 16:36:53,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1723. ¼ʱ䣺2025-02-14 16:36:53,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1724. ¼ʱ䣺2025-02-14 16:36:53,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1725. ¼ʱ䣺2025-02-14 16:36:53,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1726. ¼ʱ䣺2025-02-14 16:36:54,000 ߳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
  1727. ¼ʱ䣺2025-02-14 16:36:54,001 ߳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
  1728. ¼ʱ䣺2025-02-14 16:36:54,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1729. ¼ʱ䣺2025-02-14 16:36:54,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1730. ¼ʱ䣺2025-02-14 16:36:54,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1731. ¼ʱ䣺2025-02-14 16:36:54,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1732. ¼ʱ䣺2025-02-14 16:36:54,013 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1733. ¼ʱ䣺2025-02-14 16:36:54,014 ߳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
  1734. ¼ʱ䣺2025-02-14 16:36:54,016 ߳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
  1735. ¼ʱ䣺2025-02-14 16:36:54,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1736. ¼ʱ䣺2025-02-14 16:36:54,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1737. ¼ʱ䣺2025-02-14 16:36:54,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1738. ¼ʱ䣺2025-02-14 16:36:54,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1739. ¼ʱ䣺2025-02-14 16:36:54,025 ߳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
  1740. ¼ʱ䣺2025-02-14 16:36:54,025 ߳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
  1741. ¼ʱ䣺2025-02-14 16:36:54,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1742. ¼ʱ䣺2025-02-14 16:36:54,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1743. ¼ʱ䣺2025-02-14 16:36:54,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1744. ¼ʱ䣺2025-02-14 16:36:54,027 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1745. ¼ʱ䣺2025-02-14 16:36:54,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1746. ¼ʱ䣺2025-02-14 16:36:54,027 ߳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
  1747. ¼ʱ䣺2025-02-14 16:36:54,027 ߳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
  1748. ¼ʱ䣺2025-02-14 16:36:54,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1749. ¼ʱ䣺2025-02-14 16:36:54,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1750. ¼ʱ䣺2025-02-14 16:36:54,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1751. ¼ʱ䣺2025-02-14 16:36:54,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1752. ¼ʱ䣺2025-02-14 16:36:54,034 ߳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
  1753. ¼ʱ䣺2025-02-14 16:36:54,034 ߳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
  1754. ¼ʱ䣺2025-02-14 16:36:54,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1755. ¼ʱ䣺2025-02-14 16:36:54,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1756. ¼ʱ䣺2025-02-14 16:36:54,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1757. ¼ʱ䣺2025-02-14 16:36:54,068 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1758. ¼ʱ䣺2025-02-14 16:36:54,070 ߳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
  1759. ¼ʱ䣺2025-02-14 16:36:54,070 ߳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
  1760. ¼ʱ䣺2025-02-14 16:36:54,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1761. ¼ʱ䣺2025-02-14 16:36:54,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1762. ¼ʱ䣺2025-02-14 16:36:54,070 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1763. ¼ʱ䣺2025-02-14 16:36:54,070 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1764. ¼ʱ䣺2025-02-14 16:36:54,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1765. ¼ʱ䣺2025-02-14 16:36:54,083 ߳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
  1766. ¼ʱ䣺2025-02-14 16:36:54,083 ߳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
  1767. ¼ʱ䣺2025-02-14 16:36:54,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1768. ¼ʱ䣺2025-02-14 16:36:54,083 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1769. ¼ʱ䣺2025-02-14 16:36:54,084 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1770. ¼ʱ䣺2025-02-14 16:36:54,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1771. ¼ʱ䣺2025-02-14 16:36:54,104 ߳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
  1772. ¼ʱ䣺2025-02-14 16:36:54,104 ߳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
  1773. ¼ʱ䣺2025-02-14 16:36:54,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1774. ¼ʱ䣺2025-02-14 16:36:54,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1775. ¼ʱ䣺2025-02-14 16:36:54,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1776. ¼ʱ䣺2025-02-14 16:36:54,105 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1777. ¼ʱ䣺2025-02-14 16:36:54,105 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1778. ¼ʱ䣺2025-02-14 16:36:54,106 ߳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
  1779. ¼ʱ䣺2025-02-14 16:36:54,106 ߳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
  1780. ¼ʱ䣺2025-02-14 16:36:54,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1781. ¼ʱ䣺2025-02-14 16:36:54,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1782. ¼ʱ䣺2025-02-14 16:36:54,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1783. ¼ʱ䣺2025-02-14 16:36:54,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1784. ¼ʱ䣺2025-02-14 16:36:54,110 ߳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
  1785. ¼ʱ䣺2025-02-14 16:36:54,110 ߳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
  1786. ¼ʱ䣺2025-02-14 16:36:54,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1787. ¼ʱ䣺2025-02-14 16:36:54,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1788. ¼ʱ䣺2025-02-14 16:36:54,113 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1789. ¼ʱ䣺2025-02-14 16:36:54,143 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1790. ¼ʱ䣺2025-02-14 16:36:54,146 ߳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
  1791. ¼ʱ䣺2025-02-14 16:36:54,146 ߳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
  1792. ¼ʱ䣺2025-02-14 16:36:54,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1793. ¼ʱ䣺2025-02-14 16:36:54,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1794. ¼ʱ䣺2025-02-14 16:36:54,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1795. ¼ʱ䣺2025-02-14 16:36:54,147 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1796. ¼ʱ䣺2025-02-14 16:36:54,149 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1797. ¼ʱ䣺2025-02-14 16:36:54,151 ߳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
  1798. ¼ʱ䣺2025-02-14 16:36:54,151 ߳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
  1799. ¼ʱ䣺2025-02-14 16:36:54,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1800. ¼ʱ䣺2025-02-14 16:36:54,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1801. ¼ʱ䣺2025-02-14 16:36:54,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1802. ¼ʱ䣺2025-02-14 16:36:54,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1803. ¼ʱ䣺2025-02-14 16:36:56,197 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1804. ¼ʱ䣺2025-02-14 16:36:56,200 ߳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
  1805. ¼ʱ䣺2025-02-14 16:36:56,200 ߳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
  1806. ¼ʱ䣺2025-02-14 16:36:56,200 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1807. ¼ʱ䣺2025-02-14 16:36:56,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1808. ¼ʱ䣺2025-02-14 16:36:56,201 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1809. ¼ʱ䣺2025-02-14 16:36:56,202 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1810. ¼ʱ䣺2025-02-14 16:45:12,912 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  1811. ¼ʱ䣺2025-02-14 16:46:40,515 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  1812. ¼ʱ䣺2025-02-14 16:52:06,406 ߳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
  1813. ¼ʱ䣺2025-02-14 16:52:06,406 ߳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
  1814. ¼ʱ䣺2025-02-14 16:52:06,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1815. ¼ʱ䣺2025-02-14 16:52:06,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1816. ¼ʱ䣺2025-02-14 16:52:06,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1817. ¼ʱ䣺2025-02-14 16:52:29,335 ߳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
  1818. ¼ʱ䣺2025-02-14 16:52:29,335 ߳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
  1819. ¼ʱ䣺2025-02-14 16:52:29,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1820. ¼ʱ䣺2025-02-14 16:52:29,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1821. ¼ʱ䣺2025-02-14 16:52:29,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1822. ¼ʱ䣺2025-02-14 16:52:54,771 ߳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
  1823. ¼ʱ䣺2025-02-14 16:52:54,772 ߳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
  1824. ¼ʱ䣺2025-02-14 16:52:54,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1825. ¼ʱ䣺2025-02-14 16:52:54,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1826. ¼ʱ䣺2025-02-14 16:52:54,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1827. ¼ʱ䣺2025-02-14 16:52:54,776 ߳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
  1828. ¼ʱ䣺2025-02-14 16:52:54,776 ߳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
  1829. ¼ʱ䣺2025-02-14 16:52:54,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1830. ¼ʱ䣺2025-02-14 16:52:54,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1831. ¼ʱ䣺2025-02-14 16:52:54,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1832. ¼ʱ䣺2025-02-14 16:52:58,693 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1833. ¼ʱ䣺2025-02-14 16:52:58,695 ߳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
  1834. ¼ʱ䣺2025-02-14 16:52:58,695 ߳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
  1835. ¼ʱ䣺2025-02-14 16:52:58,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1836. ¼ʱ䣺2025-02-14 16:52:58,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1837. ¼ʱ䣺2025-02-14 16:52:58,695 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1838. ¼ʱ䣺2025-02-14 16:52:58,695 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1839. ¼ʱ䣺2025-02-14 16:54:17,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1840. ¼ʱ䣺2025-02-14 16:54:17,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1841. ¼ʱ䣺2025-02-14 16:54:17,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1842. ¼ʱ䣺2025-02-14 16:54:17,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1843. ¼ʱ䣺2025-02-14 16:54:17,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1844. ¼ʱ䣺2025-02-14 16:55:43,794 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1845. ¼ʱ䣺2025-02-14 16:55:43,794 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1846. ¼ʱ䣺2025-02-14 16:55:43,795 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1847. ¼ʱ䣺2025-02-14 16:55:43,945 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1848. ¼ʱ䣺2025-02-14 16:55:43,997 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1849. ¼ʱ䣺2025-02-14 16:55:49,592 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1850. ¼ʱ䣺2025-02-14 16:55:49,592 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1851. ¼ʱ䣺2025-02-14 16:55:49,592 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1852. ¼ʱ䣺2025-02-14 16:55:49,671 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1853. ¼ʱ䣺2025-02-14 16:55:49,738 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1854. ¼ʱ䣺2025-02-14 16:56:06,865 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1855. ¼ʱ䣺2025-02-14 16:56:06,867 ߳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
  1856. ¼ʱ䣺2025-02-14 16:56:06,867 ߳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
  1857. ¼ʱ䣺2025-02-14 16:56:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1858. ¼ʱ䣺2025-02-14 16:56:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1859. ¼ʱ䣺2025-02-14 16:56:06,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1860. ¼ʱ䣺2025-02-14 16:56:06,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1861. ¼ʱ䣺2025-02-14 16:57:10,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1862. ¼ʱ䣺2025-02-14 16:57:10,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1863. ¼ʱ䣺2025-02-14 16:57:10,699 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1864. ¼ʱ䣺2025-02-14 16:57:10,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1865. ¼ʱ䣺2025-02-14 16:57:10,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1866. ¼ʱ䣺2025-02-14 16:57:19,792 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1867. ¼ʱ䣺2025-02-14 16:57:19,792 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1868. ¼ʱ䣺2025-02-14 16:57:19,792 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1869. ¼ʱ䣺2025-02-14 16:57:19,863 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1870. ¼ʱ䣺2025-02-14 16:57:19,931 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1871. ¼ʱ䣺2025-02-14 16:57:19,931 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1872. ¼ʱ䣺2025-02-14 16:57:19,931 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1873. ¼ʱ䣺2025-02-14 16:57:19,931 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1874. ¼ʱ䣺2025-02-14 16:57:19,995 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1875. ¼ʱ䣺2025-02-14 16:57:20,063 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1876. ¼ʱ䣺2025-02-14 16:57:20,063 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1877. ¼ʱ䣺2025-02-14 16:57:20,065 ߳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
  1878. ¼ʱ䣺2025-02-14 16:57:20,065 ߳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
  1879. ¼ʱ䣺2025-02-14 16:57:20,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1880. ¼ʱ䣺2025-02-14 16:57:20,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1881. ¼ʱ䣺2025-02-14 16:57:20,066 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1882. ¼ʱ䣺2025-02-14 16:57:20,066 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1883. ¼ʱ䣺2025-02-14 17:01:59,644 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  1884. ¼ʱ䣺2025-02-14 17:02:12,696 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  1885. ¼ʱ䣺2025-02-14 17:02:15,104 ߳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
  1886. ¼ʱ䣺2025-02-14 17:02:15,104 ߳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
  1887. ¼ʱ䣺2025-02-14 17:02:15,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1888. ¼ʱ䣺2025-02-14 17:02:15,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1889. ¼ʱ䣺2025-02-14 17:02:15,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1890. ¼ʱ䣺2025-02-14 17:02:19,424 ߳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
  1891. ¼ʱ䣺2025-02-14 17:02:19,424 ߳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
  1892. ¼ʱ䣺2025-02-14 17:02:19,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1893. ¼ʱ䣺2025-02-14 17:02:19,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1894. ¼ʱ䣺2025-02-14 17:02:19,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1895. ¼ʱ䣺2025-02-14 17:02:19,429 ߳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
  1896. ¼ʱ䣺2025-02-14 17:02:19,429 ߳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
  1897. ¼ʱ䣺2025-02-14 17:02:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1898. ¼ʱ䣺2025-02-14 17:02:19,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1899. ¼ʱ䣺2025-02-14 17:02:19,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1900. ¼ʱ䣺2025-02-14 17:02:19,432 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1901. ¼ʱ䣺2025-02-14 17:02:19,433 ߳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
  1902. ¼ʱ䣺2025-02-14 17:02:19,433 ߳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
  1903. ¼ʱ䣺2025-02-14 17:02:19,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1904. ¼ʱ䣺2025-02-14 17:02:19,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1905. ¼ʱ䣺2025-02-14 17:02:19,433 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1906. ¼ʱ䣺2025-02-14 17:02:19,433 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1907. ¼ʱ䣺2025-02-14 17:02:28,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1908. ¼ʱ䣺2025-02-14 17:02:28,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1909. ¼ʱ䣺2025-02-14 17:02:28,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1910. ¼ʱ䣺2025-02-14 17:02:28,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1911. ¼ʱ䣺2025-02-14 17:02:28,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1912. ¼ʱ䣺2025-02-14 17:02:31,860 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1913. ¼ʱ䣺2025-02-14 17:02:31,860 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1914. ¼ʱ䣺2025-02-14 17:02:31,860 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1915. ¼ʱ䣺2025-02-14 17:02:32,018 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1916. ¼ʱ䣺2025-02-14 17:02:32,088 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1917. ¼ʱ䣺2025-02-14 17:02:32,095 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1918. ¼ʱ䣺2025-02-14 17:02:32,095 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1919. ¼ʱ䣺2025-02-14 17:02:32,095 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1920. ¼ʱ䣺2025-02-14 17:02:32,188 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1921. ¼ʱ䣺2025-02-14 17:02:32,268 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1922. ¼ʱ䣺2025-02-14 17:02:32,268 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1923. ¼ʱ䣺2025-02-14 17:02:32,270 ߳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
  1924. ¼ʱ䣺2025-02-14 17:02:32,271 ߳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
  1925. ¼ʱ䣺2025-02-14 17:02:32,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1926. ¼ʱ䣺2025-02-14 17:02:32,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1927. ¼ʱ䣺2025-02-14 17:02:32,271 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1928. ¼ʱ䣺2025-02-14 17:02:32,271 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1929. ¼ʱ䣺2025-02-14 17:04:06,971 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  1930. ¼ʱ䣺2025-02-14 17:04:08,218 ߳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
  1931. ¼ʱ䣺2025-02-14 17:04:08,219 ߳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
  1932. ¼ʱ䣺2025-02-14 17:04:08,219 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1933. ¼ʱ䣺2025-02-14 17:04:08,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1934. ¼ʱ䣺2025-02-14 17:04:08,239 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  1935. ¼ʱ䣺2025-02-14 17:04:08,648 ߳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
  1936. ¼ʱ䣺2025-02-14 17:04:08,648 ߳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
  1937. ¼ʱ䣺2025-02-14 17:04:08,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1938. ¼ʱ䣺2025-02-14 17:04:08,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1939. ¼ʱ䣺2025-02-14 17:04:08,651 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  1940. ¼ʱ䣺2025-02-14 17:04:08,654 ߳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
  1941. ¼ʱ䣺2025-02-14 17:04:08,654 ߳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
  1942. ¼ʱ䣺2025-02-14 17:04:08,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1943. ¼ʱ䣺2025-02-14 17:04:08,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1944. ¼ʱ䣺2025-02-14 17:04:08,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  1945. ¼ʱ䣺2025-02-14 17:04:08,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1946. ¼ʱ䣺2025-02-14 17:04:08,659 ߳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
  1947. ¼ʱ䣺2025-02-14 17:04:08,659 ߳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
  1948. ¼ʱ䣺2025-02-14 17:04:08,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1949. ¼ʱ䣺2025-02-14 17:04:08,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1950. ¼ʱ䣺2025-02-14 17:04:08,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1951. ¼ʱ䣺2025-02-14 17:04:08,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1952. ¼ʱ䣺2025-02-14 17:04:10,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1953. ¼ʱ䣺2025-02-14 17:04:10,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  1954. ¼ʱ䣺2025-02-14 17:04:10,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1955. ¼ʱ䣺2025-02-14 17:04:10,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1956. ¼ʱ䣺2025-02-14 17:04:10,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  1957. ¼ʱ䣺2025-02-14 17:04:12,315 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1958. ¼ʱ䣺2025-02-14 17:04:12,316 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1959. ¼ʱ䣺2025-02-14 17:04:12,316 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1960. ¼ʱ䣺2025-02-14 17:04:12,447 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1961. ¼ʱ䣺2025-02-14 17:04:12,502 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  1962. ¼ʱ䣺2025-02-14 17:04:12,507 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1963. ¼ʱ䣺2025-02-14 17:04:12,507 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  1964. ¼ʱ䣺2025-02-14 17:04:12,507 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1965. ¼ʱ䣺2025-02-14 17:04:12,621 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1966. ¼ʱ䣺2025-02-14 17:04:12,691 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  1967. ¼ʱ䣺2025-02-14 17:04:12,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  1968. ¼ʱ䣺2025-02-14 17:04:12,694 ߳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
  1969. ¼ʱ䣺2025-02-14 17:04:12,694 ߳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
  1970. ¼ʱ䣺2025-02-14 17:04:12,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1971. ¼ʱ䣺2025-02-14 17:04:12,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1972. ¼ʱ䣺2025-02-14 17:04:12,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  1973. ¼ʱ䣺2025-02-14 17:04:12,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  1974. ¼ʱ䣺2025-02-14 17:07:24,734 ߳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
  1975. ¼ʱ䣺2025-02-14 17:07:24,743 ߳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
  1976. ¼ʱ䣺2025-02-14 17:07:24,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1977. ¼ʱ䣺2025-02-14 17:07:24,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1978. ¼ʱ䣺2025-02-14 17:07:24,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  1979. ¼ʱ䣺2025-02-14 17:07:24,772 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  1980. ¼ʱ䣺2025-02-14 17:07:24,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  1981. ¼ʱ䣺2025-02-14 17:07:24,774 ߳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
  1982. ¼ʱ䣺2025-02-14 17:07:24,775 ߳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
  1983. ¼ʱ䣺2025-02-14 17:07:24,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1984. ¼ʱ䣺2025-02-14 17:07:24,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1985. ¼ʱ䣺2025-02-14 17:07:24,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  1986. ¼ʱ䣺2025-02-14 17:07:24,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  1987. ¼ʱ䣺2025-02-14 17:07:24,823 ߳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
  1988. ¼ʱ䣺2025-02-14 17:07:24,823 ߳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
  1989. ¼ʱ䣺2025-02-14 17:07:24,823 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1990. ¼ʱ䣺2025-02-14 17:07:24,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1991. ¼ʱ䣺2025-02-14 17:07:24,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  1992. ¼ʱ䣺2025-02-14 17:07:24,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  1993. ¼ʱ䣺2025-02-14 17:07:24,891 ߳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
  1994. ¼ʱ䣺2025-02-14 17:07:24,891 ߳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
  1995. ¼ʱ䣺2025-02-14 17:07:24,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1996. ¼ʱ䣺2025-02-14 17:07:24,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1997. ¼ʱ䣺2025-02-14 17:07:24,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  1998. ¼ʱ䣺2025-02-14 17:07:24,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  1999. ¼ʱ䣺2025-02-14 17:07:24,908 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2000. ¼ʱ䣺2025-02-14 17:07:24,909 ߳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
  2001. ¼ʱ䣺2025-02-14 17:07:24,910 ߳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
  2002. ¼ʱ䣺2025-02-14 17:07:24,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2003. ¼ʱ䣺2025-02-14 17:07:24,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2004. ¼ʱ䣺2025-02-14 17:07:24,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2005. ¼ʱ䣺2025-02-14 17:07:24,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2006. ¼ʱ䣺2025-02-14 17:07:24,927 ߳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
  2007. ¼ʱ䣺2025-02-14 17:07:24,927 ߳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
  2008. ¼ʱ䣺2025-02-14 17:07:24,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2009. ¼ʱ䣺2025-02-14 17:07:24,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2010. ¼ʱ䣺2025-02-14 17:07:24,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2011. ¼ʱ䣺2025-02-14 17:07:24,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2012. ¼ʱ䣺2025-02-14 17:07:24,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2013. ¼ʱ䣺2025-02-14 17:07:24,930 ߳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
  2014. ¼ʱ䣺2025-02-14 17:07:24,930 ߳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
  2015. ¼ʱ䣺2025-02-14 17:07:24,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2016. ¼ʱ䣺2025-02-14 17:07:24,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2017. ¼ʱ䣺2025-02-14 17:07:24,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2018. ¼ʱ䣺2025-02-14 17:07:24,932 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2019. ¼ʱ䣺2025-02-14 17:07:24,944 ߳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
  2020. ¼ʱ䣺2025-02-14 17:07:24,944 ߳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
  2021. ¼ʱ䣺2025-02-14 17:07:24,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2022. ¼ʱ䣺2025-02-14 17:07:24,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2023. ¼ʱ䣺2025-02-14 17:07:24,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2024. ¼ʱ䣺2025-02-14 17:07:25,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2025. ¼ʱ䣺2025-02-14 17:07:25,008 ߳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
  2026. ¼ʱ䣺2025-02-14 17:07:25,008 ߳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
  2027. ¼ʱ䣺2025-02-14 17:07:25,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2028. ¼ʱ䣺2025-02-14 17:07:25,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2029. ¼ʱ䣺2025-02-14 17:07:25,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2030. ¼ʱ䣺2025-02-14 17:07:25,009 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2031. ¼ʱ䣺2025-02-14 17:07:25,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2032. ¼ʱ䣺2025-02-14 17:07:25,020 ߳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
  2033. ¼ʱ䣺2025-02-14 17:07:25,021 ߳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
  2034. ¼ʱ䣺2025-02-14 17:07:25,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2035. ¼ʱ䣺2025-02-14 17:07:25,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2036. ¼ʱ䣺2025-02-14 17:07:25,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2037. ¼ʱ䣺2025-02-14 17:07:25,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2038. ¼ʱ䣺2025-02-14 17:07:25,047 ߳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
  2039. ¼ʱ䣺2025-02-14 17:07:25,047 ߳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
  2040. ¼ʱ䣺2025-02-14 17:07:25,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2041. ¼ʱ䣺2025-02-14 17:07:25,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2042. ¼ʱ䣺2025-02-14 17:07:25,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2043. ¼ʱ䣺2025-02-14 17:07:25,048 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2044. ¼ʱ䣺2025-02-14 17:07:25,048 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2045. ¼ʱ䣺2025-02-14 17:07:25,050 ߳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
  2046. ¼ʱ䣺2025-02-14 17:07:25,050 ߳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
  2047. ¼ʱ䣺2025-02-14 17:07:25,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2048. ¼ʱ䣺2025-02-14 17:07:25,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2049. ¼ʱ䣺2025-02-14 17:07:25,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2050. ¼ʱ䣺2025-02-14 17:07:25,051 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2051. ¼ʱ䣺2025-02-14 17:07:25,055 ߳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
  2052. ¼ʱ䣺2025-02-14 17:07:25,055 ߳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
  2053. ¼ʱ䣺2025-02-14 17:07:25,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2054. ¼ʱ䣺2025-02-14 17:07:25,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2055. ¼ʱ䣺2025-02-14 17:07:25,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2056. ¼ʱ䣺2025-02-14 17:07:25,108 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2057. ¼ʱ䣺2025-02-14 17:07:25,110 ߳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
  2058. ¼ʱ䣺2025-02-14 17:07:25,110 ߳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
  2059. ¼ʱ䣺2025-02-14 17:07:25,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2060. ¼ʱ䣺2025-02-14 17:07:25,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2061. ¼ʱ䣺2025-02-14 17:07:25,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2062. ¼ʱ䣺2025-02-14 17:07:25,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2063. ¼ʱ䣺2025-02-14 17:07:25,118 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2064. ¼ʱ䣺2025-02-14 17:07:25,119 ߳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
  2065. ¼ʱ䣺2025-02-14 17:07:25,119 ߳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
  2066. ¼ʱ䣺2025-02-14 17:07:25,119 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2067. ¼ʱ䣺2025-02-14 17:07:25,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2068. ¼ʱ䣺2025-02-14 17:07:25,120 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2069. ¼ʱ䣺2025-02-14 17:07:25,120 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2070. ¼ʱ䣺2025-02-14 17:07:37,836 ߳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
  2071. ¼ʱ䣺2025-02-14 17:07:37,836 ߳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
  2072. ¼ʱ䣺2025-02-14 17:07:37,836 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2073. ¼ʱ䣺2025-02-14 17:07:37,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2074. ¼ʱ䣺2025-02-14 17:07:37,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2075. ¼ʱ䣺2025-02-14 17:07:37,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2076. ¼ʱ䣺2025-02-14 17:07:37,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2077. ¼ʱ䣺2025-02-14 17:07:37,839 ߳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
  2078. ¼ʱ䣺2025-02-14 17:07:37,839 ߳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
  2079. ¼ʱ䣺2025-02-14 17:07:37,839 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2080. ¼ʱ䣺2025-02-14 17:07:37,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2081. ¼ʱ䣺2025-02-14 17:07:37,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2082. ¼ʱ䣺2025-02-14 17:07:37,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2083. ¼ʱ䣺2025-02-14 17:07:37,843 ߳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
  2084. ¼ʱ䣺2025-02-14 17:07:37,843 ߳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
  2085. ¼ʱ䣺2025-02-14 17:07:37,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2086. ¼ʱ䣺2025-02-14 17:07:37,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2087. ¼ʱ䣺2025-02-14 17:07:37,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2088. ¼ʱ䣺2025-02-14 17:07:37,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2089. ¼ʱ䣺2025-02-14 17:07:37,915 ߳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
  2090. ¼ʱ䣺2025-02-14 17:07:37,915 ߳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
  2091. ¼ʱ䣺2025-02-14 17:07:37,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2092. ¼ʱ䣺2025-02-14 17:07:37,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2093. ¼ʱ䣺2025-02-14 17:07:37,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2094. ¼ʱ䣺2025-02-14 17:07:37,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2095. ¼ʱ䣺2025-02-14 17:07:37,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2096. ¼ʱ䣺2025-02-14 17:07:37,930 ߳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
  2097. ¼ʱ䣺2025-02-14 17:07:37,930 ߳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
  2098. ¼ʱ䣺2025-02-14 17:07:37,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2099. ¼ʱ䣺2025-02-14 17:07:37,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2100. ¼ʱ䣺2025-02-14 17:07:37,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2101. ¼ʱ䣺2025-02-14 17:07:37,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2102. ¼ʱ䣺2025-02-14 17:07:50,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 17:07:50',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  2103. ¼ʱ䣺2025-02-14 17:07:50,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 17:07:50',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  2104. ¼ʱ䣺2025-02-14 17:07:50,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 17:07:50',datetime)System.Data.DataSet
  2105. ¼ʱ䣺2025-02-14 17:07:50,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 17:07:50',datetime)System.Data.DataSet
  2106. ¼ʱ䣺2025-02-14 17:07:50,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 17:07:50',datetime)System.Data.DataSet
  2107. ¼ʱ䣺2025-02-14 17:07:50,596 ߳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
  2108. ¼ʱ䣺2025-02-14 17:07:50,596 ߳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
  2109. ¼ʱ䣺2025-02-14 17:07:50,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2110. ¼ʱ䣺2025-02-14 17:07:50,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2111. ¼ʱ䣺2025-02-14 17:07:50,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2112. ¼ʱ䣺2025-02-14 17:08:08,268 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2113. ¼ʱ䣺2025-02-14 17:08:37,192 ߳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
  2114. ¼ʱ䣺2025-02-14 17:08:37,192 ߳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
  2115. ¼ʱ䣺2025-02-14 17:08:37,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2116. ¼ʱ䣺2025-02-14 17:08:37,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2117. ¼ʱ䣺2025-02-14 17:08:37,228 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2118. ¼ʱ䣺2025-02-14 17:08:50,669 ߳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
  2119. ¼ʱ䣺2025-02-14 17:08:50,669 ߳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
  2120. ¼ʱ䣺2025-02-14 17:08:50,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2121. ¼ʱ䣺2025-02-14 17:08:50,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2122. ¼ʱ䣺2025-02-14 17:08:50,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2123. ¼ʱ䣺2025-02-14 17:08:50,673 ߳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
  2124. ¼ʱ䣺2025-02-14 17:08:50,673 ߳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
  2125. ¼ʱ䣺2025-02-14 17:08:50,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2126. ¼ʱ䣺2025-02-14 17:08:50,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2127. ¼ʱ䣺2025-02-14 17:08:50,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2128. ¼ʱ䣺2025-02-14 17:09:01,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2129. ¼ʱ䣺2025-02-14 17:09:01,820 ߳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
  2130. ¼ʱ䣺2025-02-14 17:09:01,820 ߳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
  2131. ¼ʱ䣺2025-02-14 17:09:01,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2132. ¼ʱ䣺2025-02-14 17:09:01,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2133. ¼ʱ䣺2025-02-14 17:09:01,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2134. ¼ʱ䣺2025-02-14 17:09:01,820 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2135. ¼ʱ䣺2025-02-14 17:09:15,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2136. ¼ʱ䣺2025-02-14 17:09:15,807 ߳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
  2137. ¼ʱ䣺2025-02-14 17:09:15,807 ߳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
  2138. ¼ʱ䣺2025-02-14 17:09:15,807 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2139. ¼ʱ䣺2025-02-14 17:09:15,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2140. ¼ʱ䣺2025-02-14 17:09:15,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2141. ¼ʱ䣺2025-02-14 17:09:15,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2142. ¼ʱ䣺2025-02-14 17:10:57,026 ߳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
  2143. ¼ʱ䣺2025-02-14 17:10:57,035 ߳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
  2144. ¼ʱ䣺2025-02-14 17:10:57,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2145. ¼ʱ䣺2025-02-14 17:10:57,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2146. ¼ʱ䣺2025-02-14 17:10:57,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2147. ¼ʱ䣺2025-02-14 17:10:57,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2148. ¼ʱ䣺2025-02-14 17:10:57,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2149. ¼ʱ䣺2025-02-14 17:10:57,060 ߳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
  2150. ¼ʱ䣺2025-02-14 17:10:57,060 ߳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
  2151. ¼ʱ䣺2025-02-14 17:10:57,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2152. ¼ʱ䣺2025-02-14 17:10:57,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2153. ¼ʱ䣺2025-02-14 17:10:57,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2154. ¼ʱ䣺2025-02-14 17:10:57,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2155. ¼ʱ䣺2025-02-14 17:10:57,084 ߳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
  2156. ¼ʱ䣺2025-02-14 17:10:57,084 ߳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
  2157. ¼ʱ䣺2025-02-14 17:10:57,085 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2158. ¼ʱ䣺2025-02-14 17:10:57,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2159. ¼ʱ䣺2025-02-14 17:10:57,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2160. ¼ʱ䣺2025-02-14 17:10:57,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2161. ¼ʱ䣺2025-02-14 17:10:57,124 ߳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
  2162. ¼ʱ䣺2025-02-14 17:10:57,124 ߳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
  2163. ¼ʱ䣺2025-02-14 17:10:57,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2164. ¼ʱ䣺2025-02-14 17:10:57,129 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2165. ¼ʱ䣺2025-02-14 17:10:57,130 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2166. ¼ʱ䣺2025-02-14 17:10:57,130 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2167. ¼ʱ䣺2025-02-14 17:10:57,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2168. ¼ʱ䣺2025-02-14 17:10:57,135 ߳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
  2169. ¼ʱ䣺2025-02-14 17:10:57,135 ߳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
  2170. ¼ʱ䣺2025-02-14 17:10:57,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2171. ¼ʱ䣺2025-02-14 17:10:57,137 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2172. ¼ʱ䣺2025-02-14 17:10:57,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2173. ¼ʱ䣺2025-02-14 17:10:57,138 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2174. ¼ʱ䣺2025-02-14 17:10:57,150 ߳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
  2175. ¼ʱ䣺2025-02-14 17:10:57,150 ߳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
  2176. ¼ʱ䣺2025-02-14 17:10:57,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2177. ¼ʱ䣺2025-02-14 17:10:57,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2178. ¼ʱ䣺2025-02-14 17:10:57,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2179. ¼ʱ䣺2025-02-14 17:10:57,151 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2180. ¼ʱ䣺2025-02-14 17:10:57,152 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2181. ¼ʱ䣺2025-02-14 17:10:57,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
  2182. ¼ʱ䣺2025-02-14 17:10:57,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
  2183. ¼ʱ䣺2025-02-14 17:10:57,152 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2184. ¼ʱ䣺2025-02-14 17:10:57,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2185. ¼ʱ䣺2025-02-14 17:10:57,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2186. ¼ʱ䣺2025-02-14 17:10:57,153 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2187. ¼ʱ䣺2025-02-14 17:10:57,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
  2188. ¼ʱ䣺2025-02-14 17:10:57,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
  2189. ¼ʱ䣺2025-02-14 17:10:57,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2190. ¼ʱ䣺2025-02-14 17:10:57,161 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2191. ¼ʱ䣺2025-02-14 17:10:57,163 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2192. ¼ʱ䣺2025-02-14 17:10:57,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2193. ¼ʱ䣺2025-02-14 17:10:57,194 ߳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
  2194. ¼ʱ䣺2025-02-14 17:10:57,194 ߳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
  2195. ¼ʱ䣺2025-02-14 17:10:57,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2196. ¼ʱ䣺2025-02-14 17:10:57,194 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2197. ¼ʱ䣺2025-02-14 17:10:57,195 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2198. ¼ʱ䣺2025-02-14 17:10:57,195 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2199. ¼ʱ䣺2025-02-14 17:10:57,201 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2200. ¼ʱ䣺2025-02-14 17:10:57,203 ߳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
  2201. ¼ʱ䣺2025-02-14 17:10:57,203 ߳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
  2202. ¼ʱ䣺2025-02-14 17:10:57,203 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2203. ¼ʱ䣺2025-02-14 17:10:57,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2204. ¼ʱ䣺2025-02-14 17:10:57,204 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2205. ¼ʱ䣺2025-02-14 17:10:57,204 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2206. ¼ʱ䣺2025-02-14 17:10:57,233 ߳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
  2207. ¼ʱ䣺2025-02-14 17:10:57,233 ߳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
  2208. ¼ʱ䣺2025-02-14 17:10:57,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2209. ¼ʱ䣺2025-02-14 17:10:57,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2210. ¼ʱ䣺2025-02-14 17:10:57,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2211. ¼ʱ䣺2025-02-14 17:10:57,234 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2212. ¼ʱ䣺2025-02-14 17:10:57,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2213. ¼ʱ䣺2025-02-14 17:10:57,235 ߳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
  2214. ¼ʱ䣺2025-02-14 17:10:57,235 ߳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
  2215. ¼ʱ䣺2025-02-14 17:10:57,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2216. ¼ʱ䣺2025-02-14 17:10:57,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2217. ¼ʱ䣺2025-02-14 17:10:57,236 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2218. ¼ʱ䣺2025-02-14 17:10:57,236 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2219. ¼ʱ䣺2025-02-14 17:10:57,241 ߳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
  2220. ¼ʱ䣺2025-02-14 17:10:57,241 ߳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
  2221. ¼ʱ䣺2025-02-14 17:10:57,241 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2222. ¼ʱ䣺2025-02-14 17:10:57,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2223. ¼ʱ䣺2025-02-14 17:10:57,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2224. ¼ʱ䣺2025-02-14 17:10:57,280 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2225. ¼ʱ䣺2025-02-14 17:10:57,281 ߳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
  2226. ¼ʱ䣺2025-02-14 17:10:57,282 ߳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
  2227. ¼ʱ䣺2025-02-14 17:10:57,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2228. ¼ʱ䣺2025-02-14 17:10:57,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2229. ¼ʱ䣺2025-02-14 17:10:57,282 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2230. ¼ʱ䣺2025-02-14 17:10:57,282 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2231. ¼ʱ䣺2025-02-14 17:10:57,290 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2232. ¼ʱ䣺2025-02-14 17:10:57,291 ߳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
  2233. ¼ʱ䣺2025-02-14 17:10:57,291 ߳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
  2234. ¼ʱ䣺2025-02-14 17:10:57,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2235. ¼ʱ䣺2025-02-14 17:10:57,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2236. ¼ʱ䣺2025-02-14 17:10:57,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2237. ¼ʱ䣺2025-02-14 17:10:57,292 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2238. ¼ʱ䣺2025-02-14 17:11:20,484 ߳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
  2239. ¼ʱ䣺2025-02-14 17:11:20,484 ߳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
  2240. ¼ʱ䣺2025-02-14 17:11:20,484 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2241. ¼ʱ䣺2025-02-14 17:11:20,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2242. ¼ʱ䣺2025-02-14 17:11:20,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2243. ¼ʱ䣺2025-02-14 17:11:20,487 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2244. ¼ʱ䣺2025-02-14 17:11:20,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2245. ¼ʱ䣺2025-02-14 17:11:20,489 ߳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
  2246. ¼ʱ䣺2025-02-14 17:11:20,489 ߳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
  2247. ¼ʱ䣺2025-02-14 17:11:20,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2248. ¼ʱ䣺2025-02-14 17:11:20,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2249. ¼ʱ䣺2025-02-14 17:11:20,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2250. ¼ʱ䣺2025-02-14 17:11:20,491 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2251. ¼ʱ䣺2025-02-14 17:11:20,501 ߳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
  2252. ¼ʱ䣺2025-02-14 17:11:20,501 ߳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
  2253. ¼ʱ䣺2025-02-14 17:11:20,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2254. ¼ʱ䣺2025-02-14 17:11:20,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2255. ¼ʱ䣺2025-02-14 17:11:20,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2256. ¼ʱ䣺2025-02-14 17:11:20,574 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2257. ¼ʱ䣺2025-02-14 17:11:20,576 ߳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
  2258. ¼ʱ䣺2025-02-14 17:11:20,576 ߳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
  2259. ¼ʱ䣺2025-02-14 17:11:20,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2260. ¼ʱ䣺2025-02-14 17:11:20,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2261. ¼ʱ䣺2025-02-14 17:11:20,577 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2262. ¼ʱ䣺2025-02-14 17:11:20,577 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2263. ¼ʱ䣺2025-02-14 17:11:20,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2264. ¼ʱ䣺2025-02-14 17:11:20,588 ߳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
  2265. ¼ʱ䣺2025-02-14 17:11:20,589 ߳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
  2266. ¼ʱ䣺2025-02-14 17:11:20,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2267. ¼ʱ䣺2025-02-14 17:11:20,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2268. ¼ʱ䣺2025-02-14 17:11:20,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2269. ¼ʱ䣺2025-02-14 17:11:20,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2270. ¼ʱ䣺2025-02-14 17:11:22,242 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2271. ¼ʱ䣺2025-02-14 17:11:22,243 ߳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
  2272. ¼ʱ䣺2025-02-14 17:11:22,243 ߳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
  2273. ¼ʱ䣺2025-02-14 17:11:22,243 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2274. ¼ʱ䣺2025-02-14 17:11:22,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2275. ¼ʱ䣺2025-02-14 17:11:22,244 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2276. ¼ʱ䣺2025-02-14 17:11:22,244 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2277. ¼ʱ䣺2025-02-14 17:11:33,674 ߳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
  2278. ¼ʱ䣺2025-02-14 17:11:33,674 ߳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
  2279. ¼ʱ䣺2025-02-14 17:11:33,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2280. ¼ʱ䣺2025-02-14 17:11:33,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2281. ¼ʱ䣺2025-02-14 17:11:33,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2282. ¼ʱ䣺2025-02-14 17:11:33,675 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2283. ¼ʱ䣺2025-02-14 17:11:33,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2284. ¼ʱ䣺2025-02-14 17:11:33,676 ߳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
  2285. ¼ʱ䣺2025-02-14 17:11:33,676 ߳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
  2286. ¼ʱ䣺2025-02-14 17:11:33,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2287. ¼ʱ䣺2025-02-14 17:11:33,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2288. ¼ʱ䣺2025-02-14 17:11:33,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2289. ¼ʱ䣺2025-02-14 17:11:33,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2290. ¼ʱ䣺2025-02-14 17:11:50,985 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2291. ¼ʱ䣺2025-02-14 17:11:54,591 ߳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
  2292. ¼ʱ䣺2025-02-14 17:11:54,591 ߳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
  2293. ¼ʱ䣺2025-02-14 17:11:54,591 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2294. ¼ʱ䣺2025-02-14 17:11:54,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2295. ¼ʱ䣺2025-02-14 17:11:54,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2296. ¼ʱ䣺2025-02-14 17:12:00,882 ߳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
  2297. ¼ʱ䣺2025-02-14 17:12:00,882 ߳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
  2298. ¼ʱ䣺2025-02-14 17:12:00,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2299. ¼ʱ䣺2025-02-14 17:12:00,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2300. ¼ʱ䣺2025-02-14 17:12:00,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2301. ¼ʱ䣺2025-02-14 17:12:00,886 ߳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
  2302. ¼ʱ䣺2025-02-14 17:12:00,886 ߳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
  2303. ¼ʱ䣺2025-02-14 17:12:00,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2304. ¼ʱ䣺2025-02-14 17:12:00,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2305. ¼ʱ䣺2025-02-14 17:12:00,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2306. ¼ʱ䣺2025-02-14 17:12:03,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2307. ¼ʱ䣺2025-02-14 17:12:03,499 ߳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
  2308. ¼ʱ䣺2025-02-14 17:12:03,499 ߳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
  2309. ¼ʱ䣺2025-02-14 17:12:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2310. ¼ʱ䣺2025-02-14 17:12:03,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2311. ¼ʱ䣺2025-02-14 17:12:03,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2312. ¼ʱ䣺2025-02-14 17:12:03,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2313. ¼ʱ䣺2025-02-14 17:13:10,563 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2314. ¼ʱ䣺2025-02-14 17:13:15,900 ߳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
  2315. ¼ʱ䣺2025-02-14 17:13:15,900 ߳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
  2316. ¼ʱ䣺2025-02-14 17:13:15,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2317. ¼ʱ䣺2025-02-14 17:13:15,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2318. ¼ʱ䣺2025-02-14 17:13:15,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2319. ¼ʱ䣺2025-02-14 17:13:16,980 ߳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
  2320. ¼ʱ䣺2025-02-14 17:13:16,980 ߳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
  2321. ¼ʱ䣺2025-02-14 17:13:16,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2322. ¼ʱ䣺2025-02-14 17:13:16,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2323. ¼ʱ䣺2025-02-14 17:13:16,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2324. ¼ʱ䣺2025-02-14 17:13:16,984 ߳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
  2325. ¼ʱ䣺2025-02-14 17:13:16,984 ߳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
  2326. ¼ʱ䣺2025-02-14 17:13:16,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2327. ¼ʱ䣺2025-02-14 17:13:16,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2328. ¼ʱ䣺2025-02-14 17:13:16,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2329. ¼ʱ䣺2025-02-14 17:13:16,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2330. ¼ʱ䣺2025-02-14 17:13:16,989 ߳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
  2331. ¼ʱ䣺2025-02-14 17:13:16,989 ߳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
  2332. ¼ʱ䣺2025-02-14 17:13:16,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2333. ¼ʱ䣺2025-02-14 17:13:16,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2334. ¼ʱ䣺2025-02-14 17:13:16,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2335. ¼ʱ䣺2025-02-14 17:13:16,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2336. ¼ʱ䣺2025-02-14 17:13:37,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2337. ¼ʱ䣺2025-02-14 17:13:37,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2338. ¼ʱ䣺2025-02-14 17:13:37,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2339. ¼ʱ䣺2025-02-14 17:13:37,221 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2340. ¼ʱ䣺2025-02-14 17:13:37,222 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2341. ¼ʱ䣺2025-02-14 17:13:38,985 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2342. ¼ʱ䣺2025-02-14 17:13:38,986 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2343. ¼ʱ䣺2025-02-14 17:13:38,986 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2344. ¼ʱ䣺2025-02-14 17:13:39,117 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2345. ¼ʱ䣺2025-02-14 17:13:39,195 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2346. ¼ʱ䣺2025-02-14 17:13:39,200 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2347. ¼ʱ䣺2025-02-14 17:13:39,200 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2348. ¼ʱ䣺2025-02-14 17:13:39,205 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2349. ¼ʱ䣺2025-02-14 17:13:39,280 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2350. ¼ʱ䣺2025-02-14 17:13:39,341 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2351. ¼ʱ䣺2025-02-14 17:13:39,341 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2352. ¼ʱ䣺2025-02-14 17:13:39,343 ߳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
  2353. ¼ʱ䣺2025-02-14 17:13:39,343 ߳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
  2354. ¼ʱ䣺2025-02-14 17:13:39,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2355. ¼ʱ䣺2025-02-14 17:13:39,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2356. ¼ʱ䣺2025-02-14 17:13:39,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2357. ¼ʱ䣺2025-02-14 17:13:39,344 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2358. ¼ʱ䣺2025-02-14 17:19:12,011 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2359. ¼ʱ䣺2025-02-14 17:19:14,771 ߳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
  2360. ¼ʱ䣺2025-02-14 17:19:14,771 ߳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
  2361. ¼ʱ䣺2025-02-14 17:19:14,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2362. ¼ʱ䣺2025-02-14 17:19:14,791 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2363. ¼ʱ䣺2025-02-14 17:19:14,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2364. ¼ʱ䣺2025-02-14 17:19:15,871 ߳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
  2365. ¼ʱ䣺2025-02-14 17:19:15,871 ߳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
  2366. ¼ʱ䣺2025-02-14 17:19:15,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2367. ¼ʱ䣺2025-02-14 17:19:15,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2368. ¼ʱ䣺2025-02-14 17:19:15,873 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2369. ¼ʱ䣺2025-02-14 17:19:15,875 ߳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
  2370. ¼ʱ䣺2025-02-14 17:19:15,875 ߳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
  2371. ¼ʱ䣺2025-02-14 17:19:15,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2372. ¼ʱ䣺2025-02-14 17:19:15,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2373. ¼ʱ䣺2025-02-14 17:19:15,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2374. ¼ʱ䣺2025-02-14 17:19:15,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2375. ¼ʱ䣺2025-02-14 17:19:15,879 ߳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
  2376. ¼ʱ䣺2025-02-14 17:19:15,879 ߳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
  2377. ¼ʱ䣺2025-02-14 17:19:15,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2378. ¼ʱ䣺2025-02-14 17:19:15,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2379. ¼ʱ䣺2025-02-14 17:19:15,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2380. ¼ʱ䣺2025-02-14 17:19:15,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2381. ¼ʱ䣺2025-02-14 17:20:58,241 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2382. ¼ʱ䣺2025-02-14 17:21:01,998 ߳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
  2383. ¼ʱ䣺2025-02-14 17:21:01,999 ߳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
  2384. ¼ʱ䣺2025-02-14 17:21:01,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2385. ¼ʱ䣺2025-02-14 17:21:02,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2386. ¼ʱ䣺2025-02-14 17:21:02,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2387. ¼ʱ䣺2025-02-14 17:21:22,252 ߳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
  2388. ¼ʱ䣺2025-02-14 17:21:22,252 ߳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
  2389. ¼ʱ䣺2025-02-14 17:21:22,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2390. ¼ʱ䣺2025-02-14 17:21:22,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2391. ¼ʱ䣺2025-02-14 17:21:22,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2392. ¼ʱ䣺2025-02-14 17:23:02,189 ߳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
  2393. ¼ʱ䣺2025-02-14 17:23:02,189 ߳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
  2394. ¼ʱ䣺2025-02-14 17:23:02,189 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2395. ¼ʱ䣺2025-02-14 17:23:02,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2396. ¼ʱ䣺2025-02-14 17:23:02,192 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2397. ¼ʱ䣺2025-02-14 17:24:13,991 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2398. ¼ʱ䣺2025-02-14 17:24:13,992 ߳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
  2399. ¼ʱ䣺2025-02-14 17:24:13,992 ߳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
  2400. ¼ʱ䣺2025-02-14 17:24:13,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2401. ¼ʱ䣺2025-02-14 17:24:13,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2402. ¼ʱ䣺2025-02-14 17:24:13,993 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2403. ¼ʱ䣺2025-02-14 17:24:13,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2404. ¼ʱ䣺2025-02-14 17:26:05,935 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2405. ¼ʱ䣺2025-02-14 17:26:06,304 ߳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
  2406. ¼ʱ䣺2025-02-14 17:26:06,304 ߳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
  2407. ¼ʱ䣺2025-02-14 17:26:06,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2408. ¼ʱ䣺2025-02-14 17:26:06,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2409. ¼ʱ䣺2025-02-14 17:26:06,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2410. ¼ʱ䣺2025-02-14 17:26:25,227 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2411. ¼ʱ䣺2025-02-14 17:27:29,324 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2412. ¼ʱ䣺2025-02-14 17:27:33,908 ߳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
  2413. ¼ʱ䣺2025-02-14 17:27:33,908 ߳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
  2414. ¼ʱ䣺2025-02-14 17:27:33,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2415. ¼ʱ䣺2025-02-14 17:27:33,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2416. ¼ʱ䣺2025-02-14 17:27:33,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2417. ¼ʱ䣺2025-02-14 17:27:38,018 ߳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
  2418. ¼ʱ䣺2025-02-14 17:27:38,018 ߳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
  2419. ¼ʱ䣺2025-02-14 17:27:38,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2420. ¼ʱ䣺2025-02-14 17:27:38,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2421. ¼ʱ䣺2025-02-14 17:27:38,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2422. ¼ʱ䣺2025-02-14 17:27:38,022 ߳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
  2423. ¼ʱ䣺2025-02-14 17:27:38,022 ߳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
  2424. ¼ʱ䣺2025-02-14 17:27:38,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2425. ¼ʱ䣺2025-02-14 17:27:38,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2426. ¼ʱ䣺2025-02-14 17:27:38,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2427. ¼ʱ䣺2025-02-14 17:27:44,325 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2428. ¼ʱ䣺2025-02-14 17:27:44,328 ߳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
  2429. ¼ʱ䣺2025-02-14 17:27:44,328 ߳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
  2430. ¼ʱ䣺2025-02-14 17:27:44,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2431. ¼ʱ䣺2025-02-14 17:27:44,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2432. ¼ʱ䣺2025-02-14 17:27:44,329 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2433. ¼ʱ䣺2025-02-14 17:27:44,329 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2434. ¼ʱ䣺2025-02-14 17:29:51,632 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2435. ¼ʱ䣺2025-02-14 17:29:59,385 ߳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
  2436. ¼ʱ䣺2025-02-14 17:29:59,385 ߳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
  2437. ¼ʱ䣺2025-02-14 17:29:59,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2438. ¼ʱ䣺2025-02-14 17:29:59,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2439. ¼ʱ䣺2025-02-14 17:29:59,407 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STUSystem.Data.DataSet
  2440. ¼ʱ䣺2025-02-14 17:30:02,725 ߳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
  2441. ¼ʱ䣺2025-02-14 17:30:02,725 ߳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
  2442. ¼ʱ䣺2025-02-14 17:30:02,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2443. ¼ʱ䣺2025-02-14 17:30:02,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2444. ¼ʱ䣺2025-02-14 17:30:02,727 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2445. ¼ʱ䣺2025-02-14 17:30:02,728 ߳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
  2446. ¼ʱ䣺2025-02-14 17:30:02,728 ߳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
  2447. ¼ʱ䣺2025-02-14 17:30:02,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2448. ¼ʱ䣺2025-02-14 17:30:02,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2449. ¼ʱ䣺2025-02-14 17:30:02,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2450. ¼ʱ䣺2025-02-14 17:30:02,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2451. ¼ʱ䣺2025-02-14 17:30:02,731 ߳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
  2452. ¼ʱ䣺2025-02-14 17:30:02,731 ߳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
  2453. ¼ʱ䣺2025-02-14 17:30:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2454. ¼ʱ䣺2025-02-14 17:30:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2455. ¼ʱ䣺2025-02-14 17:30:02,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2456. ¼ʱ䣺2025-02-14 17:30:02,731 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2457. ¼ʱ䣺2025-02-14 17:30:29,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2458. ¼ʱ䣺2025-02-14 17:30:29,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2459. ¼ʱ䣺2025-02-14 17:30:29,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2460. ¼ʱ䣺2025-02-14 17:30:29,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2461. ¼ʱ䣺2025-02-14 17:30:29,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where ID='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2462. ¼ʱ䣺2025-02-14 17:30:30,497 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2463. ¼ʱ䣺2025-02-14 17:30:30,497 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2464. ¼ʱ䣺2025-02-14 17:30:30,497 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2465. ¼ʱ䣺2025-02-14 17:30:30,633 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2466. ¼ʱ䣺2025-02-14 17:30:30,725 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2467. ¼ʱ䣺2025-02-14 17:30:30,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2468. ¼ʱ䣺2025-02-14 17:30:30,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2469. ¼ʱ䣺2025-02-14 17:30:30,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2470. ¼ʱ䣺2025-02-14 17:30:30,806 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2471. ¼ʱ䣺2025-02-14 17:30:30,862 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2472. ¼ʱ䣺2025-02-14 17:30:30,862 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2473. ¼ʱ䣺2025-02-14 17:30:30,863 ߳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
  2474. ¼ʱ䣺2025-02-14 17:30:30,863 ߳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
  2475. ¼ʱ䣺2025-02-14 17:30:30,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2476. ¼ʱ䣺2025-02-14 17:30:30,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2477. ¼ʱ䣺2025-02-14 17:30:30,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2478. ¼ʱ䣺2025-02-14 17:30:30,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2479. ¼ʱ䣺2025-02-14 17:30:30,905 ߳ID:[1]- :CnasInsertOperation :CreateInputData Ϣ:ַĸʽȷ Id д洢 <849421f3-e7a7-40de-a7a6-3504b83a4418> Int32
  2480. ¼ʱ䣺2025-02-14 17:30:50,553 ߳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
  2481. ¼ʱ䣺2025-02-14 17:30:50,562 ߳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
  2482. ¼ʱ䣺2025-02-14 17:30:50,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2483. ¼ʱ䣺2025-02-14 17:30:50,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2484. ¼ʱ䣺2025-02-14 17:30:50,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2485. ¼ʱ䣺2025-02-14 17:30:50,585 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2486. ¼ʱ䣺2025-02-14 17:30:50,585 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2487. ¼ʱ䣺2025-02-14 17:30:50,587 ߳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
  2488. ¼ʱ䣺2025-02-14 17:30:50,588 ߳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
  2489. ¼ʱ䣺2025-02-14 17:30:50,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2490. ¼ʱ䣺2025-02-14 17:30:50,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2491. ¼ʱ䣺2025-02-14 17:30:50,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2492. ¼ʱ䣺2025-02-14 17:30:50,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2493. ¼ʱ䣺2025-02-14 17:30:50,627 ߳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
  2494. ¼ʱ䣺2025-02-14 17:30:50,627 ߳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
  2495. ¼ʱ䣺2025-02-14 17:30:50,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2496. ¼ʱ䣺2025-02-14 17:30:50,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2497. ¼ʱ䣺2025-02-14 17:30:50,631 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2498. ¼ʱ䣺2025-02-14 17:30:50,713 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2499. ¼ʱ䣺2025-02-14 17:30:50,715 ߳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
  2500. ¼ʱ䣺2025-02-14 17:30:50,715 ߳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
  2501. ¼ʱ䣺2025-02-14 17:30:50,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2502. ¼ʱ䣺2025-02-14 17:30:50,717 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2503. ¼ʱ䣺2025-02-14 17:30:50,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2504. ¼ʱ䣺2025-02-14 17:30:50,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2505. ¼ʱ䣺2025-02-14 17:30:50,727 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2506. ¼ʱ䣺2025-02-14 17:30:50,731 ߳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
  2507. ¼ʱ䣺2025-02-14 17:30:50,731 ߳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
  2508. ¼ʱ䣺2025-02-14 17:30:50,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2509. ¼ʱ䣺2025-02-14 17:30:50,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2510. ¼ʱ䣺2025-02-14 17:30:50,738 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2511. ¼ʱ䣺2025-02-14 17:30:50,738 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2512. ¼ʱ䣺2025-02-14 17:30:50,763 ߳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
  2513. ¼ʱ䣺2025-02-14 17:30:50,763 ߳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
  2514. ¼ʱ䣺2025-02-14 17:30:50,763 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2515. ¼ʱ䣺2025-02-14 17:30:50,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2516. ¼ʱ䣺2025-02-14 17:30:50,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2517. ¼ʱ䣺2025-02-14 17:30:50,766 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2518. ¼ʱ䣺2025-02-14 17:30:50,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2519. ¼ʱ䣺2025-02-14 17:30:50,768 ߳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
  2520. ¼ʱ䣺2025-02-14 17:30:50,768 ߳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
  2521. ¼ʱ䣺2025-02-14 17:30:50,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2522. ¼ʱ䣺2025-02-14 17:30:50,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2523. ¼ʱ䣺2025-02-14 17:30:50,769 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2524. ¼ʱ䣺2025-02-14 17:30:50,769 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2525. ¼ʱ䣺2025-02-14 17:30:50,778 ߳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
  2526. ¼ʱ䣺2025-02-14 17:30:50,778 ߳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
  2527. ¼ʱ䣺2025-02-14 17:30:50,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2528. ¼ʱ䣺2025-02-14 17:30:50,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2529. ¼ʱ䣺2025-02-14 17:30:50,782 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2530. ¼ʱ䣺2025-02-14 17:30:50,840 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2531. ¼ʱ䣺2025-02-14 17:30:50,843 ߳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
  2532. ¼ʱ䣺2025-02-14 17:30:50,843 ߳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
  2533. ¼ʱ䣺2025-02-14 17:30:50,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2534. ¼ʱ䣺2025-02-14 17:30:50,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2535. ¼ʱ䣺2025-02-14 17:30:50,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2536. ¼ʱ䣺2025-02-14 17:30:50,844 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2537. ¼ʱ䣺2025-02-14 17:30:50,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2538. ¼ʱ䣺2025-02-14 17:30:50,856 ߳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
  2539. ¼ʱ䣺2025-02-14 17:30:50,856 ߳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
  2540. ¼ʱ䣺2025-02-14 17:30:50,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2541. ¼ʱ䣺2025-02-14 17:30:50,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2542. ¼ʱ䣺2025-02-14 17:30:50,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2543. ¼ʱ䣺2025-02-14 17:30:50,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2544. ¼ʱ䣺2025-02-14 17:30:50,895 ߳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
  2545. ¼ʱ䣺2025-02-14 17:30:50,895 ߳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
  2546. ¼ʱ䣺2025-02-14 17:30:50,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2547. ¼ʱ䣺2025-02-14 17:30:50,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2548. ¼ʱ䣺2025-02-14 17:30:50,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2549. ¼ʱ䣺2025-02-14 17:30:50,896 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2550. ¼ʱ䣺2025-02-14 17:30:50,896 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2551. ¼ʱ䣺2025-02-14 17:30:50,899 ߳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
  2552. ¼ʱ䣺2025-02-14 17:30:50,899 ߳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
  2553. ¼ʱ䣺2025-02-14 17:30:50,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2554. ¼ʱ䣺2025-02-14 17:30:50,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2555. ¼ʱ䣺2025-02-14 17:30:50,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2556. ¼ʱ䣺2025-02-14 17:30:50,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2557. ¼ʱ䣺2025-02-14 17:30:50,904 ߳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
  2558. ¼ʱ䣺2025-02-14 17:30:50,904 ߳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
  2559. ¼ʱ䣺2025-02-14 17:30:50,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2560. ¼ʱ䣺2025-02-14 17:30:50,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2561. ¼ʱ䣺2025-02-14 17:30:50,906 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2562. ¼ʱ䣺2025-02-14 17:30:50,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2563. ¼ʱ䣺2025-02-14 17:30:50,975 ߳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
  2564. ¼ʱ䣺2025-02-14 17:30:50,975 ߳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
  2565. ¼ʱ䣺2025-02-14 17:30:50,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2566. ¼ʱ䣺2025-02-14 17:30:50,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2567. ¼ʱ䣺2025-02-14 17:30:50,976 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2568. ¼ʱ䣺2025-02-14 17:30:50,976 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2569. ¼ʱ䣺2025-02-14 17:30:50,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2570. ¼ʱ䣺2025-02-14 17:30:50,988 ߳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
  2571. ¼ʱ䣺2025-02-14 17:30:50,988 ߳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
  2572. ¼ʱ䣺2025-02-14 17:30:50,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2573. ¼ʱ䣺2025-02-14 17:30:50,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2574. ¼ʱ䣺2025-02-14 17:30:50,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2575. ¼ʱ䣺2025-02-14 17:30:50,989 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2576. ¼ʱ䣺2025-02-14 17:31:18,426 ߳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
  2577. ¼ʱ䣺2025-02-14 17:31:18,433 ߳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
  2578. ¼ʱ䣺2025-02-14 17:31:18,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2579. ¼ʱ䣺2025-02-14 17:31:18,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2580. ¼ʱ䣺2025-02-14 17:31:18,453 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2581. ¼ʱ䣺2025-02-14 17:31:18,454 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2582. ¼ʱ䣺2025-02-14 17:31:18,455 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2583. ¼ʱ䣺2025-02-14 17:31:18,456 ߳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
  2584. ¼ʱ䣺2025-02-14 17:31:18,456 ߳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
  2585. ¼ʱ䣺2025-02-14 17:31:18,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2586. ¼ʱ䣺2025-02-14 17:31:18,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2587. ¼ʱ䣺2025-02-14 17:31:18,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2588. ¼ʱ䣺2025-02-14 17:31:18,457 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2589. ¼ʱ䣺2025-02-14 17:31:18,480 ߳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
  2590. ¼ʱ䣺2025-02-14 17:31:18,480 ߳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
  2591. ¼ʱ䣺2025-02-14 17:31:18,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2592. ¼ʱ䣺2025-02-14 17:31:18,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2593. ¼ʱ䣺2025-02-14 17:31:18,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2594. ¼ʱ䣺2025-02-14 17:31:18,525 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2595. ¼ʱ䣺2025-02-14 17:31:18,527 ߳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
  2596. ¼ʱ䣺2025-02-14 17:31:18,527 ߳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
  2597. ¼ʱ䣺2025-02-14 17:31:18,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2598. ¼ʱ䣺2025-02-14 17:31:18,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2599. ¼ʱ䣺2025-02-14 17:31:18,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2600. ¼ʱ䣺2025-02-14 17:31:18,528 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2601. ¼ʱ䣺2025-02-14 17:31:18,536 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2602. ¼ʱ䣺2025-02-14 17:31:18,537 ߳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
  2603. ¼ʱ䣺2025-02-14 17:31:18,537 ߳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
  2604. ¼ʱ䣺2025-02-14 17:31:18,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2605. ¼ʱ䣺2025-02-14 17:31:18,538 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2606. ¼ʱ䣺2025-02-14 17:31:18,539 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2607. ¼ʱ䣺2025-02-14 17:31:18,539 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2608. ¼ʱ䣺2025-02-14 17:31:18,549 ߳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
  2609. ¼ʱ䣺2025-02-14 17:31:18,549 ߳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
  2610. ¼ʱ䣺2025-02-14 17:31:18,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2611. ¼ʱ䣺2025-02-14 17:31:18,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2612. ¼ʱ䣺2025-02-14 17:31:18,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2613. ¼ʱ䣺2025-02-14 17:31:18,550 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2614. ¼ʱ䣺2025-02-14 17:31:18,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2615. ¼ʱ䣺2025-02-14 17:31:18,552 ߳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
  2616. ¼ʱ䣺2025-02-14 17:31:18,552 ߳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
  2617. ¼ʱ䣺2025-02-14 17:31:18,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2618. ¼ʱ䣺2025-02-14 17:31:18,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2619. ¼ʱ䣺2025-02-14 17:31:18,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2620. ¼ʱ䣺2025-02-14 17:31:18,552 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2621. ¼ʱ䣺2025-02-14 17:31:18,554 ߳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
  2622. ¼ʱ䣺2025-02-14 17:31:18,554 ߳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
  2623. ¼ʱ䣺2025-02-14 17:31:18,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2624. ¼ʱ䣺2025-02-14 17:31:18,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2625. ¼ʱ䣺2025-02-14 17:31:18,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2626. ¼ʱ䣺2025-02-14 17:31:18,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2627. ¼ʱ䣺2025-02-14 17:31:18,593 ߳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
  2628. ¼ʱ䣺2025-02-14 17:31:18,593 ߳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
  2629. ¼ʱ䣺2025-02-14 17:31:18,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2630. ¼ʱ䣺2025-02-14 17:31:18,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2631. ¼ʱ䣺2025-02-14 17:31:18,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2632. ¼ʱ䣺2025-02-14 17:31:18,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2633. ¼ʱ䣺2025-02-14 17:31:18,600 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2634. ¼ʱ䣺2025-02-14 17:31:18,600 ߳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
  2635. ¼ʱ䣺2025-02-14 17:31:18,600 ߳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
  2636. ¼ʱ䣺2025-02-14 17:31:18,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2637. ¼ʱ䣺2025-02-14 17:31:18,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2638. ¼ʱ䣺2025-02-14 17:31:18,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2639. ¼ʱ䣺2025-02-14 17:31:18,601 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2640. ¼ʱ䣺2025-02-14 17:31:18,620 ߳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
  2641. ¼ʱ䣺2025-02-14 17:31:18,620 ߳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
  2642. ¼ʱ䣺2025-02-14 17:31:18,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2643. ¼ʱ䣺2025-02-14 17:31:18,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2644. ¼ʱ䣺2025-02-14 17:31:18,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2645. ¼ʱ䣺2025-02-14 17:31:18,621 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2646. ¼ʱ䣺2025-02-14 17:31:18,621 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2647. ¼ʱ䣺2025-02-14 17:31:18,622 ߳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
  2648. ¼ʱ䣺2025-02-14 17:31:18,622 ߳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
  2649. ¼ʱ䣺2025-02-14 17:31:18,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2650. ¼ʱ䣺2025-02-14 17:31:18,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2651. ¼ʱ䣺2025-02-14 17:31:18,622 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2652. ¼ʱ䣺2025-02-14 17:31:18,622 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2653. ¼ʱ䣺2025-02-14 17:31:18,628 ߳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
  2654. ¼ʱ䣺2025-02-14 17:31:18,628 ߳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
  2655. ¼ʱ䣺2025-02-14 17:31:18,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2656. ¼ʱ䣺2025-02-14 17:31:18,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2657. ¼ʱ䣺2025-02-14 17:31:18,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2658. ¼ʱ䣺2025-02-14 17:31:18,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2659. ¼ʱ䣺2025-02-14 17:31:18,666 ߳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
  2660. ¼ʱ䣺2025-02-14 17:31:18,666 ߳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
  2661. ¼ʱ䣺2025-02-14 17:31:18,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2662. ¼ʱ䣺2025-02-14 17:31:18,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2663. ¼ʱ䣺2025-02-14 17:31:18,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2664. ¼ʱ䣺2025-02-14 17:31:18,666 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2665. ¼ʱ䣺2025-02-14 17:31:18,675 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2666. ¼ʱ䣺2025-02-14 17:31:18,675 ߳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
  2667. ¼ʱ䣺2025-02-14 17:31:18,675 ߳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
  2668. ¼ʱ䣺2025-02-14 17:31:18,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2669. ¼ʱ䣺2025-02-14 17:31:18,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2670. ¼ʱ䣺2025-02-14 17:31:18,677 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2671. ¼ʱ䣺2025-02-14 17:31:18,677 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2672. ¼ʱ䣺2025-02-14 17:31:24,163 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2673. ¼ʱ䣺2025-02-14 17:31:24,163 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2674. ¼ʱ䣺2025-02-14 17:31:24,164 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2675. ¼ʱ䣺2025-02-14 17:31:24,299 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2676. ¼ʱ䣺2025-02-14 17:31:24,361 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  2677. ¼ʱ䣺2025-02-14 17:31:24,365 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2678. ¼ʱ䣺2025-02-14 17:31:24,366 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2679. ¼ʱ䣺2025-02-14 17:31:24,366 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2680. ¼ʱ䣺2025-02-14 17:31:24,366 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2681. ¼ʱ䣺2025-02-14 17:31:24,366 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2682. ¼ʱ䣺2025-02-14 17:31:24,452 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2683. ¼ʱ䣺2025-02-14 17:31:24,561 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2684. ¼ʱ䣺2025-02-14 17:31:24,561 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  2685. ¼ʱ䣺2025-02-14 17:31:24,567 ߳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
  2686. ¼ʱ䣺2025-02-14 17:31:24,567 ߳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
  2687. ¼ʱ䣺2025-02-14 17:31:24,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2688. ¼ʱ䣺2025-02-14 17:31:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2689. ¼ʱ䣺2025-02-14 17:31:24,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2690. ¼ʱ䣺2025-02-14 17:31:24,668 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2691. ¼ʱ䣺2025-02-14 17:31:24,669 ߳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
  2692. ¼ʱ䣺2025-02-14 17:31:24,669 ߳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
  2693. ¼ʱ䣺2025-02-14 17:31:24,669 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2694. ¼ʱ䣺2025-02-14 17:31:24,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2695. ¼ʱ䣺2025-02-14 17:31:24,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2696. ¼ʱ䣺2025-02-14 17:31:24,670 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2697. ¼ʱ䣺2025-02-14 17:31:24,681 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2698. ¼ʱ䣺2025-02-14 17:31:24,682 ߳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
  2699. ¼ʱ䣺2025-02-14 17:31:24,682 ߳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
  2700. ¼ʱ䣺2025-02-14 17:31:24,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2701. ¼ʱ䣺2025-02-14 17:31:24,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2702. ¼ʱ䣺2025-02-14 17:31:24,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2703. ¼ʱ䣺2025-02-14 17:31:24,683 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2704. ¼ʱ䣺2025-02-14 17:31:40,119 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2705. ¼ʱ䣺2025-02-14 17:31:42,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2706. ¼ʱ䣺2025-02-14 17:31:42,819 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2707. ¼ʱ䣺2025-02-14 17:31:42,820 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'System.Data.DataSet
  2708. ¼ʱ䣺2025-02-14 17:31:42,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'System.Data.DataSet
  2709. ¼ʱ䣺2025-02-14 17:31:42,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'System.Data.DataSet
  2710. ¼ʱ䣺2025-02-14 17:31:42,880 ߳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
  2711. ¼ʱ䣺2025-02-14 17:31:42,880 ߳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
  2712. ¼ʱ䣺2025-02-14 17:31:42,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2713. ¼ʱ䣺2025-02-14 17:31:42,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2714. ¼ʱ䣺2025-02-14 17:31:42,883 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2715. ¼ʱ䣺2025-02-14 17:31:42,884 ߳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
  2716. ¼ʱ䣺2025-02-14 17:31:42,885 ߳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
  2717. ¼ʱ䣺2025-02-14 17:31:42,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2718. ¼ʱ䣺2025-02-14 17:31:42,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2719. ¼ʱ䣺2025-02-14 17:31:42,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2720. ¼ʱ䣺2025-02-14 17:31:42,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2721. ¼ʱ䣺2025-02-14 17:31:42,890 ߳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
  2722. ¼ʱ䣺2025-02-14 17:31:42,890 ߳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
  2723. ¼ʱ䣺2025-02-14 17:31:42,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2724. ¼ʱ䣺2025-02-14 17:31:42,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2725. ¼ʱ䣺2025-02-14 17:31:42,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2726. ¼ʱ䣺2025-02-14 17:31:42,891 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2727. ¼ʱ䣺2025-02-14 17:31:42,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2728. ¼ʱ䣺2025-02-14 17:31:42,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2729. ¼ʱ䣺2025-02-14 17:31:42,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2730. ¼ʱ䣺2025-02-14 17:31:42,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2731. ¼ʱ䣺2025-02-14 17:31:42,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2732. ¼ʱ䣺2025-02-14 18:30:18,048 ߳ID:[1]- :SyncServiceOperation :Start Ϣ:ӡ־12
  2733. ¼ʱ䣺2025-02-14 18:30:21,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2734. ¼ʱ䣺2025-02-14 18:30:21,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2735. ¼ʱ䣺2025-02-14 18:30:21,029 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'System.Data.DataSet
  2736. ¼ʱ䣺2025-02-14 18:30:21,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'System.Data.DataSet
  2737. ¼ʱ䣺2025-02-14 18:30:21,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(INTIME,datetime)) using utf8) FROM STU where Name='7c9c915a-d32c-4eeb-b72d-191170b71788'System.Data.DataSet
  2738. ¼ʱ䣺2025-02-14 18:30:21,104 ߳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
  2739. ¼ʱ䣺2025-02-14 18:30:21,104 ߳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
  2740. ¼ʱ䣺2025-02-14 18:30:21,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2741. ¼ʱ䣺2025-02-14 18:30:21,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2742. ¼ʱ䣺2025-02-14 18:30:21,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2020-01-01 00:00:00',datetime)System.Data.DataSet
  2743. ¼ʱ䣺2025-02-14 18:30:21,109 ߳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
  2744. ¼ʱ䣺2025-02-14 18:30:21,109 ߳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
  2745. ¼ʱ䣺2025-02-14 18:30:21,109 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2746. ¼ʱ䣺2025-02-14 18:30:21,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2747. ¼ʱ䣺2025-02-14 18:30:21,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2748. ¼ʱ䣺2025-02-14 18:30:21,116 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2749. ¼ʱ䣺2025-02-14 18:30:21,118 ߳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
  2750. ¼ʱ䣺2025-02-14 18:30:21,118 ߳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
  2751. ¼ʱ䣺2025-02-14 18:30:21,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2752. ¼ʱ䣺2025-02-14 18:30:21,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2753. ¼ʱ䣺2025-02-14 18:30:21,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2754. ¼ʱ䣺2025-02-14 18:30:21,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2755. ¼ʱ䣺2025-02-14 18:30:21,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2756. ¼ʱ䣺2025-02-14 18:30:21,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2757. ¼ʱ䣺2025-02-14 18:30:21,124 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2758. ¼ʱ䣺2025-02-14 18:30:21,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2759. ¼ʱ䣺2025-02-14 18:30:21,132 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2760. ¼ʱ䣺2025-02-14 18:30:23,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where Name='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2761. ¼ʱ䣺2025-02-14 18:30:23,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where Name='849421f3-e7a7-40de-a7a6-3504b83a4418'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2762. ¼ʱ䣺2025-02-14 18:30:23,608 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where Name='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2763. ¼ʱ䣺2025-02-14 18:30:23,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where Name='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2764. ¼ʱ䣺2025-02-14 18:30:23,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT Convert(max(Convert(InTime,datetime)) using utf8) FROM STU where Name='849421f3-e7a7-40de-a7a6-3504b83a4418'System.Data.DataSet
  2765. ¼ʱ䣺2025-02-14 18:30:24,673 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2766. ¼ʱ䣺2025-02-14 18:30:24,674 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2767. ¼ʱ䣺2025-02-14 18:30:24,674 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2768. ¼ʱ䣺2025-02-14 18:30:24,830 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2769. ¼ʱ䣺2025-02-14 18:30:24,893 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2020-01-01 00:00:00', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2770. ¼ʱ䣺2025-02-14 18:30:24,900 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2771. ¼ʱ䣺2025-02-14 18:30:24,900 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2772. ¼ʱ䣺2025-02-14 18:30:24,900 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2773. ¼ʱ䣺2025-02-14 18:30:24,977 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2774. ¼ʱ䣺2025-02-14 18:30:25,057 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2775. ¼ʱ䣺2025-02-14 18:30:25,057 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2776. ¼ʱ䣺2025-02-14 18:30:25,058 ߳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
  2777. ¼ʱ䣺2025-02-14 18:30:25,059 ߳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
  2778. ¼ʱ䣺2025-02-14 18:30:25,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2779. ¼ʱ䣺2025-02-14 18:30:25,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2780. ¼ʱ䣺2025-02-14 18:30:25,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2781. ¼ʱ䣺2025-02-14 18:30:25,059 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2782. ¼ʱ䣺2025-02-14 18:30:25,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2783. ¼ʱ䣺2025-02-14 18:30:25,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2784. ¼ʱ䣺2025-02-14 18:30:25,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2785. ¼ʱ䣺2025-02-14 18:30:25,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2786. ¼ʱ䣺2025-02-14 18:30:25,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2787. ¼ʱ䣺2025-02-14 18:33:11,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 18:33:11',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  2788. ¼ʱ䣺2025-02-14 18:33:11,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 18:33:11',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  2789. ¼ʱ䣺2025-02-14 18:33:11,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 18:33:11',datetime)System.Data.DataSet
  2790. ¼ʱ䣺2025-02-14 18:33:11,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 18:33:11',datetime)System.Data.DataSet
  2791. ¼ʱ䣺2025-02-14 18:33:11,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 18:33:11',datetime)System.Data.DataSet
  2792. ¼ʱ䣺2025-02-14 18:33:11,590 ߳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
  2793. ¼ʱ䣺2025-02-14 18:33:11,590 ߳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
  2794. ¼ʱ䣺2025-02-14 18:33:11,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2795. ¼ʱ䣺2025-02-14 18:33:11,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2796. ¼ʱ䣺2025-02-14 18:33:11,592 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2797. ¼ʱ䣺2025-02-14 18:33:20,061 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:19', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2798. ¼ʱ䣺2025-02-14 18:33:20,062 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:19', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2799. ¼ʱ䣺2025-02-14 18:33:20,062 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:19', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2800. ¼ʱ䣺2025-02-14 18:33:20,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:19', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2801. ¼ʱ䣺2025-02-14 18:33:20,274 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:19', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2802. ¼ʱ䣺2025-02-14 18:33:20,282 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2803. ¼ʱ䣺2025-02-14 18:33:20,282 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2804. ¼ʱ䣺2025-02-14 18:33:20,282 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2805. ¼ʱ䣺2025-02-14 18:33:20,365 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2806. ¼ʱ䣺2025-02-14 18:33:20,428 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2807. ¼ʱ䣺2025-02-14 18:33:32,194 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:32', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2808. ¼ʱ䣺2025-02-14 18:33:32,194 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:32', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2809. ¼ʱ䣺2025-02-14 18:33:32,194 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:32', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2810. ¼ʱ䣺2025-02-14 18:33:32,288 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:32', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2811. ¼ʱ䣺2025-02-14 18:33:32,356 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:32', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2812. ¼ʱ䣺2025-02-14 18:33:32,356 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2813. ¼ʱ䣺2025-02-14 18:33:32,356 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2814. ¼ʱ䣺2025-02-14 18:33:32,357 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2815. ¼ʱ䣺2025-02-14 18:33:32,459 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2816. ¼ʱ䣺2025-02-14 18:33:32,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2817. ¼ʱ䣺2025-02-14 18:33:36,079 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2818. ¼ʱ䣺2025-02-14 18:33:36,079 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2819. ¼ʱ䣺2025-02-14 18:33:36,079 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2820. ¼ʱ䣺2025-02-14 18:33:36,155 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2821. ¼ʱ䣺2025-02-14 18:33:36,223 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:33:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2822. ¼ʱ䣺2025-02-14 18:33:36,223 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2823. ¼ʱ䣺2025-02-14 18:33:36,223 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2824. ¼ʱ䣺2025-02-14 18:33:36,223 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2825. ¼ʱ䣺2025-02-14 18:33:36,317 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2826. ¼ʱ䣺2025-02-14 18:33:36,389 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2827. ¼ʱ䣺2025-02-14 18:33:46,100 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2828. ¼ʱ䣺2025-02-14 18:33:46,107 ߳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
  2829. ¼ʱ䣺2025-02-14 18:33:46,107 ߳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
  2830. ¼ʱ䣺2025-02-14 18:33:46,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2831. ¼ʱ䣺2025-02-14 18:33:46,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2832. ¼ʱ䣺2025-02-14 18:33:46,111 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2833. ¼ʱ䣺2025-02-14 18:33:46,111 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2834. ¼ʱ䣺2025-02-14 18:33:46,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2835. ¼ʱ䣺2025-02-14 18:33:46,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2836. ¼ʱ䣺2025-02-14 18:33:46,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2837. ¼ʱ䣺2025-02-14 18:33:46,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2838. ¼ʱ䣺2025-02-14 18:33:46,128 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2839. ¼ʱ䣺2025-02-14 18:34:35,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 18:34:35',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  2840. ¼ʱ䣺2025-02-14 18:34:35,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 18:34:35',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  2841. ¼ʱ䣺2025-02-14 18:34:35,680 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 18:34:35',datetime)System.Data.DataSet
  2842. ¼ʱ䣺2025-02-14 18:34:35,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 18:34:35',datetime)System.Data.DataSet
  2843. ¼ʱ䣺2025-02-14 18:34:35,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 18:34:35',datetime)System.Data.DataSet
  2844. ¼ʱ䣺2025-02-14 18:34:35,704 ߳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
  2845. ¼ʱ䣺2025-02-14 18:34:35,704 ߳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
  2846. ¼ʱ䣺2025-02-14 18:34:35,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2847. ¼ʱ䣺2025-02-14 18:34:35,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2848. ¼ʱ䣺2025-02-14 18:34:35,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  2849. ¼ʱ䣺2025-02-14 18:34:39,681 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:34:38', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2850. ¼ʱ䣺2025-02-14 18:34:39,681 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:34:38', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2851. ¼ʱ䣺2025-02-14 18:34:39,682 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:34:38', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2852. ¼ʱ䣺2025-02-14 18:34:39,828 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:34:38', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2853. ¼ʱ䣺2025-02-14 18:34:39,914 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:34:38', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2854. ¼ʱ䣺2025-02-14 18:34:39,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2855. ¼ʱ䣺2025-02-14 18:34:39,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2856. ¼ʱ䣺2025-02-14 18:34:39,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2857. ¼ʱ䣺2025-02-14 18:34:40,000 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2858. ¼ʱ䣺2025-02-14 18:34:40,067 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2859. ¼ʱ䣺2025-02-14 18:35:06,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2860. ¼ʱ䣺2025-02-14 18:35:06,875 ߳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
  2861. ¼ʱ䣺2025-02-14 18:35:06,875 ߳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
  2862. ¼ʱ䣺2025-02-14 18:35:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2863. ¼ʱ䣺2025-02-14 18:35:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2864. ¼ʱ䣺2025-02-14 18:35:06,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2865. ¼ʱ䣺2025-02-14 18:35:06,875 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2866. ¼ʱ䣺2025-02-14 18:35:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2867. ¼ʱ䣺2025-02-14 18:35:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2868. ¼ʱ䣺2025-02-14 18:35:06,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2869. ¼ʱ䣺2025-02-14 18:35:06,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2870. ¼ʱ䣺2025-02-14 18:35:06,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2871. ¼ʱ䣺2025-02-14 18:37:37,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2872. ¼ʱ䣺2025-02-14 18:37:37,063 ߳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
  2873. ¼ʱ䣺2025-02-14 18:37:37,064 ߳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
  2874. ¼ʱ䣺2025-02-14 18:37:37,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2875. ¼ʱ䣺2025-02-14 18:37:37,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2876. ¼ʱ䣺2025-02-14 18:37:37,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2877. ¼ʱ䣺2025-02-14 18:37:37,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2878. ¼ʱ䣺2025-02-14 18:37:37,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2879. ¼ʱ䣺2025-02-14 18:37:37,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2880. ¼ʱ䣺2025-02-14 18:37:37,067 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2881. ¼ʱ䣺2025-02-14 18:37:37,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2882. ¼ʱ䣺2025-02-14 18:37:37,073 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2883. ¼ʱ䣺2025-02-14 18:38:08,737 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2884. ¼ʱ䣺2025-02-14 18:38:08,739 ߳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
  2885. ¼ʱ䣺2025-02-14 18:38:08,739 ߳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
  2886. ¼ʱ䣺2025-02-14 18:38:08,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2887. ¼ʱ䣺2025-02-14 18:38:08,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2888. ¼ʱ䣺2025-02-14 18:38:08,739 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2889. ¼ʱ䣺2025-02-14 18:38:08,739 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2890. ¼ʱ䣺2025-02-14 18:38:08,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2891. ¼ʱ䣺2025-02-14 18:38:08,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2892. ¼ʱ䣺2025-02-14 18:38:08,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2893. ¼ʱ䣺2025-02-14 18:38:08,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2894. ¼ʱ䣺2025-02-14 18:38:08,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2895. ¼ʱ䣺2025-02-14 18:42:17,772 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2896. ¼ʱ䣺2025-02-14 18:42:17,775 ߳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
  2897. ¼ʱ䣺2025-02-14 18:42:17,775 ߳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
  2898. ¼ʱ䣺2025-02-14 18:42:17,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2899. ¼ʱ䣺2025-02-14 18:42:17,775 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2900. ¼ʱ䣺2025-02-14 18:42:17,776 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2901. ¼ʱ䣺2025-02-14 18:42:17,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2902. ¼ʱ䣺2025-02-14 18:42:17,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2903. ¼ʱ䣺2025-02-14 18:42:17,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2904. ¼ʱ䣺2025-02-14 18:42:17,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2905. ¼ʱ䣺2025-02-14 18:42:17,784 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2906. ¼ʱ䣺2025-02-14 18:42:17,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2907. ¼ʱ䣺2025-02-14 18:46:58,662 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2908. ¼ʱ䣺2025-02-14 18:46:58,665 ߳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
  2909. ¼ʱ䣺2025-02-14 18:46:58,665 ߳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
  2910. ¼ʱ䣺2025-02-14 18:46:58,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2911. ¼ʱ䣺2025-02-14 18:46:58,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.stu' doesn't exist
  2912. ¼ʱ䣺2025-02-14 18:46:58,698 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.stu' doesn't exist
  2913. ¼ʱ䣺2025-02-14 18:46:58,704 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.stu' doesn't exist
  2914. ¼ʱ䣺2025-02-14 18:52:35,693 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:35', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2915. ¼ʱ䣺2025-02-14 18:52:35,693 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:35', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2916. ¼ʱ䣺2025-02-14 18:52:35,693 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:35', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2917. ¼ʱ䣺2025-02-14 18:52:35,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:35', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2918. ¼ʱ䣺2025-02-14 18:52:35,849 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:35', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2919. ¼ʱ䣺2025-02-14 18:52:35,849 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2920. ¼ʱ䣺2025-02-14 18:52:35,849 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2921. ¼ʱ䣺2025-02-14 18:52:35,849 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2922. ¼ʱ䣺2025-02-14 18:52:35,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2923. ¼ʱ䣺2025-02-14 18:52:35,998 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2924. ¼ʱ䣺2025-02-14 18:52:36,006 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2925. ¼ʱ䣺2025-02-14 18:52:36,007 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2926. ¼ʱ䣺2025-02-14 18:52:36,007 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2927. ¼ʱ䣺2025-02-14 18:52:36,093 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2928. ¼ʱ䣺2025-02-14 18:52:36,146 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2929. ¼ʱ䣺2025-02-14 18:52:36,147 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2930. ¼ʱ䣺2025-02-14 18:52:36,147 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2931. ¼ʱ䣺2025-02-14 18:52:36,147 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2932. ¼ʱ䣺2025-02-14 18:52:36,209 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2933. ¼ʱ䣺2025-02-14 18:52:36,258 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2934. ¼ʱ䣺2025-02-14 18:52:36,270 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2935. ¼ʱ䣺2025-02-14 18:52:36,270 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2936. ¼ʱ䣺2025-02-14 18:52:36,270 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2937. ¼ʱ䣺2025-02-14 18:52:36,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2938. ¼ʱ䣺2025-02-14 18:52:36,409 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2939. ¼ʱ䣺2025-02-14 18:52:36,409 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2940. ¼ʱ䣺2025-02-14 18:52:36,410 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2941. ¼ʱ䣺2025-02-14 18:52:36,410 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2942. ¼ʱ䣺2025-02-14 18:52:36,483 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2943. ¼ʱ䣺2025-02-14 18:52:36,574 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2944. ¼ʱ䣺2025-02-14 18:52:36,587 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2945. ¼ʱ䣺2025-02-14 18:52:36,587 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2946. ¼ʱ䣺2025-02-14 18:52:36,587 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2947. ¼ʱ䣺2025-02-14 18:52:36,643 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2948. ¼ʱ䣺2025-02-14 18:52:36,692 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:52:36', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  2949. ¼ʱ䣺2025-02-14 18:52:36,692 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2950. ¼ʱ䣺2025-02-14 18:52:36,692 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  2951. ¼ʱ䣺2025-02-14 18:52:36,692 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2952. ¼ʱ䣺2025-02-14 18:52:36,790 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2953. ¼ʱ䣺2025-02-14 18:52:36,842 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  2954. ¼ʱ䣺2025-02-14 18:52:45,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  2955. ¼ʱ䣺2025-02-14 18:52:45,234 ߳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
  2956. ¼ʱ䣺2025-02-14 18:52:45,234 ߳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
  2957. ¼ʱ䣺2025-02-14 18:52:45,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2958. ¼ʱ䣺2025-02-14 18:52:45,237 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2959. ¼ʱ䣺2025-02-14 18:52:45,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  2960. ¼ʱ䣺2025-02-14 18:52:45,238 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  2961. ¼ʱ䣺2025-02-14 18:52:45,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2962. ¼ʱ䣺2025-02-14 18:52:45,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  2963. ¼ʱ䣺2025-02-14 18:52:45,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2964. ¼ʱ䣺2025-02-14 18:52:45,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2965. ¼ʱ䣺2025-02-14 18:52:45,246 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  2966. ¼ʱ䣺2025-02-14 18:54:12,818 ߳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
  2967. ¼ʱ䣺2025-02-14 18:54:12,827 ߳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
  2968. ¼ʱ䣺2025-02-14 18:54:12,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2969. ¼ʱ䣺2025-02-14 18:54:12,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2970. ¼ʱ䣺2025-02-14 18:54:12,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  2971. ¼ʱ䣺2025-02-14 18:54:12,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  2972. ¼ʱ䣺2025-02-14 18:54:12,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2973. ¼ʱ䣺2025-02-14 18:54:12,857 ߳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
  2974. ¼ʱ䣺2025-02-14 18:54:12,857 ߳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
  2975. ¼ʱ䣺2025-02-14 18:54:12,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2976. ¼ʱ䣺2025-02-14 18:54:12,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2977. ¼ʱ䣺2025-02-14 18:54:12,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2978. ¼ʱ䣺2025-02-14 18:54:12,858 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2979. ¼ʱ䣺2025-02-14 18:54:12,888 ߳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
  2980. ¼ʱ䣺2025-02-14 18:54:12,888 ߳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
  2981. ¼ʱ䣺2025-02-14 18:54:12,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2982. ¼ʱ䣺2025-02-14 18:54:12,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2983. ¼ʱ䣺2025-02-14 18:54:12,891 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  2984. ¼ʱ䣺2025-02-14 18:54:12,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  2985. ¼ʱ䣺2025-02-14 18:54:12,939 ߳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
  2986. ¼ʱ䣺2025-02-14 18:54:12,939 ߳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
  2987. ¼ʱ䣺2025-02-14 18:54:12,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2988. ¼ʱ䣺2025-02-14 18:54:12,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2989. ¼ʱ䣺2025-02-14 18:54:12,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  2990. ¼ʱ䣺2025-02-14 18:54:12,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  2991. ¼ʱ䣺2025-02-14 18:54:12,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  2992. ¼ʱ䣺2025-02-14 18:54:12,946 ߳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
  2993. ¼ʱ䣺2025-02-14 18:54:12,946 ߳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
  2994. ¼ʱ䣺2025-02-14 18:54:12,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2995. ¼ʱ䣺2025-02-14 18:54:12,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2996. ¼ʱ䣺2025-02-14 18:54:12,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  2997. ¼ʱ䣺2025-02-14 18:54:12,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  2998. ¼ʱ䣺2025-02-14 18:54:12,960 ߳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
  2999. ¼ʱ䣺2025-02-14 18:54:12,961 ߳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
  3000. ¼ʱ䣺2025-02-14 18:54:12,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3001. ¼ʱ䣺2025-02-14 18:54:12,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3002. ¼ʱ䣺2025-02-14 18:54:12,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3003. ¼ʱ䣺2025-02-14 18:54:12,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  3004. ¼ʱ䣺2025-02-14 18:54:12,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3005. ¼ʱ䣺2025-02-14 18:54:12,963 ߳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
  3006. ¼ʱ䣺2025-02-14 18:54:12,963 ߳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
  3007. ¼ʱ䣺2025-02-14 18:54:12,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3008. ¼ʱ䣺2025-02-14 18:54:12,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3009. ¼ʱ䣺2025-02-14 18:54:12,963 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3010. ¼ʱ䣺2025-02-14 18:54:12,963 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3011. ¼ʱ䣺2025-02-14 18:54:12,966 ߳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
  3012. ¼ʱ䣺2025-02-14 18:54:12,966 ߳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
  3013. ¼ʱ䣺2025-02-14 18:54:12,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3014. ¼ʱ䣺2025-02-14 18:54:12,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3015. ¼ʱ䣺2025-02-14 18:54:12,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3016. ¼ʱ䣺2025-02-14 18:54:13,004 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  3017. ¼ʱ䣺2025-02-14 18:54:13,006 ߳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
  3018. ¼ʱ䣺2025-02-14 18:54:13,006 ߳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
  3019. ¼ʱ䣺2025-02-14 18:54:13,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3020. ¼ʱ䣺2025-02-14 18:54:13,007 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3021. ¼ʱ䣺2025-02-14 18:54:13,007 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3022. ¼ʱ䣺2025-02-14 18:54:13,007 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  3023. ¼ʱ䣺2025-02-14 18:54:13,019 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3024. ¼ʱ䣺2025-02-14 18:54:13,020 ߳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
  3025. ¼ʱ䣺2025-02-14 18:54:13,020 ߳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
  3026. ¼ʱ䣺2025-02-14 18:54:13,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3027. ¼ʱ䣺2025-02-14 18:54:13,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3028. ¼ʱ䣺2025-02-14 18:54:13,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3029. ¼ʱ䣺2025-02-14 18:54:13,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3030. ¼ʱ䣺2025-02-14 18:54:13,041 ߳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
  3031. ¼ʱ䣺2025-02-14 18:54:13,042 ߳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
  3032. ¼ʱ䣺2025-02-14 18:54:13,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3033. ¼ʱ䣺2025-02-14 18:54:13,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3034. ¼ʱ䣺2025-02-14 18:54:13,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3035. ¼ʱ䣺2025-02-14 18:54:13,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  3036. ¼ʱ䣺2025-02-14 18:54:13,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3037. ¼ʱ䣺2025-02-14 18:54:13,044 ߳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
  3038. ¼ʱ䣺2025-02-14 18:54:13,044 ߳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
  3039. ¼ʱ䣺2025-02-14 18:54:13,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3040. ¼ʱ䣺2025-02-14 18:54:13,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3041. ¼ʱ䣺2025-02-14 18:54:13,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3042. ¼ʱ䣺2025-02-14 18:54:13,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3043. ¼ʱ䣺2025-02-14 18:54:13,051 ߳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
  3044. ¼ʱ䣺2025-02-14 18:54:13,051 ߳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
  3045. ¼ʱ䣺2025-02-14 18:54:13,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3046. ¼ʱ䣺2025-02-14 18:54:13,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3047. ¼ʱ䣺2025-02-14 18:54:13,053 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3048. ¼ʱ䣺2025-02-14 18:54:13,137 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  3049. ¼ʱ䣺2025-02-14 18:54:13,139 ߳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
  3050. ¼ʱ䣺2025-02-14 18:54:13,139 ߳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
  3051. ¼ʱ䣺2025-02-14 18:54:13,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3052. ¼ʱ䣺2025-02-14 18:54:13,139 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3053. ¼ʱ䣺2025-02-14 18:54:13,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3054. ¼ʱ䣺2025-02-14 18:54:13,140 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  3055. ¼ʱ䣺2025-02-14 18:54:13,191 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3056. ¼ʱ䣺2025-02-14 18:54:13,192 ߳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
  3057. ¼ʱ䣺2025-02-14 18:54:13,193 ߳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
  3058. ¼ʱ䣺2025-02-14 18:54:13,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3059. ¼ʱ䣺2025-02-14 18:54:13,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3060. ¼ʱ䣺2025-02-14 18:54:13,193 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3061. ¼ʱ䣺2025-02-14 18:54:13,193 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3062. ¼ʱ䣺2025-02-14 18:55:51,682 ߳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
  3063. ¼ʱ䣺2025-02-14 18:55:51,682 ߳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
  3064. ¼ʱ䣺2025-02-14 18:55:51,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3065. ¼ʱ䣺2025-02-14 18:55:51,683 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3066. ¼ʱ䣺2025-02-14 18:55:51,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3067. ¼ʱ䣺2025-02-14 18:55:51,684 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  3068. ¼ʱ䣺2025-02-14 18:55:51,684 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3069. ¼ʱ䣺2025-02-14 18:55:51,686 ߳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
  3070. ¼ʱ䣺2025-02-14 18:55:51,686 ߳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
  3071. ¼ʱ䣺2025-02-14 18:55:51,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3072. ¼ʱ䣺2025-02-14 18:55:51,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3073. ¼ʱ䣺2025-02-14 18:55:51,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3074. ¼ʱ䣺2025-02-14 18:55:51,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3075. ¼ʱ䣺2025-02-14 18:55:51,694 ߳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
  3076. ¼ʱ䣺2025-02-14 18:55:51,694 ߳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
  3077. ¼ʱ䣺2025-02-14 18:55:51,694 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3078. ¼ʱ䣺2025-02-14 18:55:51,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3079. ¼ʱ䣺2025-02-14 18:55:51,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3080. ¼ʱ䣺2025-02-14 18:55:51,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  3081. ¼ʱ䣺2025-02-14 18:55:51,752 ߳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
  3082. ¼ʱ䣺2025-02-14 18:55:51,752 ߳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
  3083. ¼ʱ䣺2025-02-14 18:55:51,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3084. ¼ʱ䣺2025-02-14 18:55:51,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3085. ¼ʱ䣺2025-02-14 18:55:51,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3086. ¼ʱ䣺2025-02-14 18:55:51,752 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  3087. ¼ʱ䣺2025-02-14 18:55:55,452 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3088. ¼ʱ䣺2025-02-14 18:55:55,453 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3089. ¼ʱ䣺2025-02-14 18:55:55,453 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  3090. ¼ʱ䣺2025-02-14 18:55:55,600 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  3091. ¼ʱ䣺2025-02-14 18:55:55,671 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  3092. ¼ʱ䣺2025-02-14 18:55:55,675 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  3093. ¼ʱ䣺2025-02-14 18:55:55,675 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3094. ¼ʱ䣺2025-02-14 18:55:55,675 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3095. ¼ʱ䣺2025-02-14 18:55:55,676 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3096. ¼ʱ䣺2025-02-14 18:55:55,676 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3097. ¼ʱ䣺2025-02-14 18:55:55,735 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3098. ¼ʱ䣺2025-02-14 18:55:55,786 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3099. ¼ʱ䣺2025-02-14 18:55:55,786 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  3100. ¼ʱ䣺2025-02-14 18:55:55,790 ߳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
  3101. ¼ʱ䣺2025-02-14 18:55:55,790 ߳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
  3102. ¼ʱ䣺2025-02-14 18:55:55,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3103. ¼ʱ䣺2025-02-14 18:55:55,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3104. ¼ʱ䣺2025-02-14 18:55:55,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3105. ¼ʱ䣺2025-02-14 18:55:55,848 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  3106. ¼ʱ䣺2025-02-14 18:55:55,849 ߳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
  3107. ¼ʱ䣺2025-02-14 18:55:55,849 ߳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
  3108. ¼ʱ䣺2025-02-14 18:55:55,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3109. ¼ʱ䣺2025-02-14 18:55:55,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3110. ¼ʱ䣺2025-02-14 18:55:55,850 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3111. ¼ʱ䣺2025-02-14 18:55:55,850 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  3112. ¼ʱ䣺2025-02-14 18:55:55,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3113. ¼ʱ䣺2025-02-14 18:55:55,877 ߳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
  3114. ¼ʱ䣺2025-02-14 18:55:55,877 ߳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
  3115. ¼ʱ䣺2025-02-14 18:55:55,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3116. ¼ʱ䣺2025-02-14 18:55:55,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3117. ¼ʱ䣺2025-02-14 18:55:55,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3118. ¼ʱ䣺2025-02-14 18:55:55,879 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3119. ¼ʱ䣺2025-02-14 18:56:03,741 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3120. ¼ʱ䣺2025-02-14 18:56:03,741 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3121. ¼ʱ䣺2025-02-14 18:56:03,741 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  3122. ¼ʱ䣺2025-02-14 18:56:03,817 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  3123. ¼ʱ䣺2025-02-14 18:56:03,862 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet
  3124. ¼ʱ䣺2025-02-14 18:56:03,862 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  3125. ¼ʱ䣺2025-02-14 18:56:03,862 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3126. ¼ʱ䣺2025-02-14 18:56:03,862 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3127. ¼ʱ䣺2025-02-14 18:56:03,862 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3128. ¼ʱ䣺2025-02-14 18:56:03,863 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3129. ¼ʱ䣺2025-02-14 18:56:03,929 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3130. ¼ʱ䣺2025-02-14 18:56:03,978 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3131. ¼ʱ䣺2025-02-14 18:56:03,978 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table
  3132. ¼ʱ䣺2025-02-14 18:56:03,983 ߳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
  3133. ¼ʱ䣺2025-02-14 18:56:03,983 ߳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
  3134. ¼ʱ䣺2025-02-14 18:56:03,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3135. ¼ʱ䣺2025-02-14 18:56:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3136. ¼ʱ䣺2025-02-14 18:56:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3137. ¼ʱ䣺2025-02-14 18:56:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  3138. ¼ʱ䣺2025-02-14 18:56:04,038 ߳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
  3139. ¼ʱ䣺2025-02-14 18:56:04,038 ߳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
  3140. ¼ʱ䣺2025-02-14 18:56:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3141. ¼ʱ䣺2025-02-14 18:56:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3142. ¼ʱ䣺2025-02-14 18:56:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3143. ¼ʱ䣺2025-02-14 18:56:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  3144. ¼ʱ䣺2025-02-14 18:56:04,062 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3145. ¼ʱ䣺2025-02-14 18:56:04,064 ߳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
  3146. ¼ʱ䣺2025-02-14 18:56:04,064 ߳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
  3147. ¼ʱ䣺2025-02-14 18:56:04,064 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3148. ¼ʱ䣺2025-02-14 18:56:04,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3149. ¼ʱ䣺2025-02-14 18:56:04,065 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3150. ¼ʱ䣺2025-02-14 18:56:04,065 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3151. ¼ʱ䣺2025-02-14 18:56:11,550 ߳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
  3152. ¼ʱ䣺2025-02-14 18:56:11,550 ߳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
  3153. ¼ʱ䣺2025-02-14 18:56:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3154. ¼ʱ䣺2025-02-14 18:56:11,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3155. ¼ʱ䣺2025-02-14 18:56:11,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
  3156. ¼ʱ䣺2025-02-14 18:56:11,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
  3157. ¼ʱ䣺2025-02-14 18:56:11,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3158. ¼ʱ䣺2025-02-14 18:56:11,552 ߳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
  3159. ¼ʱ䣺2025-02-14 18:56:11,552 ߳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
  3160. ¼ʱ䣺2025-02-14 18:56:11,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3161. ¼ʱ䣺2025-02-14 18:56:11,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3162. ¼ʱ䣺2025-02-14 18:56:11,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3163. ¼ʱ䣺2025-02-14 18:56:11,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3164. ¼ʱ䣺2025-02-14 18:56:11,556 ߳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
  3165. ¼ʱ䣺2025-02-14 18:56:11,556 ߳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
  3166. ¼ʱ䣺2025-02-14 18:56:11,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3167. ¼ʱ䣺2025-02-14 18:56:11,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3168. ¼ʱ䣺2025-02-14 18:56:11,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
  3169. ¼ʱ䣺2025-02-14 18:56:11,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
  3170. ¼ʱ䣺2025-02-14 18:56:11,606 ߳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
  3171. ¼ʱ䣺2025-02-14 18:56:11,606 ߳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
  3172. ¼ʱ䣺2025-02-14 18:56:11,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3173. ¼ʱ䣺2025-02-14 18:56:11,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3174. ¼ʱ䣺2025-02-14 18:56:11,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
  3175. ¼ʱ䣺2025-02-14 18:56:11,607 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
  3176. ¼ʱ䣺2025-02-14 18:56:11,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
  3177. ¼ʱ䣺2025-02-14 18:56:11,634 ߳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
  3178. ¼ʱ䣺2025-02-14 18:56:11,634 ߳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
  3179. ¼ʱ䣺2025-02-14 18:56:11,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3180. ¼ʱ䣺2025-02-14 18:56:11,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3181. ¼ʱ䣺2025-02-14 18:56:11,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
  3182. ¼ʱ䣺2025-02-14 18:56:11,635 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
  3183. ¼ʱ䣺2025-02-14 18:56:47,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 18:56:47',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  3184. ¼ʱ䣺2025-02-14 18:56:47,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 18:56:47',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True
  3185. ¼ʱ䣺2025-02-14 18:56:47,643 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 18:56:47',datetime)System.Data.DataSet
  3186. ¼ʱ䣺2025-02-14 18:56:47,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 18:56:47',datetime)System.Data.DataSet
  3187. ¼ʱ䣺2025-02-14 18:56:47,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 18:56:47',datetime)System.Data.DataSet
  3188. ¼ʱ䣺2025-02-14 18:56:47,670 ߳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
  3189. ¼ʱ䣺2025-02-14 18:56:47,670 ߳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
  3190. ¼ʱ䣺2025-02-14 18:56:47,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  3191. ¼ʱ䣺2025-02-14 18:56:47,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  3192. ¼ʱ䣺2025-02-14 18:56:47,672 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet
  3193. ¼ʱ䣺2025-02-14 18:56:54,564 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:56:53', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3194. ¼ʱ䣺2025-02-14 18:56:54,564 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:56:53', 'YYYY-MM-DD HH24:MI:SS');Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3195. ¼ʱ䣺2025-02-14 18:56:54,565 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:56:53', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  3196. ¼ʱ䣺2025-02-14 18:56:54,700 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:56:53', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  3197. ¼ʱ䣺2025-02-14 18:56:54,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from cnas.public.STU where "InTime">TO_TIMESTAMP('2025-02-04 18:56:53', 'YYYY-MM-DD HH24:MI:SS');System.Data.DataSet
  3198. ¼ʱ䣺2025-02-14 18:56:54,761 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3199. ¼ʱ䣺2025-02-14 18:56:54,762 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer;
  3200. ¼ʱ䣺2025-02-14 18:56:54,762 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  3201. ¼ʱ䣺2025-02-14 18:56:54,833 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  3202. ¼ʱ䣺2025-02-14 18:56:54,885 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='cnas'System.Data.DataSet
  3203. ¼ʱ䣺2025-02-14 18:57:18,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  3204. ¼ʱ䣺2025-02-14 18:57:18,467 ߳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
  3205. ¼ʱ䣺2025-02-14 18:57:18,467 ߳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
  3206. ¼ʱ䣺2025-02-14 18:57:18,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  3207. ¼ʱ䣺2025-02-14 18:57:18,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  3208. ¼ʱ䣺2025-02-14 18:57:18,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  3209. ¼ʱ䣺2025-02-14 18:57:18,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  3210. ¼ʱ䣺2025-02-14 18:57:18,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  3211. ¼ʱ䣺2025-02-14 18:57:18,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  3212. ¼ʱ䣺2025-02-14 18:57:18,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  3213. ¼ʱ䣺2025-02-14 18:57:18,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  3214. ¼ʱ䣺2025-02-14 18:57:18,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  3215. ¼ʱ䣺2025-02-14 18:57:50,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===STUSELECT * FROM STU Where 0=1
  3216. ¼ʱ䣺2025-02-14 18:57:50,623 ߳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
  3217. ¼ʱ䣺2025-02-14 18:57:50,623 ߳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
  3218. ¼ʱ䣺2025-02-14 18:57:50,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM STU Where 0=1System.Data.DataSet
  3219. ¼ʱ䣺2025-02-14 18:57:50,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM STU Where 0=1System.Data.DataSet
  3220. ¼ʱ䣺2025-02-14 18:57:50,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM STU Where 0=1System.Data.DataSet
  3221. ¼ʱ䣺2025-02-14 18:57:50,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===STUMySQLHelper.ExecuteDataSet(strSql)Table
  3222. ¼ʱ䣺2025-02-14 18:57:50,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  3223. ¼ʱ䣺2025-02-14 18:57:50,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True
  3224. ¼ʱ䣺2025-02-14 18:57:50,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  3225. ¼ʱ䣺2025-02-14 18:57:50,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet
  3226. ¼ʱ䣺2025-02-14 18:57:50,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet