ChangeLog 99 KB

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