ChangeLog 88 KB

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