ChangeLog 94 KB

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