ChangeLog 98 KB

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