ChangeLog 99 KB

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