ChangeLog 101 KB

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