ChangeLog 97 KB

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