ChangeLog 124 KB

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