ChangeLog 98 KB

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