ChangeLog 103 KB

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