ChangeLog 96 KB

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