ChangeLog 100 KB

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