ChangeLog 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453
  1. 2007-05-30 Nagappan A <[email protected]>
  2. * System.Data.dll.sources: Added SqlBulkCopy.cs,
  3. SqlBulkCopyColumnMappingCollection.cs.
  4. 2007-05-29 Gert Driesen <[email protected]>
  5. * System.Data_test.dll.sources: Added SqlCommandTest.cs.
  6. 2007-03-09 Nagappan A <[email protected]>
  7. * System.Data.dll.sources: Removed
  8. System.Data.SqlTypes/SqlStreamChars.cs as its not part of 1.0 and
  9. 2.0 profile.
  10. 2007-03-03 Gert Driesen <[email protected]>
  11. * app_test_2.0.config: Modified DbProviderFactories to allow testing
  12. of clear and remove nodes.
  13. 2007-03-03 Gert Driesen <[email protected]>
  14. * app_test_2.0.config: Fixed assembly qualified names of config
  15. handler. Removed usage of ConnectionStringsSectionHandler, since
  16. this is now handled by 2.0 config system. Spaces to tabs.
  17. * System.Data.dll.sources: Removed ConnectionStringsSectionHandler.
  18. 2007-02-23 Nagappan A <[email protected]>
  19. * System.Data_test.dll.sources: Added
  20. System.Data/XmlDataLoaderTest.cs, System.Data/XmlDataReaderTest.cs
  21. tests for bug # 80596.
  22. Added System.Data/TrailingSpaceTest.cs test for bug # 79695.
  23. 2007-02-21 Nagappan A <[email protected]>
  24. * System.Data_test.dll.sources: Added
  25. System.Data.OleDb/OleDbParameterCollectionTest.cs
  26. 2007-02-09 Nagappan A <[email protected]>
  27. * System.Data_test.dll.sources: Added
  28. System.Data.SqlTypes/SqlBytesTest.cs,
  29. System.Data.SqlTypes/SqlCharsTest.cs.
  30. * System.Data.dll.sources: Removed
  31. System.Data.SqlTypes/SqlDate.cs, System.Data.SqlTypes/SqlTime.cs,
  32. System.Data.SqlTypes/SqlUtcDateTime.cs,
  33. System.Data.SqlTypes/SqlXmlReader.cs as they are not part of 2.0
  34. profile.
  35. 2006-12-07 Nagappan A <[email protected]>
  36. * System.Data_test.dll.sources: Added
  37. Mono.Data.SqlExpressions/DataColumnExpressionTest.cs,
  38. System.Data/DataTableTest3.cs, System.Data/DataTableTest4.cs
  39. 2006-11-28 Miguel de Icaza <[email protected]>
  40. * Rationalize use of MonoTODO as well.
  41. 2006-11-05 Vladimir Krasnov <[email protected]>
  42. * System.Data20.vmwcsproj: added OleDbFactory.cs
  43. 2006-10-24 Hagit Yidov <[email protected]>
  44. * System.Data.dll.sources:
  45. - Added to build :
  46. Test/System.Data/DataTableReadXmlSchemaTest.cs
  47. 2006-10-22 Zoltan Varga <[email protected]>
  48. * Makefile (TEST_MONO_PATH): Add '.' to TEST_MONO_PATH.
  49. 2006-09-26 Boris Kirzner <[email protected]>
  50. * run-tests.test.disconnected.bat,run-tests.test.connected.bat:
  51. log files naming fix.
  52. 2006-09-17 Boris Kirzner <[email protected]>
  53. * run-tests.test.disconnected.bat : added usage of app config.
  54. 2006-09-12 Boris Kirzner <[email protected]>
  55. * run-tests.test.connected.bat, run-tests.test.disconnected.bat:
  56. small fixes for TARGET_JVM test scrips.
  57. 2006-09-12 Boris Kirzner <[email protected]>
  58. * run-tests.test.connected.bat, run-tests.test.disconnected.bat:
  59. reworked logging options for TARGET_JVM tests.
  60. 2006-07-17 Senganal T <[email protected]>
  61. * System.Data.dll.sources:
  62. - Added to build :
  63. Test/System.Data/DataViewTest_IBindingListView.cs
  64. 2006-07-13 Senganal T <[email protected]>
  65. * System.Data.dll.sources:
  66. - Added to build :
  67. System.Data.Common/DbMetaDataColumnNames.cs
  68. - Removed from build :
  69. System.Data.Common/DbCommandOptionalFeatures.cs
  70. System.Data.Common/DbCommandSet.cs
  71. System.Data.Common/DbProviderSupportedClasses.cs
  72. System.Data.Common/SchemaLocation.cs
  73. System.Data.Odbc/OdbcConnectionFactory.cs
  74. System.Data.SqlClient/SqlConnectionFactory.cs
  75. System.Data.ProviderBase/DbCommandBase.cs
  76. System.Data.ProviderBase/DbConnectionBase.cs
  77. System.Data.ProviderBase/DbConnectionFactory.cs
  78. System.Data.ProviderBase/DbConnectionInternal.cs
  79. System.Data.ProviderBase/DbConnectionPoolCounters.cs
  80. System.Data.ProviderBase/DbConnectionPoolOptions.cs
  81. System.Data.ProviderBase/DbDataReaderBase.cs
  82. System.Data.ProviderBase/DbMetaDataFactory.cs
  83. System.Data.ProviderBase/DbParameterBase.cs
  84. System.Data.ProviderBase/DbParameterCollectionBase.cs
  85. System.Data.ProviderBase/DbReferenceCollection.cs
  86. * Makefile : Add System.Transactions library reference to net_2_0 PROFILE
  87. 2006-06-30 Senganal T <[email protected]>
  88. * System.Data.dll.sources:
  89. - Add to build : System.Data/SerializationFormat.cs,
  90. System.Data/DataSetDateTime.cs, System.Data/DataTableNewRowEventArgs.cs
  91. System.Data/DataTableNewRowEventHandler.cs
  92. - Remove from build : System.Data/ConflictOptions.cs,
  93. System.Data/DbMetaData.cs, System.Data/FillOptions.cs,
  94. System.Data/ResultSetSensitivity.cs,
  95. System.Data/ResultSetOptions.cs,System.Data/UpdateOptions.cs
  96. 2006-05-16 Vladimir Krasnov <[email protected]>
  97. * run-tests.test.connected.bat: skip nunit build if already done
  98. * run-tests.test.disconnected.bat: skip nunit build if already done
  99. 2006-05-07 Boris Kirzner <[email protected]>
  100. * System.Data.vmwcsproj: added XmlHelper.cs to TARGET_JVM project.
  101. 2006-03-16 Boris Kirzner <[email protected]>
  102. * run-tests.test.connected.bat - fix in TARGET_JVM test script.
  103. 2006-03-16 Boris Kirzner <[email protected]>
  104. * run-tests.test.connected.bat - fix classpath in TARGET_JVM test script.
  105. 2006-03-12 Boris Kirzner <[email protected]>
  106. * run-tests.bat, run-tests.test.connected.bat, run-tests.test.disconnected.bat
  107. added batch files for automated testing for TARGET_JVM.
  108. 2006-02-19 Konstantin Triger <[email protected]>
  109. * TARGET_JVM: added JDBC provider generic adapter mechanism.
  110. 2006-02-17 Chris Toshok <[email protected]>
  111. * System.Data.dll.sources: remove
  112. System.Data/DataAdapterException.cs, and add
  113. System.Data.Common/SupportedJoinOperators.cs.
  114. * System.Data.dll.sources: remove
  115. System.Data/AdapterMappingException.cs.
  116. * System.Data.dll.sources: remove IDbAsyncConnection.cs,
  117. IDbAsyncCommand.cs, IGetTypedData.cs, ISetTypedData.cs,
  118. IDataReader2.cs, IDataSources.cs, IDbExecutionContext.cs,
  119. IDataRecord2.cs, IDataUpdatableRecord.cs, and
  120. DbDataUpdatableRecord.cs from the build.
  121. 2006-01-02 Boris Kirzner <[email protected]>
  122. * System.Data_test.dll.sources: added new tests.
  123. 2006-01-01 Daniel Morgan <[email protected]>
  124. * System.Data.Common/DbDataAdapter.cs: fix
  125. regression for NET_2_0 causing NotImplementedException.
  126. Fixes bug #77105.
  127. 2005-11-30 Konstantin Triger <[email protected]>
  128. * jay.bat: quoting passes
  129. 2005-11-27 Konstantin Triger <[email protected]>
  130. * System.Data.vmwcsproj: added ConflictOption.cs
  131. 2005-11-21 Senganal T <[email protected]>
  132. * System.Data.dll.sources:
  133. - Added System.Data/ConflictOption.cs : Source file for ConflictOption
  134. enumeration.
  135. 2005-11-15 Vlad Spivak <[email protected]>
  136. * TARGET_JVM related changes
  137. 2005-11-11 Senganal T <[email protected]>
  138. * System.Data.dll.sources: added
  139. System.Data/SchemaSerializationMode.cs : Enumeration for NET_2_0 compatibility
  140. 2005-10-08 Sureshkumar T <[email protected]>
  141. * System.Data.dll.sources: added
  142. System.Data.Odbc/NativeBuffer.cs. native buffer pointer.
  143. 2005-09-20 Konstantin Triger <[email protected]>
  144. * Added jay.bat to run jay in java prebuild step
  145. * System.Data.vmwcsproj: added prebuild step
  146. 2005-09-02 Umadevi S <[email protected]>
  147. * System.Data.dll.sources: Added SqlProcedureAttribute,SqlTriggerAttribute and
  148. SqlTriggerContext.cs to Microsoft.SqlServer.Server namespace.Also added SqlXml to SqlTypes namespace
  149. 2005-09-02 Umadevi S <[email protected]>
  150. * System.Data.dll.sources: Changes for Microsoft.SqlServer.Server namespace and the
  151. files to be compiled with it, removed files from System.Data.Sql namespace
  152. Also removed SqlResultSet.cs from System.SqlClient namespace
  153. 2005-09-01 Boris Kirzner <[email protected]>
  154. * System.Data.dll.sources: fixed build. Changed reference to Consts.cs.in.
  155. 2005-08-31 Boris Kirzner <[email protected]>
  156. * System.Data.vmwcsproj: changed reference to Consts.cs.in.
  157. 2005-08-22 Boris Kirzner <[email protected]>
  158. * System.Data.vmwcsproj: changed reference to Consts.cs.
  159. 2005-08-20 Gert Driesen <[email protected]>
  160. * Makefile: Allow unsafe code. This fixes the build on Windows (using
  161. csc).
  162. 2005-07-27 Boris Kirzner <[email protected]>
  163. * System.Data.vmwcsproj: changed location of rt.dll in TARGET_JVM project file.
  164. 2005-07-21 Boris Kirzner <[email protected]>
  165. * System.Data.vmwcsproj, System.Data.sln - removed source control
  166. information from TARGET_JVM project and solution files.
  167. 2005-07-12 Eyal Alalouf <[email protected]>
  168. * System.Data_tests.dll.sources:
  169. Removed use of obsolete System.Data.Tests.Mainsoft/GHTUtils
  170. 2005-07-12 Eyal Alalouf <[email protected]>
  171. * System.Data_tests.dll.sources:
  172. Standardized Mainsoft System.Data exception tests
  173. 2005-07-12 Eyal Alalouf <[email protected]>
  174. * System.Data_tests.dll.sources:
  175. Unified Mainsoft DataRelation tests into one test in Test/System.Data
  176. Unified Mainsoft DataRow tests into one test in Test/System.Data
  177. Unified Mainsoft DataRowCollection tests into one test in Test/System.Data
  178. Unified Mainsoft DataRowView tests into one test in Test/System.Data
  179. Unified Mainsoft DataTableCollection tests into one test in Test/System.Data
  180. Unified Mainsoft DataTable tests into one test in Test/System.Data
  181. Unified Mainsoft DataView tests into one test in Test/System.Data
  182. Unified Mainsoft ForeignKeyConstraint tests into one test in Test/System.Data
  183. Unified Mainsoft UniqueConstraint tests into one test in Test/System.Data
  184. 2005-07-12 Eyal Alalouf <[email protected]>
  185. * System.Data_tests.dll.sources: Unified Mainsoft DataRelationCollection tests into one test in Test/System.Data
  186. 2005-07-12 Eyal Alalouf <[email protected]>
  187. * System.Data_tests.dll.sources: Unified Mainsoft DataColumn tests into one test in Test/System.Data
  188. 2005-06-21 Sureshkumar T <[email protected]>
  189. 2005-06-30 Eyal Alalouf <[email protected]>
  190. * System.Data_tests.dll.sources: Unified Mainsoft DataColumnCollection tests into one test in Test/System.Data
  191. 2005-06-21 Sureshkumar T <[email protected]>
  192. * System.Data.dll.sources: Added SqlConnectionStringBuilder.cs and
  193. DbConnectionStringBuilderHelper.cs
  194. * System.Data_test.dll.sources: Added
  195. SqlConnectionStringBuilderTest.cs
  196. 2005-06-19 Konstantin Triger <[email protected]>
  197. System.Data.vmwcsproj: keeping up to date with move of Locale.cs and MonoTODOAttribute.cs
  198. 2005-06-14 Lluis Sanchez Gual <[email protected]>
  199. * Makefile: Added reference to System.Configuration.
  200. 2005-05-31 Boris Kirzner <[email protected]>
  201. * System.Data_test.dll.sources : added System.Data.Tests.Mainsoft/System.Data/RowNotInTableException/RowNotInTableException_Generate.cs
  202. 2005-05-30 BorisKirzner <[email protected]>
  203. * System.Data.SqlClient.jvm
  204. * System.Data.Configuration.jvm
  205. * System.Data.ProviderBase.jvm
  206. * System.Data.SqlTypes.jvm
  207. * System.Data.OleDb.jvm
  208. Added copyrigth information to all sources.
  209. 2005-05-30 BorisKirzner <[email protected]>
  210. * System.Data : new folders added :
  211. - System.Data.SqlClient.jvm
  212. - System.Data.Configuration.jvm
  213. - System.Data.SqlTypes.jvm
  214. - System.Data.OleDb.jvm
  215. * System.Data.vmwcsproj : TARGET_JVM project file added
  216. * System.Data.sln : TARGET_JVM solution file added
  217. * System.Data.SqlClient.jvm/SqlDataReader.cs
  218. * System.Data.SqlClient.jvm/SqlParameterCollection.cs
  219. * System.Data.SqlClient.jvm/SqlRowUpdatedEventArgs.cs
  220. * System.Data.SqlClient.jvm/SqlException.cs
  221. * System.Data.SqlClient.jvm/SqlConnection.cs
  222. * System.Data.SqlClient.jvm/SqlInfoMessageEventHandler.cs
  223. * System.Data.SqlClient.jvm/SqlStringManager.cs
  224. * System.Data.SqlClient.jvm/SqlRowUpdatingEventHandler.cs
  225. * System.Data.SqlClient.jvm/SqlErrorCollection.cs
  226. * System.Data.SqlClient.jvm/SqlParameterConverter.cs
  227. * System.Data.SqlClient.jvm/MetaType.cs
  228. * System.Data.SqlClient.jvm/SqlDataAdapter.cs
  229. * System.Data.SqlClient.jvm/SqlConnection.resx
  230. * System.Data.SqlClient.jvm/SqlClientPermissionAttribute.cs
  231. * System.Data.SqlClient.jvm/SqlRowUpdatedEventHandler.cs
  232. * System.Data.SqlClient.jvm/SqlCommand.cs
  233. * System.Data.SqlClient.jvm/SqlInfoMessageEventArgs.cs
  234. * System.Data.SqlClient.jvm/SqlConvert.cs
  235. * System.Data.SqlClient.jvm/SqlParameter.cs
  236. * System.Data.SqlClient.jvm/SqlRowUpdatingEventArgs.cs
  237. * System.Data.SqlClient.jvm/SqlCollation.cs
  238. * System.Data.SqlClient.jvm/ISqlNotificationReceiver.cs
  239. * System.Data.SqlClient.jvm/SqlCommandBuilder.cs
  240. * System.Data.SqlClient.jvm/SqlTransaction.cs
  241. * System.Data.SqlClient.jvm/SqlClientPermission.cs
  242. * System.Data.SqlClient.jvm/SqlXmlTextReader.cs
  243. * System.Data.SqlClient.jvm/SqlError.cs
  244. * System.Data.SqlClient.jvm/SqlConnectionPool.cs
  245. * System.Data.SqlClient.jvm/SqlCommand.resx
  246. * System.Data.SqlClient.jvm/SqlResultSet.cs
  247. * System.Data.Configuration.jvm/ObjectNameResolutionSectionHandler.cs
  248. * System.Data.Configuration.jvm/GlobalConfig.cs
  249. * System.Data.Configuration.jvm/ObjectNameResolversCollection.cs
  250. * System.Data.Configuration.jvm/ObjectNameResolver.cs
  251. * System.Data.SqlTypes.jvm/SqlDateTime.cs
  252. * System.Data.SqlTypes.jvm/SqlTime.cs
  253. * System.Data.SqlTypes.jvm/SqlDecimal.cs
  254. * System.Data.SqlTypes.jvm/SqlInt32.cs
  255. * System.Data.SqlTypes.jvm/SqlTypeException.cs
  256. * System.Data.SqlTypes.jvm/SqlChars.cs
  257. * System.Data.SqlTypes.jvm/SqlInt16.cs
  258. * System.Data.SqlTypes.jvm/SqlCompareOptions.cs
  259. * System.Data.SqlTypes.jvm/SqlByte.cs
  260. * System.Data.SqlTypes.jvm/SqlInt64.cs
  261. * System.Data.SqlTypes.jvm/SqlTruncateException.cs
  262. * System.Data.SqlTypes.jvm/SqlString.cs
  263. * System.Data.SqlTypes.jvm/SqlUtcDateTime.cs
  264. * System.Data.SqlTypes.jvm/SqlDouble.cs
  265. * System.Data.SqlTypes.jvm/SqlStreamChars.cs
  266. * System.Data.SqlTypes.jvm/SqlDate.cs
  267. * System.Data.SqlTypes.jvm/SqlBoolean.cs
  268. * System.Data.SqlTypes.jvm/SqlSingle.cs
  269. * System.Data.SqlTypes.jvm/SqlXmlReader.cs
  270. * System.Data.SqlTypes.jvm/SqlBinary.cs
  271. * System.Data.SqlTypes.jvm/SqlBytes.cs
  272. * System.Data.SqlTypes.jvm/SqlNullValueException.cs
  273. * System.Data.SqlTypes.jvm/SqlMoney.cs
  274. * System.Data.SqlTypes.jvm/INullable.cs
  275. * System.Data.SqlTypes.jvm/SqlGuid.cs
  276. * System.Data.ProviderBase.jvm/OleDbStrings.resx
  277. * System.Data.ProviderBase.jvm/AbstractDataReader.cs
  278. * System.Data.ProviderBase.jvm/ParameterMetadataWrapper.cs
  279. * System.Data.ProviderBase.jvm/AbstractDbError.cs
  280. * System.Data.ProviderBase.jvm/SqlClientStrings.resx
  281. * System.Data.ProviderBase.jvm/AbstractDbParameterCollection.cs
  282. * System.Data.ProviderBase.jvm/AbstractDbException.cs
  283. * System.Data.ProviderBase.jvm/AbstractDBConnection.cs
  284. * System.Data.ProviderBase.jvm/AbstractDbErrorCollection.cs
  285. * System.Data.ProviderBase.jvm/DbStringManager.cs
  286. * System.Data.ProviderBase.jvm/AbstractDbCommand.cs
  287. * System.Data.ProviderBase.jvm/AbstractDBCommand.cs
  288. * System.Data.ProviderBase.jvm/AbstractTransaction.cs
  289. * System.Data.ProviderBase.jvm/AbstractDBParameter.cs
  290. * System.Data.ProviderBase.jvm/AbstractDbParameter.cs
  291. * System.Data.ProviderBase.jvm/regex.cs
  292. * System.Data.OleDb.jvm/OleDbErrorCollection.cs
  293. * System.Data.OleDb.jvm/OleDbSchemaGuid.cs
  294. * System.Data.OleDb.jvm/OleDbDataAdapter.cs
  295. * System.Data.OleDb.jvm/OleDbPermissionAttribute.cs
  296. * System.Data.OleDb.jvm/libgda.cs
  297. * System.Data.OleDb.jvm/OleDbRowUpdatedEventHandler.cs
  298. * System.Data.OleDb.jvm/OleDbCommand.cs
  299. * System.Data.OleDb.jvm/OleDbInfoMessageEventArgs.cs
  300. * System.Data.OleDb.jvm/OleDbConvert.cs
  301. * System.Data.OleDb.jvm/OleDbParameter.cs
  302. * System.Data.OleDb.jvm/OleDbType.cs
  303. * System.Data.OleDb.jvm/OleDbOracleDataReader.cs
  304. * System.Data.OleDb.jvm/OleDbRowUpdatingEventArgs.cs
  305. * System.Data.OleDb.jvm/OleDbCommandBuilder.cs
  306. * System.Data.OleDb.jvm/OleDbTransaction.cs
  307. * System.Data.OleDb.jvm/OleDbConnectionFactory.cs
  308. * System.Data.OleDb.jvm/OleDbPermission.cs
  309. * System.Data.OleDb.jvm/OleDbError.cs
  310. * System.Data.OleDb.jvm/OleDbLiteral.cs
  311. * System.Data.OleDb.jvm/OleDbDataReader.cs
  312. * System.Data.OleDb.jvm/OleDbParameterCollection.cs
  313. * System.Data.OleDb.jvm/OleDbRowUpdatedEventArgs.cs
  314. * System.Data.OleDb.jvm/OleDbException.cs
  315. * System.Data.OleDb.jvm/OleDbConnection.cs
  316. * System.Data.OleDb.jvm/OleDbInfoMessageEventHandler.cs
  317. * System.Data.OleDb.jvm/OleDbStringManager.cs
  318. * System.Data.OleDb.jvm/OleDbRowUpdatingEventHandler.cs
  319. New classes added (used in TARGET_JVM only)
  320. 2005-05-29 BorisKirzner <[email protected]>
  321. * System.Data.dll.sources: Added ExceptionHelper.cs
  322. 2005-05-29 Eyal Alaluf <[email protected]>
  323. * System.Data_tests.dll.sources: Unified Mainsoft ConstraintCollection tests into one test in Test/System.Data
  324. 2005-05-25 Umadevi S <[email protected]>
  325. * System.Data.dll.sources : Added DbException.cs, SqlClientMetaDataCollectionNames.cs
  326. 2005-05-20 Umadevi S <[email protected]>
  327. * System.Data.dll.sources: Added DbProviderSpecificTypePropertyAttribute.cs
  328. 2005-05-20 Umadevi S <[email protected]>
  329. * System.Data.dll.sources :Added SqlNotificationEventArgs.cs,OnChangeEventHandler.cs
  330. 2005-05-19 Umadevi S <[email protected]>
  331. * System.Data.dll.sources: Added SqlBulkCopyOptions.cs,SqlBulkCopyColumnMapping.cs,
  332. SqlNotificationAuthType.cs,SqlNotificationTransports.cs,
  333. SqlRowsCopiedEventArgs.cs, SqlRowsCopiedEventHandler.cs
  334. 2005-05-16 Konstantin Triger <[email protected]>
  335. * Test/System.Data/DataSetTest.cs: performing correct cleanup
  336. * System.Data_test.dll.sources: Including Mainsoft tests
  337. 2005-05-04 Sureshkumar T <[email protected]>
  338. * System.Data.dll.sources: Added DataTableClearEventArgs.cs and
  339. DataTableClearEventHandler.cs.
  340. 2005-04-27 Sureshkumar T <[email protected]>
  341. * System.Data_test.dll.sources: Added DataTableReaderTest.cs
  342. 2005-04-22 Sureshkumar T <[email protected]>
  343. * System.Data_test.dll.sources: Added DataTableLoadRowTest.cs.
  344. 2005-01-05 Konstantin Triger <[email protected]>
  345. * DbCommandOptionalFeatures.cs, DbConnectionString.cs, DbConnectionOptions.cs: revert to r43344
  346. 2005-01-05 Konstantin Triger <[email protected]>
  347. * DbDataAdapter.cs: Rostore the Dispose logic
  348. 2005-04-28 Konstantin Triger <[email protected]> Sureshkumar T <[email protected]>
  349. * DataView.cs: Nullify an index when Closed
  350. 2005-04-27 Konstantin Triger <[email protected]>
  351. * DataRow.cs: Removed unneeded check of RowState
  352. 2005-04-27 Konstantin Triger <[email protected]>
  353. * ConstraintCollection: throw DuplicateException only if names match exactly with Table's locale
  354. 2005-04-08 Raja R Harinath <[email protected]>
  355. * Makefile (EXTRA_DISTFILES): Add app_test_2.0.config.
  356. 2005-04-07 Sureshkumar T <[email protected]>
  357. * System.Data.dll.sources: In System.Data.SqlClient
  358. Added SqlAsyncState.cs & SqlAsyncResult.cs
  359. 2005-04-04 Sureshkumar T <[email protected]>
  360. * System.Data_test.dll.sources: Added
  361. Test/System.Data.Common/DbConnectionStringBuilderTest.cs
  362. * System.Data.dll.sources: Added
  363. System.Data.Common/DbConnectionStringBuilder.cs
  364. 2005-03-10 Sureshkumar T <[email protected]>
  365. * System.Data.dll.sources: Added
  366. System.Data.Odbc/OdbcConnectionFactory.cs.
  367. System.Data.Odbc/OdbcFactory.cs.
  368. 2005-03-10 Sureshkumar T <[email protected]>
  369. * System.Data.dll.sources: Added
  370. System.Data.Odbc/OdbcTypeConverter.cs
  371. 2005-03-02 Sureshkumar T <[email protected]>
  372. * System.Data.dll.sources: Added
  373. System.Data.SqlClient/SqlConnectionFactory.cs.
  374. 2005-03-01 Sureshkumar T <[email protected]>
  375. * System.Data.dll.sources: Added System.Data.Common/
  376. ConnectionStringsSectionHandler.cs.
  377. * app_test_2.0.config: Changed the configuration handler for
  378. seciton "connectionStrings".
  379. 2005-02-22 Sureshkumar T <[email protected]>
  380. * System.Data_test.dll.sources: Added
  381. System.Data.Common/ConnectionStringsSectionTest.cs
  382. 2005-02-22 Sureshkumar T <[email protected]>
  383. * Makefile: added dependancy for test-lib to create
  384. $(test-lib).config. These configuration entries are used currently
  385. by Test/System.Data.Common/DbProviderFactories-
  386. ConigurationHalderTest.cs tests. Future tests can also add
  387. configuration information in configuration file
  388. app_test.2.0.config. This is for 2.0 profile only.
  389. * System.Data_test.dll.sources:
  390. Added System.Data.Common/DbProviderFactoriesConfigurationHandlerTest.cs.
  391. * System.Data.dll.sources:
  392. Added System.Data.SqlClient/SqlClientFactory.cs
  393. Added System.Data.SqlClient/SqlDataSourceEnumerator.cs
  394. 2005-02-15 Atsushi Enomoto <[email protected]>
  395. * System.Data.dll.sources : added XmlSchemaWriter.cs.
  396. 2005-02-02 Atsushi Enomoto <[email protected]>
  397. * System.Data_test.dll.sources : added DataViewManagerTest.cs.
  398. 2005-01-24 Atsushi Enomoto <[email protected]>
  399. * System.Data_test.dll.sources : added DataRowViewTest.cs.
  400. 2004-11-25 Raja R Harinath <[email protected]>
  401. * Makefile (BUILT_SOURCES): New. Build Mono.Data.SqlExpressions/Parser.cs.
  402. (EXTRA_DISTFILES): Add Mono.Data.SqlExpressions/Parser.jay.
  403. * System.Data.dll.sources: Don't mention Mono.Data.SqlExpressions/Parser.cs.
  404. 2004-11-10 Martin Baulig <[email protected]>
  405. * System.Data.Sql/ISqlCommand.cs,
  406. System.Data.Sql/ISqlConnection.cs,
  407. System.Data.Sql/ISqlExecutionContext.cs,
  408. System.Data.Sql/ISqlParameterCollection.cs,
  409. System.Data.Sql/ISqlTransaction.cs: Added `new' modifiers where needed.
  410. 2004-10-06 Umadevi S <[email protected]>
  411. * System.Data.dll.sources : Added ISqlNotificationReceiver, SqlNotifcationType,
  412. SqlNotificationInfo, SqlNotificationSource
  413. 2004-09-15 Sebastien Pouliot <[email protected]>
  414. * System.Data_test.dll.sources: Added OdbcPermission, OleDbPermission
  415. and SqlClientPermission unit tests to the build.
  416. 2004-09-14 Sebastien Pouliot <[email protected]>
  417. * System.Data_test.dll.sources: Added DBDataPermission unit tests to
  418. the build.
  419. 2004-09-14 Umadevi S <[email protected]>
  420. * Added System.Data.SqlTypes/SqlNotFilledException.cs,System.Data.SqlTypes/
  421. SqlAlreadyFilledException.cs to System.Data.dll.sources
  422. 2004-09-13 Sebastien Pouliot <[email protected]>
  423. * Makefile: Added /nowarn:618 when compiling unit test assembly to
  424. remove nunit obsolete warnings.
  425. * System.Data.dll.sources: Added System.Data.Common.DbConnectionOptions
  426. (NET_2_0) and System.Data.Common/PermissionHelper to the build.
  427. * System.Data_test.dll.sources: Added {DBData|Odbc|OleDb|SqlClient}
  428. PermissionAttribute unit tests to the build.
  429. 2004-08-25 Nick Drochak <[email protected]>
  430. * Makefile: Cut down the the build noise.
  431. 2004-08-19 Gert Driesen <[email protected]>
  432. * Added System.Data.SqlClient/SqlConnectionTest.cs to
  433. System.Data_test.dll.sources
  434. 2004-07-14 Umadevi S <[email protected]>
  435. * Added System.Data.SqlTypes/StorageState.cs to System.data.dll.sources
  436. 2004-07-09 Umadevi S <[email protected]>
  437. * Added System.Data.Sql/IUdtSerializationContext.cs and System.Data.Sql/SqlFacetAttribute.cs to system.data.dll.sources
  438. 2004-06-02 Umadevi S <[email protected]>
  439. * added System.Data/DataTableTypeConverter to system.data.dll.sources
  440. 2004-05-27 Umadevi S <[email protected]>
  441. * added files DataTableMappingCollectionTest and DataColumnMappingCollectionTest to system.data_test.dll.sources
  442. 2004-05-26 Umadevi S <[email protected]>
  443. * Added files DataTableCollectionTest and DataRelationCollectionTest to the system.data_test.dll.sources
  444. 2004-05-20 Umadevi S <[email protected]>
  445. * Fixed bug 58406- implemented the hasrow method, test program used
  446. to test with the bug report
  447. 2004-05-19 Boris Kirzner <[email protected]>
  448. * System.Data.dll.sources : Added DataContainer.cs
  449. 2004-05-19 Boris Kirzner <[email protected]>
  450. * System.Data.dll.sources : Added RecordCache.cs
  451. 2004-05-14 Umadevi S <[email protected]>
  452. * System.Data.dll.sources : Added SQLDebugging.cs
  453. 2004-05-14 Umadevi S <[email protected]>
  454. * System.Data.dll.sources : Added OdbcParameterConverter.cs
  455. 2004-05-14 Umadevi S <[email protected]>
  456. * System.Data.dll.sources : Added OdbcCategoryAttribute.cs OdbcDescriptionAttribute.cs
  457. 2004-05-14 Umadevi S <[email protected]>
  458. * System.Data.dll.sources : Added OdbcCommandBuilder.cs
  459. 2004-05-14 Umadevi S <[email protected]>
  460. * System.Data.dll.sources : Added OdbcInfoMessageEventArgs.cs, OdbcInfoMessageEventHandler.cs
  461. 2004-05-14 Umadevi S <[email protected]>
  462. * System.Data.dll.sources : Added OdbcPermission.cs,OdbcPermissionAttribute.cs
  463. 2004-05-13 Umadevi S <[email protected]>
  464. * System.Data.dll.sources : added OleDbParameterConverter.cs
  465. 2004-05013 Umadevi S <[email protected]>
  466. * System.Data.dll.sources : added RelationshipConverter.cs
  467. 2004-05-07 Atsushi Enomoto <[email protected]>
  468. * System.Data.dll.sources : added XmlDataInferenceLoader.cs and
  469. XmlDataReader.cs.
  470. 2004-04-26 Jackson Harper <[email protected]>
  471. * Makefile: output to profile directory.
  472. 2004-04-26 Atsushi Enomoto <[email protected]>
  473. * System.Data.dll.sources : added CustomDataClassGenerator.cs.
  474. 2004-04-19 Atsushi Enomoto <[email protected]>
  475. * System.Data_test.dll.sources : added DataSetInferXmlSchemaTest.cs.
  476. 2004-04-19 Atsushi Enomoto <[email protected]>
  477. * System.Data.dll.sources : Added XmlSchemaDataImporter.cs
  478. 2004-04-15 Atsushi Enomoto <[email protected]>
  479. * System.Data_test.dll.sources :
  480. added DataSetReadXmlSchemaTest.cs and DataSetAssertion.cs.
  481. 2004-04-14 Atsushi Enomoto <[email protected]>
  482. * System.Data_test.dll.sources : added DataSetReadXmlTest.cs.
  483. 2004-04-13 Atsushi Enomoto <[email protected]>
  484. * System.Data_test.dll.sources : added XmlDataDocumentTest2.cs.
  485. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  486. * System.Data.dll.sources: removed SqlConnectionPool.cs.
  487. 2004-03-29 Juraj Skripsky <[email protected]>
  488. * System.Data.dll.sources : added classes in Mono.Data.SqlExpressions
  489. * Makefile : add jay-target for Mono.Data.SqlExpressions/Parser.cs
  490. 2004-03-12 Andreas Nahr <[email protected]>
  491. * System.Data.dll.sources : added classes
  492. 2004-03-04 Eran Domb <[email protected]>
  493. * System.Data.dll.sources : added Node.cs, ComparerFactory.cs.
  494. 2004-03-03 Atsushi Enomoto <[email protected]>
  495. * System.Data.dll.sources : added Index.cs.
  496. 2004-01-21 Atsushi Enomoto <[email protected]>
  497. * System.Data_test.dll.sources : Added TypedDataSetGeneratorTest.cs.
  498. 2004-01-20 Atsushi Enomoto <[email protected]>
  499. * System.Data.dll.sources: Added missing TypedDataSetGenerator.cs.
  500. 2003-12-28 Tim Coleman <[email protected]>
  501. * System.Data.dll.sources:
  502. Add new .NET 1.2 sources.
  503. 2003-12-21 Tim Coleman <[email protected]>
  504. * System.Data.dll.sources:
  505. Add new .NET 1.2 sources.
  506. 2003-12-19 Tim Coleman <[email protected]>
  507. * System.Data.dll.sources:
  508. Add new .NET 1.2 sources.
  509. 2003-12-16 Tim Coleman <[email protected]>
  510. * System.Data.dll.sources:
  511. Add new .NET 1.2 sources.
  512. 2003-11-26 Tim Coleman <[email protected]>
  513. * System.Data.dll.sources:
  514. Add many new System.Data classes for NET_2_0 build.
  515. 2003-11-25 Tim Coleman <[email protected]>
  516. * System.Data.dll.sources:
  517. Add System.Data/IDataSources.cs to build
  518. 2003-07-18 Andreas Nahr <[email protected]>
  519. * System.Data.dll.sources: Assembly/Locale.cs added, Assembly/AssemblyInfo.cs added
  520. 2003-07-18 Peter Williams <[email protected]>
  521. * Makefile (EXTRA_DISTFILES): NUnit.Prefs is not
  522. a distable file.
  523. 2003-07-16 Peter Williams <[email protected]>
  524. * Makefile: Flip around for the new default build
  525. profile.
  526. 2003-06-16 Tim Coleman <[email protected]>
  527. * System.Data.Common/DbDataAdapter.cs:
  528. Add the DataTable to the result set even if it contains
  529. no rows. Based on report by Krieg Andreas.
  530. 2003-03-17 Daniel Morgan <[email protected]>
  531. * System.Data.build: on windows build, ignore
  532. warnings CS0219: "The variable xxx is assigned but its value is
  533. never used" and CS0168: "The variable xxx
  534. is declared but never used"
  535. * System.Data/DataRow.cs: flush
  536. * System.Data/DataSet.cs: start implementation on Clear(),
  537. and WriteXml() should write the start element <?xml ... ?> at the top
  538. of the document
  539. * System.Data/DataTable.cs: TODO/FIXME notes. Start implementation
  540. of Compute() - still not working
  541. 2003-03-16 Daniel Morgan <[email protected]>
  542. * System.Data/DataRowView.cs: in the constructor pass
  543. DataRow in instead of int index of the DataRow
  544. in DataTable.Rows
  545. * System.Data/DataTable.cs: implement sorting
  546. for method Select(filterExpression,sort)
  547. * System.Data/DataView.cs: more implementation -
  548. Now, If Sort, RowFilter, or RowStateFilter is set, an
  549. enumerated DataRowViews will be a view with those
  550. properties applied. Still need to implement event handling
  551. though.
  552. 2003-03-13 Tim Coleman <[email protected]>
  553. * System.Data.SqlClient/SqlCommandBuilder.cs:
  554. Change "where" variable name to "whereClause" at the
  555. request of Rhys Weatherley <[email protected]>
  556. 2003-03-10 Daniel Morgan <[email protected]>
  557. * System.Data.SqlClient/SqlDataReader.cs: when
  558. the data reader is closed, this SqlDataReader referenced
  559. in SqlConnection needs to be null
  560. * System.Data.Common/DbDataAdapter.cs: for SelectCommands executed that
  561. have no result set, such as, DDL like CREATE TABLE or DML like INSERT,
  562. the data reader needs to be immediately closed, and 0 returned
  563. as the number of rows added or refreshed
  564. 2003-02-18 Daniel Morgan <[email protected]>
  565. * DataTableRelationCollection.cs: removed file
  566. because its internally in file DataRelationCollection.cs
  567. 2003-02-18 Alan Tam <[email protected]>
  568. * DataRelation.cs: Added storage required to hold the relations.
  569. Checking of constraints are not implemented yet.
  570. * DataRelationCollection.cs: Implemented DataSetRelationCollection
  571. and DataTableRelationCollection, both as inner class of the abstract class
  572. DataRelationCollection (like Microsoft although not documented in ECMA).
  573. * DataRow.cs: Implemented GetChildRows in a extremely slow way.
  574. Need to implement caching like Microsoft later.
  575. * DataSet.cs: Uncomment DataRelation related members. Uncomment
  576. code for Nested XML. Implemented WriteTable(XmlWriter, DataRow[],
  577. XmlWriteMode) for use of Nested XML. Fixed a wrong modifier in
  578. GetSerializationData.
  579. * DataTable.cs: Uncomment DataRelation related members.
  580. 2003-02-11 Tim Coleman <[email protected]>
  581. * System.Data.SqlClient/SqlConnection.cs:
  582. Close the data reader properly, and be sure
  583. to close the data reader when the connection
  584. is closed.
  585. 2003-02-10 Nick Drochak <[email protected]>
  586. * System.Data.build: Keep the standalone tests out of the dll.
  587. 2003-02-09 Rodrigo Moya <[email protected]>
  588. * System.Data.OleDb/OleDbConnection.cs:
  589. * System.Data.OleDb/libgda.cs: upgraded to libgda 0.10.
  590. 2003-01-30 Ville Palo <[email protected]>
  591. * list: Added new file ExpressionElement.cs
  592. 2003-01-26 Daniel Morgan <[email protected]>
  593. * System.Data/DataColumn.cs: fix to not check for DataType being set
  594. * System.Data/DataRow.cs: misc fixes
  595. * Test/SqlTest.cs: accept connection parameters from
  596. command line instead of being hard coded
  597. * Test/System.Data_test.build: exclude building SqlTest.cs
  598. * Test/System.Data/DataRowTest.cs
  599. * Test/System.Data/DataColumnTest.cs: added new tests and numbered
  600. all the tests so they can be easily identified
  601. * Test/System.Data/DataRelationTest.cs: commented code that calls
  602. DataSet's BeginEdit() and EndEdit() which causes a compile error
  603. 2003-01-24 Daniel Morgan <[email protected]>
  604. * System.Data/DataColumn.cs: fixes to be like .NET -
  605. when setting AllowDBNull to false, determine if there is
  606. any data that has DBNull.Value, implement AutoIncrement, do not
  607. allow changing the DataType of the column if data has already been
  608. set, check if the DataType is supported,
  609. * System.Data/DataColumnCollection.cs: handle default ColumnName
  610. like .NET
  611. * System.Data/DataRow.cs: fixes to be like .NET - a
  612. data column gets initialized to all DBNull.Values not null,
  613. implement AutoIncrement, when setting ItemArray if the item array being
  614. set has less items than the number of columns in the table set those last
  615. columns to DBNull.Value, after setting ItemArray values do an EndEdit(),
  616. both a null and DBNull.Value get set to a DBNull.Value, only use DefaultValue
  617. and AutoIncrement if the value is set to null while DBNull.Value only gets set
  618. to DBNull.Value
  619. 2003-01-17 Daniel Morgan <[email protected]>
  620. * System.Data.SqlClient.SqlConnection.cs: add connection
  621. parameter UID which is the same thing as User ID
  622. 2003-01-13 Ville Palo <[email protected]>
  623. * System.Xml/XmlDataDocument.cs: lots of bugfixes and more implemented
  624. methods.
  625. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  626. * list: added System.Data/DataTablePropertyDescriptor.cs
  627. 2002-12-27 Ville Palo <[email protected]>
  628. * list: Added System.Data/XmlDataLoader.cs
  629. 2002-12-16 Ville Palo <[email protected]>
  630. * System.Xml/XmlDataDocument.cs: Now rollback works. It means all
  631. types of transactions works, i guess ;)
  632. 2002-12-14 Ville Palo <[email protected]>
  633. * System.Xml/XmlDataDocument.cs: Adding row via XmlDataDocument to
  634. DataSet's datatable is now possible.
  635. 2002-12-11 Ville Palo <[email protected]>
  636. * System.Xml/XmlDataDocument.cs: Implemented GetRowFromElement() and
  637. GetElementFromRowElement () -methods. Somefixed and little clean up.
  638. 2002-12-10 Gonzalo Paniagua Javier <[email protected]>
  639. * System.Data.SqlClient/SqlCommand.cs:
  640. (CloseReader): don't get the output parameters here.
  641. (GetOutputParameters): don't skip the stream. The parameters will be
  642. there.
  643. * System.Data.SqlClient/SqlConnection.cs: don't try to execute
  644. 'sp_reset_connection'.
  645. * System.Data.SqlClient/SqlDataReader.cs: get the output parameters
  646. after the end of the results.
  647. 2002-12-04 Ville Palo <[email protected]>
  648. * System.Xml/XmlDataDocument.cs: Now this works in both ways,
  649. DataSet <--> XmlDataDocument.cs at some level at least.
  650. 2002-12-02 Ville Palo <[email protected]>
  651. * System.Xml/XmlDataDocument.cs : some fixes and some imlemented
  652. methods.
  653. 2002-12-01 Tim Coleman <[email protected]>
  654. * System.Data.SqlClient/SqlDataReader.cs:
  655. Change to reflect TdsSchemaInfo -> TdsDataColumnCollection
  656. shift.
  657. 2002-12-01 Ville Palo <[email protected]>
  658. * list: Added XmlDataDocument.cs
  659. * System.Xml/XmlDataDocument.cs: more implementation.
  660. 2002-11-30 Daniel Morgan <[email protected]>
  661. * System.Data.Odbc/OdbcDataReader.cs: implemented GetValues() method
  662. needed by OdbcDataAdapter
  663. * System.Data.Odbc/OdbcDataAdapter.cs
  664. * System.Data.Odbc/OdbcRowUpdatedEventArgs.cs
  665. * System.Data.Odbc/OdbcRowUpdatedEventHandler.cs
  666. * System.Data.Odbc/OdbcRowUpdatingEventArgs.cs
  667. * System.Data.Odbc/OdbcRowUpdatingEventHandler.cs: added files for an
  668. ODBC Data Adapter
  669. * list: added new files to linux build
  670. in namespace System.Data.Odbc for the ODBC Data Adapter
  671. * System.Xml/XmlDataDocument.cs: commented method
  672. protected internal override XPathNavigator CreateNavigator(XmlNode node)
  673. because it would not compile on .NET Framework. Added
  674. a FIXME comment there
  675. 2002-11-29 Ville Palo <[email protected]>
  676. * System.Xml/XmlDataDocument.cs: Started to implement.
  677. 2002-11-26 Tim Coleman <[email protected]>
  678. * System.Data.SqlClient/SqlCommand.cs:
  679. * System.Data.SqlClient/SqlConnection.cs:
  680. * System.Data.SqlClient/SqlDataReader.cs:
  681. * System.Data.SqlClient/SqlParameter.cs:
  682. * System.Data.SqlClient/SqlParameterCollection.cs:
  683. * System.Data.SqlClient/SqlTransaction.cs:
  684. Many changes around restructuring of parameter
  685. information so that the Sybase provider supports
  686. PREPAREs too.
  687. 2002-11-25 Ville Palo <[email protected]>
  688. * System.Data/DataSet.cs : Started to implement ReadXmlSchema -method
  689. 2002-11-21 Tim Coleman <[email protected]>
  690. * System.Data.build:
  691. * System.Data.SqlClient/SqlCommand.cs:
  692. * System.Data.SqlClient/SqlConnection.cs:
  693. * System.Data.SqlClient/SqlConnectionPool.cs:
  694. * System.Data.SqlClient/SqlDataReader.cs:
  695. * System.Data.SqlClient/SqlException.cs:
  696. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  697. * System.Data.SqlClient/SqlParameter.cs:
  698. * System.Data.SqlClient/SqlTransaction.cs:
  699. * System.Data.SqlClient/SqlXmlTextReader.cs:
  700. * System.Data.SqlTypes/SqlDecimal.cs:
  701. Modify to accept new Mono.Data.Tds.Protocol
  702. namespace in Mono.Data.Tds assembly, replacing
  703. Mono.Data.TdsClient.Internal
  704. 2002-11-20 Ville Palo <[email protected]>
  705. * System.Data.SqlTypes/SqlDecimal.cs: Ported some divide-stuff from
  706. decimal.c file. Does not work correctly yet.
  707. 2002-11-18 Tim Coleman <[email protected]>
  708. * System.Data.SqlClient/SqlConnection.cs:
  709. BeginTransaction bug.
  710. * System.Data.SqlClient/SqlParameter.cs:
  711. Add some comments to describe what is going on.
  712. * System.Data.SqlClient/SqlCommand.cs:
  713. Add a TODO.
  714. * System.Data.SqlClient/SqlDataReader.cs:
  715. Add support to get SQL Types
  716. 2002-11-16 Daniel Morgan <[email protected]>
  717. * System.Data/DataView.cs: fix bug
  718. with DataViewEnumerator causing InvalidOperationException
  719. on the last item
  720. 2002-11-15 Tim Coleman <[email protected]>
  721. * System.Data.Common/DbDataPermission.cs:
  722. * System.Data.SqlClient/SqlClientPermission.cs:
  723. Make these agree on the class status page.
  724. * System.Data.SqlClient/SqlCommand.cs:
  725. - Fix up handling of GUID and [Var]Binary, and Image types
  726. * System.Data.SqlClient/SqlParameter.cs:
  727. - Provide support for conversion between Type,
  728. DbType, SqlDbType, and the SQL server type names.
  729. - Fix up handling of GUID and [Var]Binary types
  730. * System.Data.SqlClient/SqlParameterCollection.cs:
  731. Correct all of the Add methods.
  732. * Test/SqlTest.cs:
  733. - Add more types to test: unique identifier, binary,
  734. image, smalldatetime, money, smallmoney, timestamp
  735. 2002-11-14 Daniel Morgan <[email protected]>
  736. * System.Data/DataColumnPropertyDescriptor.cs
  737. * System.Data/DataRowView.cs
  738. * System.Data/DataView.cs
  739. * System.Data.Common/DbDataRecord.cs: a little bit more
  740. implementation for data binding purposes
  741. * Test/PostgresTest.cs
  742. * Test/TestSqlDataAdapter.cs
  743. * Test/TestSqlException.cs
  744. * TestSqlParameters.cs: fixed test for PostgreSQL's new home
  745. at Mono.Data.PostgreSqlClient
  746. 2002-11-14 Tim Coleman <[email protected]>
  747. * System.Data.SqlClient/SqlCommand.cs:
  748. Slight reformatting of Bit values and sql statements
  749. * System.Data.SqlClient/SqlDataReader.cs:
  750. Implement RecordsAffected
  751. Complete SchemaTable
  752. * System.Data.SqlClient/SqlParameter.cs:
  753. Propertly support Char/NChar
  754. * System.Data.SqlClient/SqlXmlTextReader.cs:
  755. Add Close () to the Dispose () method
  756. 2002-11-13 Tim Coleman <[email protected]>
  757. * Test/SqlTest.cs:
  758. New class added for testing SqlClient
  759. * System.Data.SqlClient/SqlCommand.cs:
  760. Add handling for SqlDbType.Bit
  761. * System.Data.SqlClient/SqlConnection.cs:
  762. Implement Dispose () methods.
  763. Change ConnectionString setter
  764. * System.Data.SqlClient/SqlDataReader.cs:
  765. Implement Dispose () methods.
  766. Set RecordsAffected to -1 by default. Need to
  767. set this correctly in the future.
  768. * System.Data.SqlClient/SqlCommandBuilder.cs:
  769. * System.Data.SqlClient/SqlDataAdapter.cs:
  770. * System.Data.SqlClient/SqlTransaction.cs:
  771. * System.Data.SqlClient/SqlXmlTextReader.cs:
  772. Implement Dispose () methods.
  773. 2002-11-12 Tim Coleman <[email protected]>
  774. * list:
  775. Remove Mono.Data.TdsClient.Internal/TdsContext.cs
  776. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  777. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  778. Complete these classes
  779. * System.Data.Common/DbDataAdapter.cs:
  780. Experimental support for FillSchema ()
  781. 2002-11-11 Tim Coleman <[email protected]>
  782. * System.Data/ResDescriptionAttribute.cs:
  783. * list
  784. New internal class added
  785. * System.Data/Constraint.cs:
  786. * System.Data/ConstraintCollection.cs:
  787. * System.Data/DBConcurrencyException.cs:
  788. * System.Data/DataColumn.cs:
  789. * System.Data/DataColumnCollection.cs:
  790. * System.Data/DataRelation.cs:
  791. * System.Data/DataRelationCollection.cs:
  792. * System.Data/DataRow.cs:
  793. * System.Data/DataRowBuilder.cs:
  794. * System.Data/DataRowBuilder.cs:
  795. * System.Data/DataRowCollection.cs:
  796. * System.Data/DataSet.cs:
  797. * System.Data/DataTable.cs:
  798. * System.Data/DataTableCollection.cs:
  799. * System.Data/DataView.cs:
  800. * System.Data/DataViewManager.cs:
  801. * System.Data/DataViewSetting.cs:
  802. * System.Data/DataViewSettingCollection.cs:
  803. * System.Data/ForeignKeyConstraint.cs:
  804. * System.Data/ForeignKeyConstraint.cs:
  805. * System.Data/InternalDataCollectionBase.cs:
  806. * System.Data/MergeFailedEventArgs.cs:
  807. * System.Data/StrongTypingException.cs:
  808. * System.Data/TypeDataSetGeneratorException.cs:
  809. * System.Data/UniqueConstraint.cs:
  810. * System.Data.Common/DataAdapter.cs:
  811. * System.Data.Common/DataColumnMapping.cs:
  812. * System.Data.Common/DataColumnMappingCollection.cs:
  813. * System.Data.Common/DataTableMapping.cs:
  814. * System.Data.Common/DataTableMappingCollection.cs:
  815. * System.Data.Common/DbDataAdapter.cs:
  816. * System.Data.Common/DbDataPermission.cs:
  817. * System.Data.Common/DbDataPermissionAttribute.cs:
  818. * System.Data.Common/DbEnumerator.cs:
  819. * System.Data.SqlClient/SqlCommand.cs:
  820. * System.Data.SqlClient/SqlCommandBuilder.cs:
  821. * System.Data.SqlClient/SqlConnection.cs:
  822. * System.Data.SqlClient/SqlDataAdapter.cs:
  823. * System.Data.SqlClient/SqlParameter.cs:
  824. Add missing attributes, methods, properties based on information
  825. from System.Data class status page on go-mono.com.
  826. 2002-11-10 Ville Palo <[email protected]>
  827. * System.Data.SqlTypes/SqlString.cs: Now all methods are implemented
  828. 2002-11-09 Tim Coleman <[email protected]>
  829. * list:
  830. * System.Data/DataCategoryAttribute.cs:
  831. Add new attribute based on corcompare
  832. 2002-11-09 Rodrigo Moya <[email protected]>
  833. * System.Data.OleDb/OleDbDataAdapter.cs: cleaned up implementation,
  834. based on the PgSql/SqlClient data adapter classes.
  835. 2002-11-09 Tim Coleman <[email protected]>
  836. * list:
  837. Add new internal tds classes
  838. * System.Data.Common/DbDataAdapter.cs:
  839. * System.Data.SqlClient/SqlDataAdapter.cs:
  840. Change event calling system
  841. * System.Data.SqlClient/SqlClientPermission.cs:
  842. * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
  843. * System.Data.SqlClient/SqlDataReader.cs:
  844. Add comments
  845. * System.Data.SqlClient/SqlCommand.cs:
  846. Some changes to make consistent with .NET based on Sql server traces
  847. Implement command timeout
  848. * System.Data.SqlClient/SqlCommandBuilder.cs:
  849. Make sure that we only build a command if key info found
  850. * System.Data.SqlClient/SqlConnection.cs:
  851. Change event calling system
  852. Some changes to make consistent with .NET based on Sql server traces
  853. Implement connection timeout
  854. * System.Data.SqlClient/SqlConnectionPool.cs:
  855. Implement connection timeout
  856. * System.Data.SqlClient/SqlError.cs:
  857. Implement ToString ()
  858. * System.Data.SqlClient/SqlException.cs:
  859. Mucho implementation and cleanup
  860. * System.Data.SqlClient/SqlParameter.cs:
  861. Implement Clone ()
  862. * System.Data.SqlClient/SqlParameterCollection.cs:
  863. Code cleanup
  864. * System.Data.SqlClient/SqlTransaction.cs:
  865. Move some of the transaction creation to SqlConnection to be consistent
  866. with .NET SQL traces
  867. 2002-11-08 Tim Coleman <[email protected]>
  868. * System.Data/DataRow.cs:
  869. * System.Data/DataTable.cs:
  870. Some fix-ups related to the DbDataAdapter to make it work.
  871. * System.Data.Common/DbDataAdapter.cs:
  872. Fix the Fill () and Update () methods. These now work
  873. fairly well. Need mucho testing.
  874. * System.Data.SqlClient/SqlCommandBuilder.cs:
  875. Support table mappings and parameter source versions now.
  876. * System.Data.SqlClient/SqlConnection.cs:
  877. * System.Data.SqlClient/SqlTransaction.cs:
  878. Add set accessor for transaction so that SqlTransaction.Commit ()
  879. will remove itself from the connection.
  880. * System.Data.SqlClient/SqlDataAdapter.cs:
  881. Update/Insert/Delete command should be null by default.
  882. * System.Data.SqlClient/SqlException.cs:
  883. Remove a TODO attribute
  884. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  885. Properly handle the SqlCommand object
  886. 2002-11-08 Ville Palo <[email protected]>
  887. * System.Data.SqlTypes/SqlDateTime.cs: Now the all methods are
  888. implemented.
  889. 2002-11-08 Gonzalo Paniagua Javier <[email protected]>
  890. * System.Data.SqlTypes/SqlDecimal.cs: fixed build. Someone should check
  891. my comments and do something more appropiate.
  892. 2002-11-07 Ville Palo <[email protected]>
  893. * System.Data.SqlTypes/SqlBinary.cs:
  894. * System.Data.SqlTypes/SqlBoolean.cs:
  895. * System.Data.SqlTypes/SqlByte.cs:
  896. * System.Data.SqlTypes/SqlDateTime.cs:
  897. * System.Data.SqlTypes/SqlDecimal.cs:
  898. * System.Data.SqlTypes/SqlDouble.cs:
  899. * System.Data.SqlTypes/SqlDecimal.cs:
  900. * System.Data.SqlTypes/SqlGuid.cs:
  901. * System.Data.SqlTypes/SqlInt16.cs:
  902. * System.Data.SqlTypes/SqlInt32.cs:
  903. * System.Data.SqlTypes/SqlInt64.cs:
  904. * System.Data.SqlTypes/SqlMoney.cs:
  905. * System.Data.SqlTypes/SqlSingle.cs:
  906. * System.Data.SqlTypes/SqlString.cs: Implemented more methods and
  907. fixed some. SqlBoolean Equals (object value) -method improvements to
  908. all classes.
  909. 2002-11-07 Tim Coleman <[email protected]>
  910. * System.Data.Common/DbDataAdapter.cs:
  911. Remove NotImplementedException in Dispose
  912. * System.Data.Common/FieldNameLookup.cs:
  913. Should be sealed
  914. * System.Data.SqlClient/SqlCommand.cs:
  915. Fix CommandText accessor (stack overflow)
  916. Implement DeriveParameters method
  917. * System.Data.SqlClient/SqlCommandBuilder.cs:
  918. Implement this class
  919. * System.Data.SqlClient/SqlConnection.cs:
  920. Change application name to "Mono SqlClient Data Provider"
  921. * System.Data.SqlClient/SqlDataReader.cs:
  922. Add new schema information
  923. * System.Data.SqlClient/SqlError.cs:
  924. * System.Data.SqlClient/SqlErrorCollection.cs:
  925. Remove internal methods, TODO attributes
  926. * System.Data.SqlClient/SqlParameter.cs:
  927. Add new internal constructor for DeriveParameters use
  928. * System.Data.SqlClient/SqlParameterConverter.cs:
  929. Add missing methods based on class status
  930. 2002-11-07 Nick Drochak <[email protected]>
  931. * list: add System.Data/ColumnDataPropertyDescriptor.cs
  932. 2002-11-04 Tim Coleman <[email protected]>
  933. * list:
  934. Add Mono.Data.TdsClient.Internal.TdsInternalError
  935. Add Mono.Data.TdsClient.Internal.TdsInternalErrorCollection
  936. Add Mono.Data.TdsClient.Internal.TdsInternalErrorMessageEventHandler
  937. Add Mono.Data.TdsClient.Internal.TdsInternalErrorMessageEventArgs
  938. Add Mono.Data.TdsClient.Internal.TdsInternalInfoMessageEventHandler
  939. Add Mono.Data.TdsClient.Internal.TdsInternalInfoMessageEventArgs
  940. Remove Mono.Data.TdsClient.Internal.TdsPacketErrorResult
  941. Remove Mono.Data.TdsClient.Internal.TdsPacketErrorResultCollection
  942. Remove Mono.Data.TdsClient.Internal.TdsPacketMessageResult
  943. * System.Data.Common/RowUpdatedEventArgs.cs:
  944. * System.Data.Common/RowUpdatingEventArgs.cs:
  945. Implement
  946. * System.Data.SqlClient/SqlCommand.cs:
  947. * System.Data.SqlClient/SqlDataReader.cs:
  948. Remove checks for errors. These are now handled by events
  949. * System.Data.SqlClient/SqlConnection.cs:
  950. * System.Data.SqlClient/SqlError.cs:
  951. * System.Data.SqlClient/SqlException.cs:
  952. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  953. Add event handlers and triggers for errors, messages, state change
  954. * System.Data.SqlClient/SqlParameter.cs:
  955. Re-add refreshproperties
  956. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  957. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs:
  958. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  959. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs:
  960. Implement
  961. 2002-11-04 Tim Coleman <[email protected]>
  962. * list:
  963. Add Mono.Data.TdsClient.Internal.TdsBigDecimal
  964. Add System.Data.SqlClient.SqlParameterConverter
  965. Add System.Data.DataSysDescriptionAttribute
  966. * System.Data/DataSysDescriptionAttribute.cs:
  967. New class added
  968. * System.Data.Common/DbDataPermission.cs:
  969. Add CreateInstance method
  970. * System.Data.SqlClient/SqlClientPermission.cs:
  971. * System.Data.SqlClient/SqlError.cs:
  972. Add Serializable attribute
  973. * System.Data.SqlClient/SqlCommand.cs:
  974. * System.Data.SqlClient/SqlConnection.cs:
  975. * System.Data.SqlClient/SqlDataAdapter.cs:
  976. * System.Data.SqlClient/SqlParameter.cs:
  977. Add some missing property attributes
  978. * System.Data.SqlClient/SqlCommandBuilder.cs:
  979. Add some missing property attributes
  980. Implement properties
  981. * System.Data.SqlClient/SqlDataReader.cs:
  982. Implement missing methods
  983. * System.Data.SqlClient/SqlErrorCollection.cs:
  984. Implement the properties
  985. * System.Data.SqlClient/SqlException.cs:
  986. Remove extra property accessors
  987. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  988. Add internal constructor
  989. * System.Data.SqlClient/SqlParameterCollection.cs:
  990. Add internal constructor
  991. Add property attributes
  992. * System.Data.SqlClient/SqlParameterConverter.cs:
  993. New internal class added
  994. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  995. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  996. Remove destructor
  997. * System.Data.SqlTypes/SqlDecimal.cs:
  998. Add implicit conversion from TdsBigDecimal to SqlDecimal
  999. * System.Data.SqlTypes/SqlString.cs:
  1000. * System.Data.SqlTypes/SqlInt16.cs:
  1001. * System.Data.SqlTypes/SqlDateTime.cs:
  1002. Change code to remove compiler warnings
  1003. 2002-11-04 Stuart Caborn <[email protected]>
  1004. * list: added System.Data/XmlConstants.cs to
  1005. Linux build
  1006. * System.Data/XmlConstants.cs: added -
  1007. * System.Data/DataTable.cs
  1008. * System.Data/DataSet.cs
  1009. * System.Data/DataColumn.cs
  1010. * System.Data/DataColumnCollection.cs
  1011. * System.Data/DataRelation.cs: modified -
  1012. Began initial implementation of WriteXml
  1013. and WriteXmlSchema. There is no support for DiffGrams
  1014. yet. In WriteSchema mode, relationships are missing,
  1015. all types are xs:string and the namespacing is not
  1016. working properly. Added support for Ordinals in the
  1017. DataColumnCollection and added support for
  1018. namespaces and prefixes.
  1019. 2002-11-03 Ville Palo <[email protected]>
  1020. * System.Data.SqlTypes/SqlBinary.cs: Finished and no errors generated
  1021. by NUnitConsole_mono.exe
  1022. 2002-11-03 Tim Coleman ([email protected])
  1023. * System.Data.SqlClient/SqlCommand.cs:
  1024. Use SET NO_BROWSETABLE ON when CommandBehavior is KeyInfo
  1025. * System.Data.SqlClient/SqlDataReader.cs:
  1026. Get more schema info if available
  1027. * list:
  1028. Add Mono.Data.TdsClient.Internal.TdsColumnStatus
  1029. 2002-11-02 Tim Coleman ([email protected])
  1030. * System.Data.SqlClient/SqlCommand.cs:
  1031. Change to use sp_executesql to run regular text queries.
  1032. Now, sp_executesql for text, sp_execute for prepared,
  1033. and execute for SPs means everything runs a procedure.
  1034. * System.Data.SqlClient/SqlParameter.cs:
  1035. Allow client to set parameter name in Prepare ()
  1036. * System.Data.SqlClient/SqlParameterCollection.cs:
  1037. Implement some methods
  1038. * System.Data.SqlClient/SqlDataReader.cs:
  1039. Since everything is an SP now, we know that when
  1040. we see DoneProc, that we are really done.
  1041. 2002-11-01 Tim Coleman ([email protected]) :
  1042. * System.Data.Common/DbEnumerator.cs :
  1043. Throw correct exception on Reset ()
  1044. Add ColumnSize to schema table.
  1045. * System.Data.SqlClient/SqlDataReader.cs :
  1046. Add ColumnSize to schema table.
  1047. * System.Data.SqlClient/SqlCommand.cs :
  1048. Change the way that preparing is handled.
  1049. Now uses sp_prepare on the server instead of temp
  1050. stored procedures because it's the Right Thing[tm] to do.
  1051. * System.Data.SqlClient/SqlConnection.cs :
  1052. Store data readers here rather than in command
  1053. * System.Data.SqlClient/SqlDataReader.cs :
  1054. More implementation, including binary types
  1055. * System.Data.SqlClient/SqlParameter.cs :
  1056. Lowercase type name
  1057. 2002-10-31 Tim Coleman ([email protected])
  1058. * System.Data.Common/DbDataAdapter.cs :
  1059. Fix handling of nulls
  1060. * System.Data.Common/DbDataRecord.cs :
  1061. Change GetFieldType ()
  1062. * System.Data.Common/DbEnumerator.cs :
  1063. Add new schema information
  1064. * System.Data.Common/FieldNameLookup.cs :
  1065. Change definition of schema
  1066. * System.Data.Common/SchemaInfo.cs :
  1067. Add more information
  1068. * System.Data.SqlClient/SqlDataReader.cs :
  1069. get more schema table data
  1070. * list :
  1071. Add Mono.Data.TdsClient.Internal.TdsSchemaInfo
  1072. 2002-10-31 Ville Palo <[email protected]>
  1073. * SqlBinary.cs:
  1074. * SqlBoolean.cs:
  1075. * SqlByte.cs:
  1076. * SqlDecimal.cs:
  1077. * SqlDouble.cs:
  1078. * SqlInt16.cs:
  1079. * SqlInt64.cs:
  1080. * SqlString.cs: Some bugfixes and some TODOs but so much
  1081. work to do.
  1082. 2002-10-30 Tim Coleman ([email protected])
  1083. * System.Data.Common/FieldNameLookup.cs:
  1084. * System.Data.Common/SchemaInfo.cs:
  1085. * System.Data.SqlClient/SqlXmlTextReader.cs:
  1086. New classes added
  1087. * list :
  1088. Class list changed in build
  1089. * System.Data.SqlClient/SqlCommand.cs:
  1090. Added support for command behaviors
  1091. Refactored a bunch of code
  1092. Implement ExecuteScalar
  1093. Implement ExecuteXmlReader
  1094. * System.Data.SqlClient/SqlConnection.cs:
  1095. Moved CheckForErrors here
  1096. * System.Data.SqlClient/SqlDataAdapter.cs:
  1097. Code reformatting
  1098. * System.Data.SqlClient/SqlDataReader.cs:
  1099. Implement GetEnumerator
  1100. Fix NextResult, Read
  1101. Add SqlDataReaderEnumerator private class
  1102. * System.Data.SqlClient/SqlParameter.cs:
  1103. Move some of the Prepare code from SqlCommand to here
  1104. * System.Data.SqlClient/SqlTransaction.cs:
  1105. Move error checking to SqlConnection
  1106. 2002-10-29 Tim Coleman ([email protected])
  1107. * System.Data.SqlClient/SqlCommand.cs:
  1108. Added code to handle parameters for queries
  1109. * System.Data.SqlClient/SqlConnection.cs:
  1110. Properly handle resetting SqlConnections
  1111. * System.Data.SqlClient/SqlDataReader.cs:
  1112. Properly handle the case where no results are returned
  1113. * System.Data.SqlClient/SqlParameter.cs:
  1114. Default direction to Input
  1115. * System.Data.SqlClient/SqlParameterCollection.cs:
  1116. Implement GetEnumerator
  1117. 2002-10-29 Rodrigo Moya <[email protected]>
  1118. * makefile.gnu: added Test directory.
  1119. 2002-10-29 Ville Palo <[email protected]>
  1120. * System.Data.SqlTypes/SqlGuid.cs: Fixed some bugs and finished
  1121. couple of MonoTODOs.
  1122. 2002-10-28 Tim Coleman ([email protected])
  1123. * System.Data.SqlClient/SqlCommand.cs:
  1124. Add some error handling
  1125. * System.Data.SqlClient/SqlDataReader.cs:
  1126. Add some error handling
  1127. Add precision/scale to schema table
  1128. * System.Data.SqlClient/SqlException.cs:
  1129. Generate a SqlException from TDS error
  1130. collection
  1131. * System.Data.SqlClient/SqlTransaction.cs:
  1132. Add some error handling
  1133. 2002-10-28 Ville Palo <[email protected]>
  1134. * System.Data.SqlTypes/SqlBinary.cs:
  1135. * System.Data.SqlTypes/SqlBoolean.cs:
  1136. * System.Data.SqlTypes/SqlByte.cs:
  1137. * System.Data.SqlTypes/SqlDateTime.cs:
  1138. * System.Data.SqlTypes/SqlDecimal.cs:
  1139. * System.Data.SqlTypes/SqlDouble.cs:
  1140. * System.Data.SqlTypes/SqlDecimal.cs:
  1141. * System.Data.SqlTypes/SqlDouble.cs:
  1142. * System.Data.SqlTypes/SqlGuid.cs:
  1143. * System.Data.SqlTypes/SqlInt16.cs:
  1144. * System.Data.SqlTypes/SqlInt32.cs:
  1145. * System.Data.SqlTypes/SqlInt64.cs:
  1146. * System.Data.SqlTypes/Money.cs:
  1147. * System.Data.SqlTypes/SqlSingle.cs:
  1148. * System.Data.SqlTypes/SqlString.cs:
  1149. * System.Data.SqlTypes/SqlSingle.cs: Fixed internal loop bugs and
  1150. some other minor fixes.
  1151. 2002-10-27 Rodrigo Moya <[email protected]>
  1152. * System.Data.OleDb/OleDbDataAdapter.cs (Fill, FillSchema,
  1153. GetFillParameters, Update): added overloaded methods.
  1154. * System.Data.OleDb/OleDbCommand.cs:
  1155. * System.Data.OleDb/OleDbDataReader.cs:
  1156. * System.Data.OleDb/OleDbConnection.cs: removed limitation of one
  1157. data adapter at a time. Mono's version can open as many as you want,
  1158. for free.
  1159. 2002-10-25 Tim Coleman ([email protected])
  1160. * System.Data.SqlClient/SqlConnectionPool.cs:
  1161. New class added
  1162. * System.Data.SqlClient/SqlClientPermission.cs:
  1163. * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
  1164. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  1165. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs:
  1166. * System.Data.SqlClient/SqlParameter.cs:
  1167. * System.Data.SqlClient/SqlParameterCollection.cs:
  1168. Code reformatting
  1169. * System.Data.SqlClient/SqlCommand.cs:
  1170. * System.Data.SqlClient/SqlConnection.cs:
  1171. * System.Data.SqlClient/SqlException.cs:
  1172. * System.Data.SqlClient/SqlTransaction.cs:
  1173. New code based on work in TDS Client
  1174. * list:
  1175. New files added for SqlClient, and TdsClient.Internal
  1176. * System.Data.build:
  1177. Added reference to System.EnterpriseServices.dll
  1178. Still leave SqlClient out of build until danmorg
  1179. can fix.
  1180. 2002-10-23 Ville Palo <[email protected]>
  1181. * System.Data.SqlTypes/SqlDouble.cs:
  1182. * System.Data.SqlTypes/SqlSingle.cs: Finished
  1183. 2002-10-23 Ville Palo <[email protected]>
  1184. * System.Data.SqlTypes/SqlByte.cs:
  1185. * System.Data.SqlTypes/SqlBoolean.cs:
  1186. * System.Data.SqlTypes/SqlInt16.cs:
  1187. * System.Data.SqlTypes/SqlInt32.cs:
  1188. * System.Data.SqlTypes/SqlInt64.cs: Finished.
  1189. 2002-10-21 Rodrigo Moya <[email protected]>
  1190. * list: removed libodbchelper.cs file, which has been removed.
  1191. 2002-10-16 Tim Coleamn <[email protected]>
  1192. * list:
  1193. * System.Data.build:
  1194. Exclude compiling of System.Data.SqlClient in
  1195. preparation for overhauls of that system.
  1196. 2002-10-16 Daniel Morgan <[email protected]>
  1197. * ParmUtil.cs
  1198. * PostgresLibrary.cs
  1199. * PostgresTypes.cs
  1200. * SqlClientPermission.cs
  1201. * SqlClientPermissionAttribute.cs
  1202. * SqlCommand.cs
  1203. * SqlCommandBuilder.cs
  1204. * SqlConnection.cs
  1205. * SqlDataAdapter.cs
  1206. * SqlDataReader.cs
  1207. * SqlError.cs
  1208. * SqlErrorCollection.cs
  1209. * SqlException.cs
  1210. * SqlInfoMessageEventArgs.cs
  1211. * SqlInfoMessageEventHandler.cs
  1212. * SqlParameter.cs
  1213. * SqlParameterCollection.cs
  1214. * SqlRowUpdatedEventArgs.cs
  1215. * SqlRowUpdatedEventHandler.cs
  1216. * SqlRowUpdatingEventArgs.cs
  1217. * SqlRowUpdatingEventHandler.cs
  1218. * SqlTransaction.cs: thanks to Miguel de Icaza, he
  1219. copied files on the mono cvs server
  1220. from mcs/class/System.Data/System.Data.SqlClient
  1221. for the PostgreSQL provider
  1222. to mcs/class/Mono.Data.PostgreSqlClient.
  1223. This frees up
  1224. mcs/class/System.Data/System.Data.SqlClient for
  1225. the Microsoft SQL Server provider.
  1226. Any Mono.Data.PostgreSqlClient/Sql*.cs files
  1227. were copied on the cvs server
  1228. to Mono.Data.PostgreSqlClient/PgSql*.cs files
  1229. and the old Mono.Data.PostgreSqlClient/Sql*.cs
  1230. files were removed. Copying, renaming, and removing
  1231. was done on the cvs server so we could keep
  1232. the cvs change history.
  1233. 2002-10-15 Daniel Morgan <[email protected]>
  1234. * System.Data.OleDb/libgda.cs: added more functions
  1235. to platfrom invoke into shared library libgda
  1236. * System.Data.OleDb/OleDbDataReader.cs: implemented
  1237. GetSchemaTable() and GetFieldType()
  1238. 2002-10-13 Daniel Morgan <[email protected]>
  1239. * System.Data/DataRow.cs: don't throw exception
  1240. if DBNull is false. Had to do comment this line
  1241. to allow a typeof(Type).
  1242. * System.Data.SqlClient/SqlCommand.cs: the "DataType"
  1243. DataColumn and DataRows in a DataTable for a schema should
  1244. be typeof Type, not string. This is to make it
  1245. compatible with MS.NET
  1246. * System.Data.SqlClient/SqlConnection.cs: the
  1247. isolation level should be set before
  1248. beginning the transaction
  1249. * Test/SqlSharpCli.cs: change string to Type for
  1250. "DataType" from a DataRow in a DataTable
  1251. that contains a schema.
  1252. 2002-10-14 Rodrigo Moya <[email protected]>
  1253. * list: added missing Odbc files.
  1254. 2002-10-09 Rodrigo Moya <[email protected]>
  1255. * list: added System.Data.Odbc files.
  1256. 2002-10-09 Brian Ritchie <[email protected]>
  1257. * System.Data.Odbc/*: added first version of ODBC managed provider.
  1258. 2002-10-07 Gonzalo Paniagua Javier <[email protected]>
  1259. * System.Data/ConstraintCollection.cs:
  1260. * System.Data/DataColumnCollection.cs:
  1261. * System.Data/DataRowCollection.cs:
  1262. * System.Data/DataTableCollection.cs:
  1263. * System.Data/InternalDataCollectionBase.cs: made List internal to fix
  1264. the build with csc. It must be a mcs bug. I will try to get a test case.
  1265. 2002-10-06 Luis Fernandez <[email protected]>
  1266. * System.Data/Constraint.cs (AssertConstraint): added overloaded
  1267. method.
  1268. * System.Data/DataColumnCollection.cs: added constraints when needed.
  1269. * System.Data/DataRow.cs: validate UniqueConstraint's.
  1270. * System.Data/DataRowCollection.cs (ValidateDataRowInternal): new
  1271. internal method to validate a given DataRow with respect to the
  1272. DataRowCollection.
  1273. * System.Data/ForeignKeyConstraint.cs (AssertConstraint): stubs for
  1274. new overloaded method.
  1275. * System.Data/UniqueConstraint.cs: added implementation.
  1276. (AseertConstraint): implemented new overloaded method.
  1277. 2002-10-01 Rodrigo Moya <[email protected]>
  1278. * System.Data.OleDb/OleDbConnection.cs (Open): commented code from
  1279. last commit, which wasn't supposed to be in CVS yet.
  1280. 2002-10-01 Luis Fernandez <[email protected]>
  1281. * System.Data/DataColumn.cs:
  1282. * System.Data/DataRow.cs:
  1283. * System.Data/DataRowCollection.cs:
  1284. * System.Data/DataTable.cs: some fixes and implementation.
  1285. 2002-09-28 Vladimir Vukicevic <[email protected]>
  1286. * System.Data.OleDb/OleDbConnection.cs: Close
  1287. reader properly in call to ExecuteScalar().
  1288. 2002-09-07 Rodrigo Moya <[email protected]>
  1289. * System.Data.OleDb/OleDbConnection.cs (Open): changed to use OleDb
  1290. connection strings, which are then converted to GDA connection
  1291. strings, instead of using directly GDA data source names.
  1292. * System.Data.OleDb/libgda.cs: added more needed functions.
  1293. 2002-09-06 Franklin Wise <[email protected]>
  1294. * System.Data/DataColumn.cs: More flushing out.
  1295. * System.Data/ForeignKeyConstraint.cs: Implemented GetHashCode()
  1296. * System.Data/UniqueKeyConstraint.cs: Implemented GetHashCode()
  1297. * Tests: See Changelog for System.Data/Test
  1298. 2002-09-04 Franklin Wise <[email protected]>
  1299. * Tests: See Changelog for System.Data/Test
  1300. * New Files:
  1301. System.Data/DataColumnCollectionTest.cs
  1302. System.Data/DataRowCollectionTest.cs
  1303. System.Data/DataRowTest.cs
  1304. * System.Data/DataColumn.cs: Flushing out validation, type conversion for
  1305. autoincrement. Added lots of TODO's.
  1306. * System.Data/DataColumnCollection.cs: Wrote out add logic as a comment.
  1307. Tagged implementation with FIXME tags. Lot's more validation
  1308. and setup needs to be done, much of which is now tagged as todo's
  1309. or FIXME's
  1310. * System.Data/DataRow.cs: Lot's of fixme's added.
  1311. * System.Data/DataRowCollection.cs: TODO's added.
  1312. * System.Data/DataTable.cs: Implemented PrimaryKey.
  1313. * System.Data/UniqueConstraint.cs: Implemented related PrimaryKey
  1314. helpers.
  1315. 2002-08-25 Rodrigo Moya <[email protected]>
  1316. * System.Data.OleDb/OleDbTransaction.cs (OleDbTransaction): manage
  1317. correctly the isolation level.
  1318. (IsolationLevel): likewise.
  1319. (~OleDbTransaction): implemented.
  1320. * System.Data.OleDb/libgda.cs: added more needed stuff.
  1321. 2002-08-22 Daniel Morgan <[email protected]>
  1322. * System.Data.SqlClient/SqlParameter.cs: flush
  1323. * System.Data.SqlClient/SqlParameterCollection.cs: fixes
  1324. for the Item property, IndexOf, and Contains.
  1325. * Test/SqlSharpCli.cs: added input parameters support.
  1326. when a query is executed, if a parameter name matches
  1327. a SQL# internal variable name, it uses that value for the parameter; otherwise,
  1328. the user is prompted for the parameter value. Currently, it only supports
  1329. string parameters.
  1330. 2002-08-21 Rodrigo Moya <[email protected]>
  1331. * System.Data.OleDb/libgda.cs: adapted to changes in libgda (get_vtype
  1332. and get_type for GdaValue).
  1333. * System.Data.OleDb/OleDbDataReader.cs: adapted to changes in
  1334. libgda.cs.
  1335. 2002-08-20 Rodrigo Moya <[email protected]>
  1336. * System.Data.OleDb/OleDbConnection.cs (DataReader): new internal
  1337. property.
  1338. (Close): set the dataReader to null.
  1339. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader): set the
  1340. connection's DataReader property to this object.
  1341. (Close): set it to null here.
  1342. (Depth, IsDbNull): implemented.
  1343. (this): implemented the Item property with a string indexer.
  1344. * System.Data.OleDb/OleDbCommand.cs (ExecuteNonQuery, ExecuteReader,
  1345. ExecuteScalar): do nothing if there's already an open data reader.
  1346. * System.Data.OleDb/libgda.cs: more API functions.
  1347. * System.Data.OleDb/TestOleDb.cs (TestDataReader): close the data
  1348. reader before continuing.
  1349. 2002-08-20 Franklin Wise <[email protected]>
  1350. * System.Data/System.Data.build: added nowarn:0679
  1351. * System.Data/System.DataTable: cleaned up class, added MonoTODO tags
  1352. setup to begin implementing. Implemented ctor().
  1353. * Tests: See System.Data\Test\ChangeLog
  1354. 2002-08-19 Rodrigo Moya <[email protected]>
  1355. * System.Data.OleDb/OleDbSchemaGuid.cs: initialize static members.
  1356. 2002-08-19 Franklin Wise <[email protected]>
  1357. * Tests: See System.Data\Test\ChangeLog
  1358. * System.Data/UniqueConstraint.cs: More validation.
  1359. * System.Data/ForeignKeyConstraint.cs: Added more validation rules.
  1360. Another LAMESPEC tag. Implemented more of Add/Remove Setup/Cleanup
  1361. logic.
  1362. * System.Data/DataTable.cs: Added more MonoTODO tags
  1363. * class/System.Data/.cvsignore: added tmp & Temp
  1364. * System.Data/Constraint.cs: Changed abstract helpers to virtual and
  1365. internal.
  1366. * System.Data/ConstraintCollection.cs: Commented out unused line.
  1367. 2002-08-18 Rodrigo Moya <[email protected]>
  1368. * System.Data.OleDb/OleDbConnection.cs (ChangeDatabase): implemented.
  1369. * System.Data.OleDb/OleDbException.cs (OleDbException): added internal
  1370. constructor.
  1371. (ErrorCode, Message, Source, Errors): implemented.
  1372. * System.Data.OleDb/OleDbError.cs: implemented the full class.
  1373. * System.Data.OleDb/libgda.cs: added more libgda functions.
  1374. * System.Data.OleDb/TestOleDb.cs (TestOleDb): display properties for
  1375. the opened connection.
  1376. 2002-08-18 Rodrigo Moya <[email protected]>
  1377. * System.Data.OleDb/OleDbConnection.cs (ServerVersion): implemented.
  1378. * System.Data.OleDb/OleDbDataReader.cs (Close): clear the results
  1379. ArrayList after releasing the items.
  1380. (GetName, GetDateTime, GetDouble, GetSingle, GetInt16, GetInt32,
  1381. GetOrdinal, GetString): implemented.
  1382. (GetDataTypeName): made it get the type from the data model, not from
  1383. the current value, which could not have been retrieved yet.
  1384. (GetValue): call the Get* method corresponding with the data type of
  1385. the requested column.
  1386. * System.Data.OleDb/libgda.cs: added more libgda functions.
  1387. (GdaTimestamp, GdaDate, GdaTime): new marshalled structures.
  1388. * System.Data.OleDb/TestOleDb.cs (TestDateReader): display column
  1389. titles via OleDbDataReader.GetName ().
  1390. (TestOleDb): create temporary table with a date field.
  1391. (InsertRow): set current date for the date field.
  1392. 2002-08-18 Rodrigo Moya <[email protected]>
  1393. * System.Data.OleDb/OleDbDataReader.cs (this[]): made it just call
  1394. GetValue, which will take care of all the work needed.
  1395. (Close): implemented basic stuff.
  1396. (~OleDbDataReader): implemented.
  1397. * System.Data.OleDb/libgda.cs: added more needed functions.
  1398. 2002-08-16 Rodrigo Moya <[email protected]>
  1399. * System.Data.OleDb/TestOleDb.cs: made it work with a temporary table
  1400. we create.
  1401. (TestTransaction): added test for transactions.
  1402. 2002-08-16 Rodrigo Moya <[email protected]>
  1403. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  1404. * System.Data.OleDb/OleDbDataReader.cs (GetBoolean): throw exceptions
  1405. when there are errors.
  1406. (GetByte, GetChar, GetDataTypeName, GetValue, Read): implemented.
  1407. * System.Data.OleDb/TestOleDb.cs: added more testing code for data
  1408. readers.
  1409. 2002-08-15 Rodrigo Moya <[email protected]>
  1410. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  1411. * System.Data.OleDb/OleDbParameterCollection.cs (GdaParameterList):
  1412. create an empty GdaParameterList.
  1413. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): check values
  1414. for NULL before passing them to Marshal.PtrToStructure, which issues
  1415. an exception if the value is NULL.
  1416. 2002-08-15 Rodrigo Moya <[email protected]>
  1417. * System.Data/UniqueConstraint.cs (UniqueConstraint): commented
  1418. unreachable code to avoid compiler warning.
  1419. * System.Data.OleDb/libgda.cs (GdaList): added new internal class.
  1420. * System.Data.OleDb/OleDbConnection.cs (DataSource): implemented.
  1421. (OpenReader): removed internal method.
  1422. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): split correctly
  1423. the list of returned data models.
  1424. 2002-08-15 Franklin Wise <[email protected]>
  1425. * System.Data/Constraint.cs: Added helper virtual functions
  1426. * System.Data/ConstraintCollection.cs: Improved constraint removal,
  1427. validation. Removed specific knowledge of subclasses of
  1428. Constraint.
  1429. * System.Data/DataColumn.cs: Added static helper function to compare
  1430. if two DataColumn arrays are the same.
  1431. * System.Data/ForeignKeyConstraint.cs: Continued to flush out.
  1432. * System.Data/UniqueConstraint.cs: Implemented. Still some constraint
  1433. validation to do.
  1434. 2002-08-13 Franklin Wise <[email protected]>
  1435. * System.Data/DataRow.cs: Added several fixme tags.
  1436. 2002-08-13 Rodrigo Moya <[email protected]>
  1437. * System.Data.SqlClient/SqlDataAdapter.cs (DeleteCommand,
  1438. InsertCommand, SelectCommand, UpdateCommand): removed 'new' keyword
  1439. to avoid compiler warnings.
  1440. 2002-08-12 Franklin Wise <[email protected]>
  1441. * System.Data/Constraint.cs: Implemented
  1442. * System.Data/UniqueConstraint.cs: GetHashCode() &
  1443. special case Ctor. Still need to be implemented. LAMESPEC tags
  1444. added.
  1445. * System.Data/ConstraintCollection.cs: Clear() &
  1446. AddRange() need to be finished. Several LAMESPEC tags.
  1447. * Allow Constraint collection to be created in DataTable.
  1448. * System.Data/ForeignKeyConstraint: Added a couple of
  1449. helper functions.
  1450. * System.Data/DataColumnCollection New/Added DataColumns now have
  1451. Table property set.
  1452. 2002-08-11 Rodrigo Moya <[email protected]>
  1453. * System.Data.OleDb/libgda.cs: added some GdaValue functions.
  1454. * System.Data.OleDb/OleDbCommand.cs (OpenReader): removed this
  1455. internal method, since we don't need it.
  1456. (ExecuteReader): call SetupGdaCommand before executing the command
  1457. via libgda functions.
  1458. (ExecuteScalar): implemented.
  1459. * System.Data.OleDb/OleDbDateReader.cs (OleDbDataReader): removed call
  1460. to OleDbCommand.OpenReader.
  1461. (GetBoolean): implemented.
  1462. 2002-08-08 Franklin Wise <[email protected]>
  1463. * System.Data/IDbComand.cs: IDbCommand now inherits IDisposable
  1464. * System.Data/IDbConnection.cs: IDbConnection now inherits IDisposable
  1465. * System.Data.SqlTypes/SqlCompareOptions.cs: Enum now set to correct
  1466. values.
  1467. 2002-08-06 Gonzalo Paniagua Javier <[email protected]>
  1468. * System.Data.OleDb/OleDbConnection.cs: little fixes to make it work
  1469. and don't show a warning in Open.
  1470. * System.Data.OleDb/TestOleDb.cs: added Close.
  1471. 2002-08-05 Rodrigo Moya <[email protected]>
  1472. * System.Data.OleDb/OleDbConnection.cs (ConnectionString,
  1473. ConnectionTimeout, ServerVersion, GdaConnection):
  1474. corrected style.
  1475. (OleDbConnection): call libgda.gda_init on constructor.
  1476. * System.Data.OleDb/libgda.cs (libgda): removed static constructor,
  1477. which wasn't been called.
  1478. * System.Data.OleDb/TestOleDb.cs (TestOleDb): updated to really
  1479. make some tests.
  1480. 2002-08-04 Rodrigo Moya <[email protected]>
  1481. * list: added missing System.Data.OleDb and
  1482. System.Data.Common files.
  1483. * System.Data.OleDb/ChangeLog: removed and merged with
  1484. System.Data's ChangeLog.
  1485. * System.Data.OleDb/OleDbDataAdapter.cs:
  1486. * System.Data.OleDb/OleDbPermission.cs: compilation fixes.
  1487. 2002-07-30 Rodrigo Moya <[email protected]>
  1488. * System.Data.OleDb/OleDbDataReader.cs (FieldCount): implemented.
  1489. (IsClosed, Item, RecordsAffected): implemented some properties.
  1490. * libgda.cs: added GdaDataModel methods.
  1491. 2002-07-29 Rodrigo Moya <[email protected]>
  1492. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader constructor): changed to receive
  1493. a second argument (ArrayList results).
  1494. (NextResult): implemented.
  1495. * System.Data.OleDb/OleDbCommand.cs: don't store the ArrayList of results, since we'll
  1496. pass that to the OleDbDataReader.
  1497. (OleDbCommand constructor): don't create the ArrayList of results.
  1498. (GdaResults): removed property.
  1499. (ExecuteReader): create a temporary ArrayList and pass that to the
  1500. OleDbDataReader constructor.
  1501. 2002-07-28 Rodrigo Moya <[email protected]>
  1502. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader):
  1503. (CreateParameter): implemented IDbCommand methods.
  1504. (CommandText): don't create many GdaCommand's, only one is needed.
  1505. (ExecuteNonQuery): set up the internal GDA command object.
  1506. (ExecuteReader): use correctly the unique GDA command object.
  1507. * System.Data.OleDb/libgda.cs: added new libgda calls.
  1508. 2002-07-27 Rodrigo Moya <[email protected]>
  1509. * System.Data.OleDb/OleDbConnection.cs (CreateCommand):
  1510. (BeginTransaction): implemented IDbConnection methods.
  1511. 2002-07-12 Rodrigo Moya <[email protected]>
  1512. * list: added System.Data.OleDb files to file list.
  1513. 2002-07-11 Rodrigo Moya <[email protected]>
  1514. * System.Data.OleDb/libgda.cs: added new libgda functions and some enumerations.
  1515. * System.Data.OleDb/OleDbParameter.cs (IsNullable): removed explicit implementation
  1516. of the set method for this property.
  1517. * System.Data.OleDb/OleDbDataAdapter.cs (MissingMappingAction): implemented.
  1518. (MissingSchemaAction): implemented.
  1519. 2002-07-10 Tim Coleman <[email protected]>
  1520. * System.Data.OleDb/OleDbCommandBuilder.cs: Added new methods, properties
  1521. * System.Data.OleDb/OleDbConnection.cs: Modified constructor
  1522. * System.Data.OleDb/OleDbError.cs: Added stubbs
  1523. * System.Data.OleDb/OleDbException.cs: Added stubbs
  1524. * System.Data.OleDb/OleDbInfoMessageEventArgs.cs: Added stubbs
  1525. * System.Data.OleDb/OleDbInfoMessageEventHandler.cs: style change
  1526. * System.Data.OleDb/OleDbParameter.cs: Added conversion from type to OleDbType
  1527. * System.Data.OleDb/OleDbPermission.cs: Added stubbs
  1528. * System.Data.OleDb/OleDbSchemaGuid.cs: Added stubbs
  1529. * System.Data.OleDb/OleDbTransaction.cs: New constructors, changes to methods to
  1530. support transaction nesting
  1531. * System.Data.OleDb/libgda.cs: Added my name to this file
  1532. 2002-07-09 Tim Coleman <[email protected]>
  1533. * System.Data.OleDb/OleDbCommand.cs: Style changes, added new methods
  1534. * System.Data.OleDb/OleDbConnection.cs: Style changes, added new methods
  1535. * System.Data.OleDb/OleDbDataAdapter.cs: Implementation
  1536. * System.Data.OleDb/OleDbDataReader.cs: Added stubbs
  1537. * System.Data.OleDb/OleDbErrorCollection.cs: Added stubbs, some implementation
  1538. * System.Data.OleDb/OleDbParameter.cs: Style changes, added new methods
  1539. * System.Data.OleDb/OleDbParameterCollection.cs: Style changes, added new methods
  1540. * System.Data.OleDb/OleDbPermissionAttribute.cs: Style changes, added new methods
  1541. * System.Data.OleDb/OleDbRowUpdatedEventArgs.cs: Added stubbs
  1542. * System.Data.OleDb/OleDbRowUpdatingEventArgs.cs: Added stubbs
  1543. * System.Data.OleDb/OleDbTransaction.cs: Style changes, added new methods
  1544. * System.Data.OleDb/OleDbType.cs: Fixed two typos
  1545. * System.Data.OleDb/libgda.cs: Style changes, added new methods
  1546. 2002-07-09 Tim Coleman <[email protected]>
  1547. * System.Data.build: remove restriction on System.Data.OleDb build
  1548. 2002-06-03 Rodrigo Moya <[email protected]>
  1549. * System.Data.OleDb/OleDbParameterCollection.cs (GetEnumerator, SyncRoot,
  1550. IsSynchronized): implemented.
  1551. 2002-06-02 Rodrigo Moya <[email protected]>
  1552. * System.Data.OleDb/OleDbTransaction.cs (Dispose): added missing method.
  1553. * System.Data.OleDb/OleDbCommand.cs (Clone): added missing methods.
  1554. (Parameters, Transaction, Connection): made these overload
  1555. IDbCommand's ones.
  1556. * System.Data.OleDb/OleDbParameterCollection.cs (IndexOf, Remove, RemoveAt):
  1557. call m_list methods, not own ones.
  1558. * System.Data.OleDb/OleDbParameter.cs: more implementation.
  1559. 2002-06-02 Rodrigo Moya <[email protected]>
  1560. * System.Data.OleDb/OleDbTransaction.cs (Connection, IsolationLevel, Begin,
  1561. Commit, Rollback): implemented.
  1562. (GdaConnection): added new internal property.
  1563. * System.Data.OleDb/OleDbParameter.cs:
  1564. * System.Data.OleDb/OleDbParameterCollection.cs: implemented some methods and
  1565. properties.
  1566. * System.Data.OleDb/libgda.cs: added yet more libgda API functions.
  1567. 2002-06-01 Rodrigo Moya <[email protected]>
  1568. * System.Data.OleDb/libgda.cs: added new libgda API functions.
  1569. * System.Data.OleDb/OleDbConnection.cs (Provider): implemented.
  1570. (BeginTransaction): made it overload IDbConnection methods.
  1571. (ChangeDatabase): new stub, needs some work on libgda for being
  1572. implemented.
  1573. (Clone): new stub.
  1574. (Close): implemented.
  1575. (CreateCommand): implemented.
  1576. (GetOleDbSchemaTable): new stub, until I understand what to do here.
  1577. (Open): implemented basic stuff, which is just supporting connection
  1578. strings that represent a GDA data source name. More to come.
  1579. (InfoMessage, StateChange): added events.
  1580. * System.Data.OleDb/TestOleDb.cs: test program for System.Data.OleDb.
  1581. 2002-05-29 Rodrigo Moya <[email protected]>
  1582. * System.Data.OleDb/libgda.cs: added static constructor.
  1583. (GdaClient): new static property to get the underlying GdaClient
  1584. object.
  1585. * System.Data.OleDb/OleDbConnection.cs: removed GDA initialization, which belongs to
  1586. the static 'libgda' class.
  1587. 2002-05-29 Rodrigo Moya <[email protected]>
  1588. * System.Data.OleDb/libgda.cs: static class for libgda API calls.
  1589. * System.Data.OleDb/OleDbConnection.cs: implemented constructors.
  1590. (ConnectionString, Connectiontimeout, Database, State):
  1591. implemented class properties.
  1592. (BeginTransaction): implemented.
  1593. * System.Data.OleDb/OleDbTransaction.cs: implemented protected constructors.
  1594. * System.Data.OleDb/TestGDA.cs: simple test for libgda API.
  1595. 2002-05-27 Rodrigo Moya <[email protected]>
  1596. * System.Data.OleDb/*: started System.Data.OleDb provider, based on libgda.
  1597. 2002-06-06 Rodrigo Moya <[email protected]>
  1598. * list: added missing PostgresTypes.cs file.
  1599. 2002-06-02 Francisco Jr. <[email protected]>
  1600. * System.Data.SqlClient/SqlParameterCollection.cs: implemented missing
  1601. methods.
  1602. 2002-05-30 Daniel Morgan <[email protected]>
  1603. * System.Data.SqlClient/SqlConnection.cs: modifed -
  1604. start to implement the interfaces properly and
  1605. properly doing a Close(), Dispose(), and
  1606. releasing resources
  1607. * Test/SqlSharpCli.cs: modified -
  1608. add support for MySQL in Mono.Data.MySql
  1609. and OleDb support in System.Data.OleDb. However,
  1610. the OleDb support is commented right now.
  1611. When the program starts up, a shorter help menu should
  1612. display the most important commands: help and quit
  1613. 2002-05-28 Rodrigo Moya <[email protected]>
  1614. * System.Data.build: exclude System.Data.OleDb files.
  1615. 2002-05-27 Daniel Morgan <[email protected]>
  1616. * System.Data.SqlClient/SqlCommand.cs: typo
  1617. should be CommandBehavior.KeyInfo
  1618. * Test/SqlSharpCli.cs: refactored and added a few more
  1619. features.
  1620. 2002-05-27 Tim Coleman <[email protected]>
  1621. * list: update to compile properly (add missing
  1622. files and switch path delimiter from '\' to '/').
  1623. 2002-05-26 Daniel Morgan <[email protected]>
  1624. * System.Data/DataRow.cs
  1625. * System.Data.Common/DbDataAdapter.cs: fix to
  1626. get Test/TestSqlDataAdapter.cs to work again
  1627. * Test/TestSqlDataAdapter.cs: removed comment
  1628. about SqlDataReader:NextResult() not being implemented; it
  1629. bas been implemented
  1630. 2002-05-26 Daniel Morgan <[email protected]>
  1631. * System.Data/DataRow.cs: modified
  1632. support setting of DBNull.Value
  1633. using the Item indexer this[DataColumn]
  1634. * System.Data.SqlClient/SqlCommand.cs: modified
  1635. tweaks to show TODO's for other CommandBehavior.
  1636. Set AllowDBNull column to true for IsKey row
  1637. in schema DataTable.
  1638. * System.Data.SqlClient/SqlConnection.cs: modified
  1639. if transaction is in progress when a Close() is called,
  1640. do a transaction Rollback.
  1641. 2002-05-26 Daniel Morgan <[email protected]>
  1642. * Test/SqlSharpCli.cs: added file
  1643. My new toy. SQL# is a command-line tool to enter
  1644. SQL commands and queries using Mono System.Data.
  1645. It also serves as a test for Mono System.Data.
  1646. * System.Data.SqlClient/SqlCommand.cs: modified
  1647. - ExecuteNonQuery(), ExecuteScalar(), and ExecuteReader()
  1648. should handle the results from SQL Commands and Queries.
  1649. - Internal class SqlResult should not create schema Table
  1650. for the result from a SQL Command. Also, set the RecordsRetrieved
  1651. property for SqlDataReader.
  1652. - Closing the SqlDataReader should Close() the SqlConnection for
  1653. a CommandBehavior.CloseConnection.
  1654. - Set defaults for SqlResult
  1655. * System.Data.SqlClient/SqlConnection.cs: modified -
  1656. when SqlDataReader is Close()
  1657. should Close() the SqlConnection for
  1658. a CommandBehavior.CloseConnection. Changed internal Property
  1659. from OpenReader get/set to IsReaderOpen get and created
  1660. internal methods OpenReader()/CloseReader() for SqlCommand to call.
  1661. SqlConnection needs to be prevented from doing while SqlDataReader
  1662. is being used.
  1663. * System.Data.SqlClient/SqlDataReader.cs: modified -
  1664. call SqlCommand's OpenReader() internal method. get
  1665. RecordsRetrieved from SqlResult. set/reset default
  1666. values for SqlDataReader.
  1667. * Test/PostgresTest.cs
  1668. * Test/TestExecuteScalar.cs
  1669. * Test/TestSqlDataReader.cs: modified
  1670. for the Execute...() methods in SqlCommand
  1671. to test SQL Queries and Commands
  1672. * Test/System.Data_test.build: modified
  1673. exclude new file Test/SqlSharpCli.cs from
  1674. test build
  1675. 2002-05-24 Tim Coleman <[email protected]>
  1676. * System.Data.Common/DbDataAdapter.cs: remove IDbCommands, except
  1677. for get accessors. These should be implemented in derived classes. See
  1678. SqlDataAdapter for clues.
  1679. * System.Data.SqlClient/SqlDataAdapter.cs: implement IDbDataAdapter
  1680. * System.Data.Common/DataAdapter.cs:
  1681. * System.Data.Common/DataTableMappingCollection.cs:
  1682. * System.Data.Common/DataTableMapping.cs:
  1683. * System.Data.Common/DataColumnMappingCollection.cs:
  1684. * System.Data.Common/DataColumnMapping.cs:
  1685. Properly (I hope!) implement all of the appropriate interfaces
  1686. for these classes.
  1687. 2002-05-23 Tim Coleman <[email protected]>
  1688. * System.Data.SqlClient/SqlCommand.cs: include
  1689. the BaseColumnName in the schema table. Was missed before.
  1690. * System.Data.Common/DbDataAdapter.cs: Use DataTable
  1691. mappings so that the DataSet and DataTable are more closely tied.
  1692. Get schema information from the DataTable using GetSchemaTable ()
  1693. Various other little fixes
  1694. * System.Data.Common/DataColumnMappingCollection.cs:
  1695. * System.Data.Common/DataTableMapping.cs:
  1696. * System.Data.Common/DataTableMappingCollection.cs: Some
  1697. implementation, enough to be used by DbDataAdapter.
  1698. 2002-05-23 Daniel Morgan <[email protected]>
  1699. * System.Data.SqlClient/SqlCommand.cs: set
  1700. the "ProviderType" to the PostgreSQL type oid
  1701. * System.Data.SqlClient/SqlDataReader.cs: fix
  1702. for various properties and methods that
  1703. return meta data: Item indexers this[name] and this[index],
  1704. GetFieldType, GetName, and GetOrdinal. SqlDataAdapter
  1705. should work again.
  1706. 2002-05-22 Daniel Morgan <[email protected]>
  1707. * System.Data/DataRow.cs: change suggested
  1708. by tim: in Item indexer, do an EndEdit()
  1709. * System.Data.SqlClient/SqlCommand.cs: more
  1710. fixes to SqlResult. After setting each item in
  1711. the DataRow, do an AcceptChanges() to commit
  1712. the changes in the DataRow. For DataType, use a Type
  1713. of System.String since System.Type nor System.Object
  1714. seems to work.
  1715. * Test/TestSqlDataReader.cs
  1716. * Test/PostgresTest.cs: updated to to be on
  1717. the way schema table is suppose to work
  1718. 2002-05-22 Daniel Morgan <[email protected]>
  1719. * System.Data.SqlClient/SqlCommand.cs: more work on
  1720. building the schema table
  1721. 2002-05-22 Tim Coleman <[email protected]>
  1722. * System.Data.SqlClient/SqlCommand.cs: preliminary work
  1723. on getting the schema table correctly built.
  1724. 2002-05-21 Daniel Morgan <[email protected]>
  1725. * System.Data.SqlClient/ParmUtil.cs: added file - to
  1726. provide utility for conversion of input parameters
  1727. * System.Data.SqlClient/PostgresTypes.cs: added file -
  1728. moved the PostgreHelper class to here. May eventually
  1729. move the internal class PostgresTypes that's inside the
  1730. SqlConnection to here as well.
  1731. Handling of PostgreSQL <-> .NET types need to be though
  1732. out more. Also, the PostgreHelper has a method to convert
  1733. from .NET types to a string which can be put into used in
  1734. an SQL statement to execute against a PostgreSQL database.
  1735. This is the beginnings of parameters support. It currently
  1736. only supports input parameters. Still need to do output,
  1737. input/output, and return parameters.
  1738. * Test/TestSqlParameters.cs: new test to test the input
  1739. parameters in System.Data.SqlClient against a
  1740. PostgreSQL db.
  1741. * System.Data.SqlClient/PostgresLibrary.cs: moved
  1742. PostgresHelper class to file PostgresTypes.cs. Also
  1743. moved struct PostgresType there too.
  1744. * System.Data.SqlClient/SqlCommand.cs: added input
  1745. parameters support
  1746. * System.Data.SqlClient/SqlParameter.cs: got
  1747. SqlParameter to work
  1748. * System.Data.SqlClient/SqlParameterCollection.cs: got
  1749. SqlParameterCollection to work
  1750. * Test/System.Data_test.build: added files to exclude
  1751. from test build
  1752. * System.Data.SqlClient/SqlConnection.cs: release resources
  1753. no longer used
  1754. 2002-05-18 Daniel Morgan <[email protected]>
  1755. * System.Xml: added directory for classes with namespace
  1756. System.Xml to go into the System.Data.dll assembly
  1757. * System.Xml/XmlDataDocument: added file
  1758. for stubbed concrete class XmlDataDocument which
  1759. inherits from XmlDocument. Its purpose is to provide
  1760. a W3C XML DOM Document for relational data and interacting
  1761. with a DataSet
  1762. 2002-05-18 Daniel Morgan <[email protected]>
  1763. * System.Data.SqlClient/SqlCommand.cs: handle CommandTypes
  1764. Text, TableDirect, and StoredProcedure
  1765. * Test/PostgresTest.cs: changed call to version()
  1766. stored procedure to use the CommandType of StoredProcedure
  1767. * Test/TestSqlDataReader.cs: test all the CommandTypes
  1768. 2002-05-18 Daniel Morgan <[email protected]>
  1769. * System.Data.build: took out all excluded
  1770. files except the ones in the Test directory
  1771. because all files compile now. It does not
  1772. mean they all work or have implementations
  1773. though.
  1774. * System.Data/DataRelationCollection.cs
  1775. * System.Data/DataTableRelationCollection.cs
  1776. * System.Data/InternalDataCollectionBase.cs
  1777. * System.Data.Common/DbDataPermission.cs
  1778. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs
  1779. * System.Data.SqlClient/SqlClientPermission.cs
  1780. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: changes
  1781. to get all System.Data* files to compile.
  1782. * System.Data.SqlClient/SqlCommand.cs: started coding
  1783. to prevent SqlConnection and SqlCommand from doing
  1784. anyting while fetching data using SqlDataReader. Also,
  1785. started coding to undo this prevention once the
  1786. SqlDataReader is closed.
  1787. * System.Data.SqlClient/SqlConnection.cs: get database server
  1788. version. Started coding to prevent connection from
  1789. doing anything while fetching data and undo once the reader
  1790. is closed. Include events SqlInfoMessage and StateChange.
  1791. * System.Data.SqlClient/SqlDataReader.cs: start coding to
  1792. prevent connection and command from doing anything while
  1793. fetching data, and undo when closed.
  1794. * Test/PostgresTest.cs: added test to get ServerVersion
  1795. property from SqlConnection
  1796. 2002-05-18 Tim Coleman <[email protected]>
  1797. * System.Data/DataRow.cs: More implementation,
  1798. as well as boundary checks and small semantic
  1799. repairs
  1800. 2002-05-18 Tim Coleman <[email protected]>
  1801. * System.Data/DataRow.cs: Try to reduce memory
  1802. usage by only creating the original and proposed
  1803. arrays as required in BeginEdit, and then destroying
  1804. proposed during EndEdit, and original during AcceptChanges.
  1805. * System.Data.Common/DbDataAdapter.cs: Make the
  1806. startRecord and maxRecords parameters work correctly.
  1807. 2002-05-18 Tim Coleman <[email protected]>
  1808. * System.Data/DataRow.cs: Move the null check in
  1809. ItemArray set to above the Invalid Cast check, so
  1810. that we don't get null reference exceptions.
  1811. 2002-05-17 Daniel Morgan <[email protected]>
  1812. * System.Data.SqlClient/PostgresLibrary.cs: handle
  1813. data value from database being NULL
  1814. * System.Data.SqlClient/SqlCommand.cs: for ExecuteReader,
  1815. allow multiple result sets. Added new internal class
  1816. SqlResult to pass result set data from SqlCommand
  1817. to SqlDataReader.
  1818. * System.Data.SqlClient/SqlDataReader.cs: allow
  1819. multiple result sets.
  1820. * System.Data.SqlClient/SqlConnection.cs: moved
  1821. things around. Implement IDisposable.
  1822. * Test/TestSqlDataReader.cs: test for execution
  1823. of multiple result sets and display the results
  1824. of these multiple results sets
  1825. * Test/TestSqlDataAdapter.cs: tweaks
  1826. 2002-05-17 Tim Coleman <[email protected]>
  1827. * System.Data.Common/DbDataAdapter.cs:
  1828. - More implementation of Fill methods
  1829. - Get rid of isDirty flag, because we can just check
  1830. if the table exists
  1831. - Do *not* remove DataTables before Filling them
  1832. - Implicitly open the connection before doing a Fill
  1833. if it does not exist.
  1834. * System.Data.SqlClient/SqlDataAdapter.cs:
  1835. - Minor fixup
  1836. * System.Data/DataTableCollection.cs:
  1837. - Add DataSet to internal, undocumented constructor
  1838. - When a table is created, set its DataSet property
  1839. - Default table name for creation is "Table1" (see .NET)
  1840. - Inherit the ArrayList list from InternalDataCollecitonBase
  1841. and maintain a hashtable between table names and
  1842. DataTables
  1843. * System.Data/DataTable.cs:
  1844. - Add internal dataSet field. This is used by
  1845. DataTableCollection when the DataTable is constructed.
  1846. * System.Data/DataSet.cs:
  1847. - Pass a reference to the DataSet when constructing the
  1848. DataTableCollection.
  1849. 2002-05-16 Tim Coleman <[email protected]>
  1850. * System.Data.Common/DbDataAdapter.cs:
  1851. Use table.Rows.Add (itemArray) instead of
  1852. table.Rows.Add (thisRow) to provide better
  1853. abstraction.
  1854. * System.Data/DataRowCollection.cs:
  1855. Some implementation of this class.
  1856. * System.Data/InternalDataCollectionBase.cs:
  1857. Some implementation. Most notably, this now
  1858. has an enumerator so we can use foreach (DataRow row in table.Rows)
  1859. in the test classes.
  1860. * System.Data/DataTable.cs:
  1861. Since DataRowCollection now accepts a DataTable in
  1862. its internal constructor, we must pass one in.
  1863. 2002-05-16 Daniel Morgan <[email protected]>
  1864. * Test/TestSqlDataAdapter.cs: added new test
  1865. for SqlDataAdapter, DataSet, DataTableCollection, DataTable,
  1866. DataRowCollection, and DataRow. It tests retrieving data
  1867. based on a SQL SELECT query. This test is based on Tim Coleman's
  1868. test he sent to me.
  1869. 2002-05-16 Tim Coleman <[email protected]>
  1870. * System.Data.Common/DbDataAdapter.cs:
  1871. Use table.Rows.Add (thisRow) instead of
  1872. table.ImportRow (thisRow)
  1873. * System.Data/DataRowCollection.cs:
  1874. Construct the ArrayList before using it
  1875. 2002-05-16 Tim Coleman <[email protected]>
  1876. * System.Data/DataTable.cs:
  1877. Construct the DataRowCollection in the DataTable
  1878. constructor. Otherwise, it's a null reference.
  1879. 2002-05-16 Tim Coleman <[email protected]>
  1880. * System.Data.SqlClient/SqlDataReader.cs:
  1881. Modify GetValues to use Array.Copy() to copy
  1882. the results from fields to values, rather than
  1883. an assignment, which results in loss of data.
  1884. 2002-05-16 Tim Coleman <[email protected]>
  1885. * System.Data/DataRow.cs:
  1886. More implementation and documentation. It should
  1887. work more like expected, although there is no way
  1888. to demonstrate this well yet. DataTable requires
  1889. more work.
  1890. 2002-05-15 Tim Coleman <[email protected]>
  1891. * System.Data/DataRow.cs:
  1892. Minor tweaks as I determine exactly how to
  1893. implement this class.
  1894. 2002-05-14 Duncan Mak <[email protected]>
  1895. * System.Data/DataTable.cs (NewRow): Added missing paren to fix build.
  1896. 2002-05-14 Tim Coleman
  1897. * System.Data/DataRow.cs:
  1898. * System.Data/DataRowBuilder.cs:
  1899. * System.Data/DataTable.cs:
  1900. More implementation of these classes. DataRow
  1901. can now (possibly) do some useful things.
  1902. Still not sure what DataRowBuilder is all about,
  1903. other than passing a DataTable in.
  1904. 2002-05-14 Tim Coleman
  1905. * System.Data/DataRowBuilder.cs:
  1906. Add stubb for this internal class.
  1907. 2002-05-13 Tim Coleman
  1908. * System.Data.Common/DbDataAdapter.cs:
  1909. The maxRecords check was not correct.
  1910. 2002-05-13 Tim Coleman
  1911. * System.Data/DataTableCollection.cs:
  1912. Fix an issue when adding a DataTable and size == 0.
  1913. Now explicitly checks if size > 0 before doing Array.Copy ()
  1914. * System.Data.Common/DbDataAdapter.cs:
  1915. Move closer to a working implementation.
  1916. Make the IDbCommand fields protected so that they can
  1917. be inherited.
  1918. * System.Data.SqlClient/SqlDataAdapter.cs:
  1919. This should inherit the IDbCommands instead of having its
  1920. own. An explicit cast is used to force conversion between
  1921. IDbCommand and SqlCommand
  1922. 2002-05-13 Tim Coleman
  1923. * System.Data.Common/DataTableMappingCollection.cs:
  1924. Some implementation to allow progress with DbDataAdapter
  1925. 2002-05-13 Tim Coleman
  1926. * System.Data.Common/DbDataAdapter.cs:
  1927. Modify to not break compile.
  1928. 2002-05-13 Tim Coleman
  1929. * System.Data.build:
  1930. include SqlDataAdapter, SqlRowUpdatedEventArgs,
  1931. SqlRowUpdatingEventArgs, SqlRowUpdatedEventHandler,
  1932. SqlRowUpdatingEventHandler in the build.
  1933. 2002-05-13 Tim Coleman
  1934. * System.Data.Common/DbDataAdapter.cs:
  1935. More implementation.
  1936. * System.Data.Common/DataAdapter.cs:
  1937. Correction of some of the stubbing, as well as a
  1938. little bit more implementation
  1939. 2002-05-11 Tim Coleman
  1940. * System.Data.SqlClient/SqlDataAdapter.cs:
  1941. * System.Data.Common/DbDataAdapter.cs:
  1942. Moved methods that weren't supposed to
  1943. be in SqlDataAdapter out. They should be implemented
  1944. in DbDataAdapter.
  1945. 2002-05-11 Tim Coleman
  1946. * System.Data.SqlClient/SqlDataAdapter.cs:
  1947. some implementation of this class. Note
  1948. that none of the functionality has been
  1949. tested yet, but I felt it should be checked
  1950. in at this point as it compiles.
  1951. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  1952. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  1953. Modified so that they will compile properly.
  1954. Needed to include SqlDataAdapter in the build.
  1955. 2002-05-11 Rodrigo Moya <[email protected]>
  1956. * System.Data/DataTable.cs (Clear): implemented.
  1957. (DataTable): removed repeated code in constructors, and call the
  1958. basic constructor from the others.
  1959. * System.Data/DataColumn.cs: some tweaks.
  1960. * System.Data/DataRow.cs (RowState): implemented.
  1961. (CancelEdit): set rowState property back to Unchanged.
  1962. (RejectChanges): call CancelEdit.
  1963. (Delete): set rowState to Deleted.
  1964. 2002-05-11 Daniel Morgan <[email protected]>
  1965. * System.Data.build: added copy of System.Data.dll to Test directory
  1966. for easy testing. Also, added clean for it too.
  1967. * System.Data.SqlClient/PostgresLibrary.cs: changed setting of boolean
  1968. from PostgreSQL data type to .NET type.
  1969. * System.Data.SqlClient/SqlDataReader.cs: beginnings
  1970. handling of a NULL value from the database
  1971. * Test/PostgresTest.cs: added tests for NULL values retrieved
  1972. from the database
  1973. * Test/ReadPostgresData.cs
  1974. * Test/TestExecuteScalar.cs
  1975. * Test/TestSqlDataReader.cs
  1976. * Test/TestSqlException.cs
  1977. * Test/TestSqlIsolationLevel.cs: updated tests to use databas user
  1978. "postgres". These tests may eventually be removed since they
  1979. are not flexible.
  1980. 2002-05-10 Rodrigo Moya <[email protected]>
  1981. * System.Data.build: removed reference to non-existant
  1982. TestDataColumn.cs file.
  1983. * System.Data/DataSet.cs: added some implementation.
  1984. 2002-05-09 Daniel Morgan <[email protected]>
  1985. * System.Data.SqlClient/PostgresLibrary.cs: got
  1986. PostgreSQL data types time, date, timestamp (DateTime like)
  1987. mapped to .NET System.DateTime working based
  1988. on ISO DateTime formatting "YYYY-MM-DD hh:mi:ss.ms"
  1989. Also mapped pg type boolean to .net Boolean
  1990. * SqlClient/SqlConnection.cs: run SQL command to set
  1991. Date style to ISO
  1992. * Test/PostgresTest.cs: added test for an UPDATE SQL command,
  1993. added tests for aggregates min(), max(), sum(), count(). could
  1994. not get avg() to work due to some formatting error; someone claimed
  1995. that it was my locale settings. added tests for SELECT of columns
  1996. of type boolean, float, double, date, time, and timestamp. They
  1997. have not been fully tested, but its a start.
  1998. 2002-05-09 Tim Coleman <[email protected]>
  1999. * System.Data.SqlTypes/SqlDecimal.cs: Implementations of
  2000. addition, subtraction, and multiplication for the
  2001. SqlDecimal type, as well as modification of some other
  2002. operations. More to come on this one.
  2003. 2002-05-08 Rodrigo Moya <[email protected]>
  2004. * Test/System.Data_test.build: excluded TestDataColumn, which
  2005. should be replaced with a nunit test.
  2006. * Test/TestDataColumn.cs: added basic test for DataColumn.cs.
  2007. 2002-05-07 Tim Coleman <[email protected]>
  2008. * SqlBinary.cs:
  2009. * SqlBoolean.cs:
  2010. * SqlByte.cs:
  2011. * SqlDateTime.cs:
  2012. * SqlDecimal.cs:
  2013. * SqlDouble.cs:
  2014. * SqlGuid.cs:
  2015. * SqlInt16.cs:
  2016. * SqlInt32.cs:
  2017. * SqlInt64.cs:
  2018. * SqlMoney.cs:
  2019. * SqlSingle.cs:
  2020. * SqlString.cs:
  2021. Fix the broken build I made before. Bad
  2022. me.
  2023. 2002-05-07 Tim Coleman <[email protected]>
  2024. * SqlString.cs:
  2025. Fix a symantic error I made in SqlString
  2026. Equals where I copied and pasted wrongly
  2027. 2002-05-07 Tim Coleman <[email protected]>
  2028. * INullable.cs:
  2029. * SqlBinary.cs:
  2030. * SqlBoolean.cs:
  2031. * SqlByte.cs:
  2032. * SqlCompareOptions.cs:
  2033. * SqlDateTime.cs:
  2034. * SqlDecimal.cs:
  2035. * SqlDouble.cs:
  2036. * SqlGuid.cs:
  2037. * SqlInt16.cs:
  2038. * SqlInt32.cs:
  2039. * SqlInt64.cs:
  2040. * SqlMoney.cs:
  2041. * SqlSingle.cs:
  2042. * SqlString.cs:
  2043. Implement CompareTo, Equals, and String conversions
  2044. for many types
  2045. 2002-05-05 Daniel Morgan <[email protected]>
  2046. * Test/PostgresTest.cs: modified to run completely. There
  2047. are many TODOs in System.Data, so not all data types are
  2048. included in the SELECT SQL query. Also, I made it to where
  2049. it would connect
  2050. using "host=localhost;dbname=test;user=postgres"
  2051. instead of my userid and password. When more types are included,
  2052. update this test.
  2053. 2002-05-05 Daniel Morgan <[email protected]>
  2054. * Test/PostgresTest.cs: added - ported
  2055. libgda postgres-test.c originally by
  2056. Gonzalo Paniagua Javier <[email protected]>
  2057. to C#.
  2058. 2002-05-05 Tim Coleman <[email protected]>
  2059. * System.Data.SqlTypes/SqlBinary.cs:
  2060. * System.Data.SqlTypes/SqlBoolean.cs:
  2061. * System.Data.SqlTypes/SqlByte.cs:
  2062. * System.Data.SqlTypes/SqlDateTime.cs:
  2063. * System.Data.SqlTypes/SqlDecimal.cs:
  2064. * System.Data.SqlTypes/SqlDouble.cs:
  2065. * System.Data.SqlTypes/SqlGuid.cs:
  2066. * System.Data.SqlTypes/SqlInt16.cs:
  2067. * System.Data.SqlTypes/SqlInt32.cs:
  2068. * System.Data.SqlTypes/SqlInt64.cs:
  2069. * System.Data.SqlTypes/SqlMoney.cs:
  2070. * System.Data.SqlTypes/SqlSingle.cs:
  2071. * System.Data.SqlTypes/SqlString.cs:
  2072. More implementation, and code clean-up for consistency.
  2073. Also, I had implemented many conversions as explicit
  2074. that should have been implicit. This should remove
  2075. many of the red X's and green pluses from the
  2076. System.Data.SqlTypes namespace.
  2077. 2002-05-05 Miguel de Icaza <[email protected]>
  2078. * System.Data/DataSet.cs: Remove [Serializable] attributes from
  2079. methods, those only apply to structs or classes.
  2080. Stub out ISerializable, ISupportInitialize, and IListSource methods
  2081. * System.Data/DataRowView.cs: Stub out interface methods for
  2082. IEditableObject, ICustomTypeDescriptor and IDataErrorInfo
  2083. * System.Data/DataView.cs: Comment out non-implemented
  2084. interfaces.
  2085. * System.Data/DataViewSettingsCollection.cs: Type cast variables
  2086. to the correct type to make it compile.
  2087. * System.Data/DataViewSettings.cs: remove reference to
  2088. non-existance type ApplyDefaultSort, it is a boolean.
  2089. 2002-05-05 Tim Coleman <[email protected]>
  2090. * System.Data.SqlTypes/SqlBinary.cs:
  2091. * System.Data.SqlTypes/SqlBoolean.cs:
  2092. * System.Data.SqlTypes/SqlByte.cs:
  2093. * System.Data.SqlTypes/SqlDecimal.cs:
  2094. * System.Data.SqlTypes/SqlDouble.cs:
  2095. * System.Data.SqlTypes/SqlGuid.cs:
  2096. * System.Data.SqlTypes/SqlInt16.cs:
  2097. * System.Data.SqlTypes/SqlInt32.cs:
  2098. * System.Data.SqlTypes/SqlInt64.cs:
  2099. * System.Data.SqlTypes/SqlMoney.cs:
  2100. * System.Data.SqlTypes/SqlSingle.cs:
  2101. * System.Data.SqlTypes/SqlString.cs:
  2102. Various fixes, including adding the SqlNullValueException
  2103. when trying to retrieve the value of a null SqlType,
  2104. and when casting values, a Null of type A converts to a
  2105. Null of type B.
  2106. 2002-05-04 Daniel Morgan <[email protected]>
  2107. * System.Data.SqlClient/PostgresLibrary.cs
  2108. * System.Data.SqlClient/SqlCommand.cs
  2109. * System.Data.SqlClient/SqlConnection.cs
  2110. * System.Data.SqlClient/SqlDataReader.cs
  2111. oid should not be hard coded because they
  2112. can change from one version of PostgreSQL
  2113. to the next. Use the typname's instead.
  2114. The PostgreSQL type data retrieves
  2115. at database connection time. Any unimplemented
  2116. types just default to string. These were things
  2117. suggested by Gonzalo.
  2118. * Test/ReadPostgresData.cs - stuff
  2119. * Test/TestSqlDataReader.cs - stuff
  2120. * System.Data.SqlTypes/SqlInt32.cs - added a using
  2121. 2002-05-03 Tim Coleman <[email protected]>
  2122. * System.Data.build: Fix the build so that test depends on build
  2123. 2002-05-03 Tim Coleman <[email protected]>
  2124. * System.Data.SqlTypes/SqlByte.cs:
  2125. * System.Data.SqlTypes/SqlDateTime.cs:
  2126. * System.Data.SqlTypes/SqlDecimal.cs:
  2127. * System.Data.SqlTypes/SqlDouble.cs:
  2128. * System.Data.SqlTypes/SqlGuid.cs:
  2129. * System.Data.SqlTypes/SqlInt16.cs:
  2130. * System.Data.SqlTypes/SqlInt64.cs:
  2131. * System.Data.SqlTypes/SqlMoney.cs:
  2132. * System.Data.SqlTypes/SqlSingle.cs:
  2133. These files were mysteriously excluded from the last
  2134. patch I made and sent to Rodrigo
  2135. * System.Data.build: include the System.Data.SqlTypes in the build
  2136. 2002-05-03 Daniel Morgan <[email protected]>
  2137. * System.Data.build: removed comments
  2138. * System.Data.SqlClient/PostgresLibrary.cs: changed
  2139. the hard-coded PostgreSQL oid type int's to using an
  2140. enum. Also, added PostgreSQL bpchar (character) type.
  2141. * Test/TestSqlDataReader.cs: updated test
  2142. to include new bpchar PostgreSQL type
  2143. 2002-05-03 Rodrigo Moya <[email protected]>
  2144. * System.Data.SqlTypes/SqlBinary.cs:
  2145. * System.Data.SqlTypes/SqlBoolean.cs:
  2146. * System.Data.SqlTypes/SqlInt32.cs:
  2147. * System.Data.SqlTypes/SqlString.cs: more implementation, by
  2148. Tim Coleman <[email protected]>.
  2149. 2002-05-03 Daniel Morgan <[email protected]>
  2150. * Test/TestExecuteScalar.cs: added test for
  2151. method ExecuteScalar in class SqlCommand.
  2152. * System.Data/DataColumnCollection.cs - it should
  2153. inherit properties from base InternalDataCollectionBase
  2154. and use them instead of overriding them, such as, List.
  2155. * System.Data/DataColumn.cs
  2156. * System.Data/DataTable.cs: tweaks to retrieve
  2157. meta data from the database
  2158. * System.Data.SqlClient/PostgresLibrary.cs -
  2159. added method OidToType to convert PostgreSQL oid type
  2160. to System.Type. Renamed method OidTypeToSystem
  2161. to ConvertPgTypeToSystem for converting the data value
  2162. from a PostgreSQL type to a .NET System type.
  2163. * System.Data.SqlClient/SqlCommand.cs: implemented
  2164. method ExecuteReader which returns a SqlDataReader
  2165. for a light forward only read only result set.
  2166. It works on types int4 ==> Int32 and
  2167. varchar ==> String. Other types
  2168. will come later.
  2169. * System.Data.SqlClient/SqlConnection.cs: added comment
  2170. * System.Data.SqlClient/SqlDataReader.cs: implemented
  2171. class. It works, but still lots to do.
  2172. * Test/ReadPostgresData.cs: stuff
  2173. * Test/TestSqlDataReader.cs: updated test for SqlDataReader
  2174. to display meta data and the data
  2175. 2002-05-03 Duncan Mak <[email protected]>
  2176. * TODO: Took out all the Exceptions. They should be all done now.
  2177. * System.Data/ConstraintException.cs:
  2178. * System.Data/DBConcurrencyException.cs:
  2179. * System.Data/DataException.cs:
  2180. * System.Data/DeletedRowInaccessibleException.cs:
  2181. * System.Data/DuplicateNameException.cs:
  2182. * System.Data/EvaluateException.cs:
  2183. * System.Data/InRowChangingEventException.cs:
  2184. * System.Data/InvalidConstraintException.cs:
  2185. * System.Data/InvalidExpressionException.cs:
  2186. * System.Data/MissingPrimaryKeyException.cs:
  2187. * System.Data/NoNullAllowedException.cs:
  2188. * System.Data/ReadOnlyException.cs:
  2189. * System.Data/RowNotInTableException.cs:
  2190. * System.Data/StrongTypingException.cs:
  2191. * System.Data/SyntaxErrorException.cs:
  2192. * System.Data/TypeDataSetGeneratorException.cs:
  2193. * System.Data/VersionNotFoundException.cs: Added to CVS.
  2194. * System.Data.SqlTypes/SqlNullValueException.cs:
  2195. * System.Data.SqlTypes/SqlTruncateException.cs:
  2196. * System.Data.SqlTypes/SqlTypeException.cs: Added to CVS.
  2197. 2002-05-02 Rodrigo Moya <[email protected]>
  2198. * System.Data/DataViewSettingCollection.cs: implemented.
  2199. * System.Data/DataRowView.cs: new stubs.
  2200. * System.Data.SqlTypes/SqlByte.cs:
  2201. * System.Data.SqlTypes/SqlDateTime.cs:
  2202. * System.Data.SqlTypes/SqlDecimal.cs:
  2203. * System.Data.SqlTypes/SqlDouble.cs:
  2204. * System.Data.SqlTypes/SqlGuid.cs:
  2205. * System.Data.SqlTypes/SqlInt16.cs:
  2206. * System.Data.SqlTypes/SqlInt64.cs:
  2207. * System.Data.SqlTypes/SqlMoney.cs:
  2208. * System.Data.SqlTypes/SqlSingle.cs: new stubs, contributed
  2209. by Tim Coleman <[email protected]>
  2210. * System.Data.build: excluded newly-added files.
  2211. 2002-05-02 Daniel Morgan <[email protected]>
  2212. * System.Data.SqlClient/PostgresLibrary.cs: included new
  2213. internal class that will be a helper class in using
  2214. PostgreSQL. PostgresLibrary is used for the
  2215. pinvoke methods to the PostgreSQL Client
  2216. native C library libpq while the class PostgresHelper
  2217. is used for wrapper or helper methods. It currently only
  2218. has one static method OidTypeToSystem in converting
  2219. PostgreSQL types to .NET System.<type>s, such as,
  2220. a PostgreSQL int8 becomes a .NET System.Int64.
  2221. Only a few types have been added, such as, int2,
  2222. int4, int8, varchar, text, bool, and char. Other types
  2223. will come later.
  2224. * System.Data.SqlClient/SqlCommand.cs: implemented
  2225. method ExecuteScalar which allows us to do aggregate
  2226. functions, such as, count, avg, min, max, and sum. We
  2227. also are able to retrieve the result, convert it to the .NET type
  2228. as an object. The user of the returned object must explicitly cast.
  2229. * Test/ReadPostgresData.cs: updated sample
  2230. to help us learn to retrieve data in System.Data.SqlClient
  2231. classes
  2232. 2002-05-01 Daniel Morgan <[email protected]>
  2233. * System.Data.build: added /nowarn: nnnn arguments
  2234. so you will not get a ton of warnings. The warnings
  2235. being excluded are: 1595, 0067, 0109, 0169, and 0649
  2236. 2002-05-01 Daniel Morgan <[email protected]>
  2237. * System.Data.build: modified to exclude more
  2238. files from the build
  2239. 2002-05-01 Rodrigo Moya <[email protected]>
  2240. * System.Data.SqlClient/SqlClientPermission.cs: added missing
  2241. 'using's.
  2242. * System.Data/MergeFailedEventArgs.cs: new class, contributed
  2243. by John Dugaw <[email protected]>.
  2244. * System.Data.build: excluded new files from build.
  2245. 2002-04-29 Daniel Morgan <[email protected]>
  2246. * Test/ReadPostgresData.cs: added - Uses the
  2247. PostgresLibrary to retrieve a recordset.
  2248. This is not meant to be used in Production, but as a
  2249. learning aid in coding
  2250. class System.Data.SqlClient.SqlDataReader.
  2251. This sample does work.
  2252. * Test/TestSqlDataReader.cs: added - used
  2253. to test SqlDataReader (does not work yet)
  2254. Forgot to add to ChangeLog on last commit.
  2255. 2002-04-28 Rodrigo Moya <[email protected]>
  2256. * System.Data/DataViewSetting.cs: new class.
  2257. 2002-04-28 Rodrigo Moya <[email protected]>
  2258. * System.Data/DataViewManager.cs: new class.
  2259. * System.Data.SqlTypes/INullable.cs: properties for interfaces
  2260. don't have implementation.
  2261. * System.Data.SqlTypes/SqlInt32.cs:
  2262. * System.Data.SqlTypes/SqlString.cs:
  2263. * System.Data.SqlTypes/SqlBoolean.cs: removed destructor, since
  2264. these are strctures.
  2265. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: added
  2266. missing 'using's.
  2267. 2002-04-28 Rodrigo Moya <[email protected]>
  2268. * System.Data/DataTableRelationCollection.cs: use 'new' keyword
  2269. for correctly hiding parent class' members.
  2270. (AddRange): use 'override' keyword on overriden method.
  2271. (Clear): likewise.
  2272. (Contains): likewise.
  2273. (IndexOf): likewise.
  2274. (OnCollectionChanged): likewise.
  2275. (OnCollectionChanging): likewise.
  2276. (RemoveCore): likewise.
  2277. * System.Data/DataColumnCollection.cs: use 'new' keyword.
  2278. * System.Data/DataSet.cs: added missing 'using's.
  2279. 2002-04-28 Rodrigo Moya <[email protected]>
  2280. * System.Data/DataSet.cs:
  2281. * System.Data/DataTableCollection.cs:
  2282. * System.Data/DataView.cs: compilation fixes on Linux.
  2283. 2002-04-28 Daniel Morgan <[email protected]>
  2284. * System.Data/DataRelation.cs
  2285. * System.Data/ForeignKeyConstraint.cs
  2286. * System.Data/UniqueConstraint.cs: added more stubs
  2287. * System.Data/DataTableRelationCollection.cs: added back to cvs
  2288. and modified for compile errors. DataRelationCollection is an
  2289. abstract class and there must be a class that implements for
  2290. DataTable/DataSet. DataTableRelationCollection was changed
  2291. to an internal class.
  2292. * System.Data.build: modified - new files added
  2293. also wanted to include files/classes in the build
  2294. so we can get a compilable forward read only result set.
  2295. It compiles now using csc/nant with warnings, but this
  2296. is a start for adding functionality for the result set.
  2297. Classes associated with/and DataSet are still excluded.
  2298. * TODO: modified - updated to do list for System.Data
  2299. * System.Data/Constraint.cs
  2300. * System.Data/ConstraintCollection.cs
  2301. * System.Data/DataRelationCollection.cs
  2302. * System.Data/DataRow.cs
  2303. * System.Data/DataRowChangeEventArgs.cs
  2304. * System.Data/DataRowCollection.cs
  2305. * System.Data/DataTable.cs
  2306. * System.Data/DataTableCollection.cs
  2307. * System.Data/InternalDataCollectionBase.cs
  2308. * System.Data/PropertyCollection.cs: modified -
  2309. changes to compile SqlDataReader/DataTable and
  2310. dependencies
  2311. * System.Data/IDbCommand.cs
  2312. * System.Data.SqlClient/SqlCommand.cs: modified -
  2313. un-commented overloaded methods ExecuteReader
  2314. which returns a SqlDataReader
  2315. 2002-04-28 Rodrigo Moya <[email protected]>
  2316. * System.Data/DataTableCollection.cs: more implementation.
  2317. (Count): added 'override' keyword, as pointer out by Martin.
  2318. * System.Data.Common/DataColumnMappingCollection.cs (Add, AddRange):
  2319. only call Array.Copy when there is really stuff to be copied.
  2320. (CopyTo): don't create the temporary array, it's not needed.
  2321. * System.Data.build: excluded newly added file from build.
  2322. 2002-04-27 Rodrigo Moya <[email protected]>
  2323. * System.Data/DataTableRelationCollection.cs: removed, it's not
  2324. on MS SDK documentation.
  2325. * System.Data/DataTableCollection.cs: new class.
  2326. 2002-04-27 Daniel Morgan <[email protected]>
  2327. * System.Data/DataRowChangeEventArgs.cs
  2328. * System.Data/DataRowCollection.cs
  2329. * System.Data/DataView.cs
  2330. * System.Data/PropertyCollection.cs: added new stubs
  2331. * System.Data.build: modified - added new files to exclude
  2332. from build
  2333. * TODO: modified - removed files from TODO list
  2334. that were stubbed above
  2335. * System.Data/DataColumn.cs
  2336. * System.Data/DataRow.cs: modified - various tweaks
  2337. and added internal method SetTable to set the reference
  2338. to a DataTable
  2339. * System.Data/DataSet.cs: modified - class was not
  2340. completely stubbed.
  2341. * System.Data/DataTable.cs: modified - temporarily commented
  2342. DataSet and DataView references - trying to compile a SqlDataReader,
  2343. DataTable, and dependencies for a forward read-only result set.
  2344. SqlDataAdapter, DataSet, and DataView will come later once we can get
  2345. a forward read only result set working.
  2346. * System.Data/IDataRecord.cs: modified - source code lines should
  2347. not be > 80
  2348. * System.Data/InternalDataCollectionBase.cs: modified - started
  2349. implementing this base class for collection of data rows,
  2350. columns, tables, relations, and constraints
  2351. * System.Data.SqlClient/SqlException.cs: modified -
  2352. call base(message) so a unhandled exception displays
  2353. the message of a SQL error instead of the
  2354. default SystemException message
  2355. * Test/TestSqlException.cs: modified -
  2356. handle the rollback properly for a SqlException on a
  2357. failure to connect
  2358. 2002-04-23 Daniel Morgan <[email protected]>
  2359. * System.Data.build: modified - added new
  2360. files to exclude from build
  2361. * System.Data/Constraint.cs
  2362. * System.Data/ConstraintCollection.cs
  2363. * System.Data/InternalDataCollectionBase.cs: added -
  2364. stubs which are needed to build DataTable.cs
  2365. * TODO: modified - added more classes TODO and
  2366. added more stuff TODO, such as, create script
  2367. to create test database monotestdb for testing
  2368. classes in System.Data
  2369. 2002-04-23 Rodrigo Moya <[email protected]>
  2370. * System.Data.Common/DataAdapter.cs:
  2371. * System.Data.Common/DataColumnMappingCollection.cs:
  2372. * System.Data.Common/DataTableMappingCollection.cs:
  2373. * System.Data.Common/DbDataPermission.cs:
  2374. * System.Data.Common/DbDataPermissionAttribute.cs: some
  2375. compilation errors fixed.
  2376. 2002-04-23 Daniel Morgan <[email protected]>
  2377. * TODO: modified - added classes TODO, and
  2378. a poor attempt at System.Data plan
  2379. 2002-04-23 Daniel Morgan <[email protected]>
  2380. * ChangeLog: modified - put tabs where they belong
  2381. * System.Data.SqlClient/SqlDataReader.cs
  2382. * System.Data/DataColumn.cs: modified - compile errors
  2383. trying to compile SqlDataAdapter and dependencies
  2384. 2002-04-23 Daniel Morgan <[email protected]>
  2385. * System.Data.SqlTypes/SqlBoolean.cs
  2386. * System.Data.SqlTypes/SqlCompareOptions.cs
  2387. * System.Data.SqlTypes/SqlInt32.cs
  2388. * System.Data.SqlTypes/SqlString.cs: added - new stubs
  2389. * System.Data/DataTable.cs
  2390. * System.Data.SqlClient/SqlCommand.cs
  2391. * System.Data.SqlClient/SqlConnection.cs
  2392. * System.Data.SqlClient/SqlError.cs
  2393. * System.Data.SqlClient/SqlTransaction.cs: modified -
  2394. misc. tweaks
  2395. * System.Data.SqlClient/SqlException.cs: modified -
  2396. missing Message on indexer for Message property
  2397. 2002-04-21 Daniel Morgan <[email protected]>
  2398. * System.Data.SqlClient/SqlCommand.cs: modified - to
  2399. compile using mcs. This problem is
  2400. returning a stronger type in csc vs. msc
  2401. * System.Data.SqlClient/SqlConnection.cs: modified - msc
  2402. can not do a using PGconn = IntPtr; and then declare
  2403. with PGconn pgConn = IntPtr.Zero;
  2404. Thiw works under csc though. Had to comment using and
  2405. changed declaration to IntPtr pgConn = IntPtr.Zero;
  2406. Also, got rid of compile warnings for hostaddr and port.
  2407. * System.Data.SqlClient/SqlErrorCollection.cs: modified - got
  2408. rid of compile warnings. Commented MonoTODO attribute because mcs
  2409. doesn't seem to work with C# array property indexer (Item)
  2410. this[int index]
  2411. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  2412. commented MonoTODO attribute for indexer for mcs compiling
  2413. * Test/TestSqlIsolationLevel.cs:
  2414. * Test/TestSqlInsert.cs:
  2415. * Test/TestSqlException.cs: modified -
  2416. removed extra ExecuteNonQuery which caused two inserted rows
  2417. 2002-04-20 Daniel Morgan <[email protected]>
  2418. * System.Data/StateChangeEventArgs.cs - added
  2419. needed to compile System.Data.dll with mcs.
  2420. 2002-04-20 Daniel Morgan <[email protected]>
  2421. * System.Data.OleDb: added directory - for OleDb database
  2422. provider classes
  2423. * System.Data.SqlClient/SqlClientPermission.cs
  2424. * System.Data.SqlClient/SqlClientPermissionAttribute.cs
  2425. * System.Data.SqlClient/SqlCommandBuilder.cs
  2426. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs
  2427. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs
  2428. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs
  2429. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs
  2430. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs
  2431. * Test/TestSqlException.cs
  2432. * Test/TestSqlIsolationLevel.cs: added - more tests
  2433. * System.Data.build: modified - added new files - excludes these too
  2434. * System.Data.SqlClient/PostgresLibrary.cs - modified - comment
  2435. * System.Data.SqlClient/SqlConnection.cs
  2436. * System.Data.SqlClient/SqlCommand.cs
  2437. * System.Data.SqlClient/SqlTransaction.cs
  2438. * System.Data.SqlClient/SqlException.cs
  2439. * System.Data.SqlClient/SqlErrorCollection.cs
  2440. * System.Data.SqlClient/SqlError.cs: modified - transaction and
  2441. exception/error handling. SqlConnection(connectionString)
  2442. constructor should not automatically connect.
  2443. * System.Data.SqlClient/SqlDataReader.cs
  2444. * System.Data.SqlClient/SqlDataAdapter.cs
  2445. * System.Data.SqlClient/SqlParameter.cs
  2446. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  2447. added using System.ComponentModel;
  2448. * Test/TestSqlInsert.cs: modified - to use transaction
  2449. 2002-04-17 Rodrigo Moya <[email protected]>
  2450. * System.Data/DataRow.cs: new skeletons.
  2451. * System.Data.Common/DataAdapter.cs:
  2452. * System.Data.Common/DataColumnMapping.cs:
  2453. * System.Data.Common/DataColumnMappingCollection.cs:
  2454. * System.Data.Common/DataTableMapping.cs:
  2455. * System.Data.Common/DataTableMappingCollection.cs:
  2456. * System.Data.Common/DbDataAdapter.cs:
  2457. * System.Data.Common/RowUpdatedEventArgs.cs:
  2458. * System.Data.SqlClient/SqlDataAdapter.cs:
  2459. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: compilation
  2460. fixes for Linux.
  2461. * System.Data.Common/DbDataRecord.cs:
  2462. * System.Data.Common/DbEnumerator.cs: removed MS implementation
  2463. internal classes.
  2464. 2002-04-17 Daniel Morgan <[email protected]>
  2465. * Test/TestSqlInsert.cs: modified - do
  2466. a SQL DELETE before SQL INSERT of row so you can use this
  2467. test over and over.
  2468. * System.Data.SqlClient/SqlTransaction.cs: modified - default
  2469. IsolationLevel for PostgreSQL is ReadCommitted. However,
  2470. PostgreSQL allows Serializable as well.
  2471. (Thanks to Gonzalo for that!)
  2472. * System.Data.SqlClient/SqlConnection.cs: modified
  2473. * System.Data.SqlClient/SqlCommand.cs: modified
  2474. * System.Data.SqlClient/SqlTransaction.cs: modified - got transactions
  2475. working; however, we still need to implement SQL errors
  2476. and exceptions to properly handle transactions. Also, added
  2477. status and error message support from the PostgreSQL database.
  2478. Currently, this does a Console.WriteLine() to display the
  2479. status and error messages, but this is a TODO
  2480. for SQL errors and exceptions.
  2481. * System.Data/TODOAttribute.cs: added - needed MonoTODO
  2482. attribute for System.Data.dll assembly
  2483. * System.Data/IDbCommand.cs: modified - commented
  2484. overloaded method ExecuteReader
  2485. so System.Data.SqlClient.SqlCommand can compile
  2486. * System.Data/IDbCommand.cs: modified
  2487. * System.Data/IDbConnection.cs: modified - added using System;
  2488. * System.Data/IDataParameter.cs
  2489. * System.Data.build: modified - build classes
  2490. in System.Data.SqlClient and exclude others in System.Data
  2491. * System.Data.SqlClient/PostgresLibrary.cs: modified - change
  2492. parameter data type from IntPtr to enum ExecStatusType
  2493. * ChangeLog: modified - corrected previous entries in log
  2494. 2002-04-16 Rodrigo Moya <[email protected]>
  2495. * System.Data.Common/DataColumnMappingCollection.cs: added basic
  2496. implementation. Still missing some stuff.
  2497. 2002-04-16 Daniel Morgan <[email protected]>
  2498. * System.Data.SqlClient/SqlConnection.cs: modified - got
  2499. to compile, run, and connect to PostgreSQL database
  2500. * System.Data.SqlClient/SqlCommand.cs: modified - got
  2501. to compile, run, and execute a SQL INSERT command
  2502. which successfully inserted a row
  2503. into the PostgreSQL database
  2504. * System.Data.SqlClient/SqlTransaction.cs: modified
  2505. * System.Data.SqlClient/SqlParameter.cs: modified
  2506. * System.Data.SqlClient/SqlParameterCollection.cs: modified
  2507. * System.Data.SqlClient/SqlError.cs: modified
  2508. * System.Data.SqlClient/SqlErrorCollection.cs: modified
  2509. * System.Data.SqlClient/SqlException.cs: modified
  2510. * System.Data.SqlClient/PostgresLibrary.cs: modified - to compile
  2511. * System.Data.SqlClient/SqlAdapter: modified
  2512. * System.Data.SqlClient/SqlReader: modified - add more stubs
  2513. 2002-04-16 Daniel Morgan <[email protected]>
  2514. * Test/TestSqlInsert.cs: added
  2515. 2002-04-15 Daniel Morgan <[email protected]>
  2516. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: added - using in
  2517. class SqlConnecition
  2518. * System.Data.SqlClient/SqlErrorCollection.cs: added
  2519. * System.Data.SqlClient/SqlErrors.cs: removed - no such class SqlErrors
  2520. 2002-04-15 Christopher Podurgiel <[email protected]>
  2521. * System.Data.IDbDataParameter: Added Interface to IDataParameter.
  2522. * System.Data.IDbTransaction: Added Interface to IDisposable.
  2523. * System.Data.IDbCommand: Fixed Capitalization of class name.
  2524. * System.Data.IDbConnection: Fixed Capitalization of class name.
  2525. 2002-04-15 Rodrigo Moya <[email protected]>
  2526. * System.Data.Common/DbDataPermissionAttribute.cs:
  2527. * System.Data.Common/DataAdapter.cs:
  2528. * System.Data.Common/DataColumnMapping.cs:
  2529. * System.Data.Common/DbDataPermission.cs: added some implementation.
  2530. 2002-04-15 Rodrigo Moya <[email protected]>
  2531. * System.Data.SqlClient/SqlConnection.cs: fixed constructor chaining
  2532. syntax, as pointed out by Levent Camlibel.
  2533. 2002-04-14 Rodrigo Moya <[email protected]>
  2534. * System.Data.SqlTypes/SqlBinary.cs:
  2535. * System.Data.SqlTypes/INullable.cs: new skeletons.
  2536. 2002-04-14 Daniel Morgan <[email protected]>
  2537. * System.Data.SqlClient/PostgresLibrary.cs: new internal class, which
  2538. contains all calls the the PostgreSQL client library, to be used
  2539. everywhere in System.Data.SqlClient.
  2540. 2002-03-30 Rodrigo Moya <[email protected]>
  2541. * System.Data.SqlClient/SqlConnection.cs: implemented basic
  2542. constructors.
  2543. * System.Data.SqlTypes/SqlNullValueException.cs: new skeletons.
  2544. 2002-03-29 Rodrigo Moya <[email protected]>
  2545. * System.Data.Common/DbDataRecord.cs:
  2546. * System.Data.Common/DbEnumerator.cs:
  2547. * System.Data.Common/RowUpdatedEventArgs.cs:
  2548. * System.Data.Common/RowUpdatingEventArgs.cs:
  2549. * System.Data.Common/DbDataPermissionAttribute.cs: new skeletons.
  2550. 2002-03-28 Rodrigo Moya <[email protected]>
  2551. * System.Data.Common/DataTableMappingCollection.cs:
  2552. * System.Data.Common/DbDataAdapter.cs:
  2553. * System.Data.Common/DbDataPermission.cs:
  2554. * System.Data.Common/DataTableMapping.cs: new skeletons.
  2555. * System.Data.SqlClient/SqlDataAdapter.cs:
  2556. * System.Data.SqlClient/SqlDataReader.cs:
  2557. * System.Data.SqlClient/SqlErrors.cs:
  2558. * System.Data.SqlClient/SqlError.cs:
  2559. * System.Data.SqlClient/SqlException.cs:
  2560. * System.Data.SqlClient/SqlParameter.cs:
  2561. * System.Data.SqlClient/SqlParameterCollection.cs:
  2562. * System.Data.SqlClient/SqlTransaction.cs:
  2563. * System.Data.SqlClient/SqlCommand.cs: fixed skeletons.
  2564. 2002-03-27 Rodrigo Moya <[email protected]>
  2565. * System.Data.Common/DataColumnMapping.cs:
  2566. * System.Data.Common/DataColumnMappingCollection.cs:
  2567. * System.Data.Common/DataAdapter.cs: created skeletons.
  2568. * System.Data.build: exclude new directories from build.
  2569. 2002-03-27 Rodrigo Moya <[email protected]>
  2570. * System.Data.SqlClient/SqlTransaction.cs: started implementation.
  2571. * System.Data.SqlClient/SqlConnection.cs (BeginTransaction):
  2572. implemented (2 methods).
  2573. 2002-03-24 Duncan Mak <[email protected]>
  2574. * System.Data.build: Excluded System.Data.SqlClient from the build.
  2575. The stubs are incomplete and they are stopping the build.
  2576. * System.Data.SqlClient/SqlCommand.cs: Replaced 'implements' with ':'.
  2577. 2002-03-24 Rodrigo Moya <[email protected]>
  2578. * System.Data.SqlClient/*: added skeletons for the SQL managed
  2579. provider for ADO.Net, to be based initially in PostgreSQL.
  2580. 2002-03-15 Christopher Podurgiel <[email protected]>
  2581. Changed the Namespace on some Enums from mono.System.Data to System.Data
  2582. 2002-03-01 Christopher Podurgiel <[email protected]>
  2583. * DataColumnCollection.cs : When an existing DataColumn is added, will now Assign a
  2584. default name if the ColumnName is null.
  2585. * DataSet.cs : Added
  2586. * DataTable.cs : Added
  2587. * DataRelationCollection.cs : Added
  2588. * DataTableRelationCollection.cs : Added
  2589. * DataColumn : Added
  2590. 2002-02-11 Christopher Podurgiel <[email protected]>
  2591. * DataColumnChangeEventArgs.cs : Added
  2592. * DataColumnCollection.cs : Added
  2593. 2002-02-10 Christopher Podurgiel <[email protected]>
  2594. * Removed *.cs from System.Data as the correct files are in mcs/class/System.Data/System.Data
  2595. * Updated all Enums, Interfaces, and Delegates in System.Data