ChangeLog 122 KB

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