ChangeLog 100 KB

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