ChangeLog 95 KB

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