ChangeLog 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. 2002-10-16 Tim Coleamn <[email protected]>
  2. * list:
  3. * System.Data.build:
  4. Exclude compiling of System.Data.SqlClient in
  5. preparation for overhauls of that system.
  6. 2002-10-16 Daniel Morgan <[email protected]>
  7. * ParmUtil.cs
  8. * PostgresLibrary.cs
  9. * PostgresTypes.cs
  10. * SqlClientPermission.cs
  11. * SqlClientPermissionAttribute.cs
  12. * SqlCommand.cs
  13. * SqlCommandBuilder.cs
  14. * SqlConnection.cs
  15. * SqlDataAdapter.cs
  16. * SqlDataReader.cs
  17. * SqlError.cs
  18. * SqlErrorCollection.cs
  19. * SqlException.cs
  20. * SqlInfoMessageEventArgs.cs
  21. * SqlInfoMessageEventHandler.cs
  22. * SqlParameter.cs
  23. * SqlParameterCollection.cs
  24. * SqlRowUpdatedEventArgs.cs
  25. * SqlRowUpdatedEventHandler.cs
  26. * SqlRowUpdatingEventArgs.cs
  27. * SqlRowUpdatingEventHandler.cs
  28. * SqlTransaction.cs: thanks to Miguel de Icaza, he
  29. copied files on the mono cvs server
  30. from mcs/class/System.Data/System.Data.SqlClient
  31. for the PostgreSQL provider
  32. to mcs/class/Mono.Data.PostgreSqlClient.
  33. This frees up
  34. mcs/class/System.Data/System.Data.SqlClient for
  35. the Microsoft SQL Server provider.
  36. Any Mono.Data.PostgreSqlClient/Sql*.cs files
  37. were copied on the cvs server
  38. to Mono.Data.PostgreSqlClient/PgSql*.cs files
  39. and the old Mono.Data.PostgreSqlClient/Sql*.cs
  40. files were removed. Copying, renaming, and removing
  41. was done on the cvs server so we could keep
  42. the cvs change history.
  43. 2002-10-15 Daniel Morgan <[email protected]>
  44. * System.Data.OleDb/libgda.cs: added more functions
  45. to platfrom invoke into shared library libgda
  46. * System.Data.OleDb/OleDbDataReader.cs: implemented
  47. GetSchemaTable() and GetFieldType()
  48. 2002-10-13 Daniel Morgan <[email protected]>
  49. * System.Data/DataRow.cs: don't throw exception
  50. if DBNull is false. Had to do comment this line
  51. to allow a typeof(Type).
  52. * System.Data.SqlClient/SqlCommand.cs: the "DataType"
  53. DataColumn and DataRows in a DataTable for a schema should
  54. be typeof Type, not string. This is to make it
  55. compatible with MS.NET
  56. * System.Data.SqlClient/SqlConnection.cs: the
  57. isolation level should be set before
  58. beginning the transaction
  59. * Test/SqlSharpCli.cs: change string to Type for
  60. "DataType" from a DataRow in a DataTable
  61. that contains a schema.
  62. 2002-10-14 Rodrigo Moya <[email protected]>
  63. * list: added missing Odbc files.
  64. 2002-10-09 Rodrigo Moya <[email protected]>
  65. * list: added System.Data.Odbc files.
  66. 2002-10-09 Brian Ritchie <[email protected]>
  67. * System.Data.Odbc/*: added first version of ODBC managed provider.
  68. 2002-10-07 Gonzalo Paniagua Javier <[email protected]>
  69. * System.Data/ConstraintCollection.cs:
  70. * System.Data/DataColumnCollection.cs:
  71. * System.Data/DataRowCollection.cs:
  72. * System.Data/DataTableCollection.cs:
  73. * System.Data/InternalDataCollectionBase.cs: made List internal to fix
  74. the build with csc. It must be a mcs bug. I will try to get a test case.
  75. 2002-10-06 Luis Fernandez <[email protected]>
  76. * System.Data/Constraint.cs (AssertConstraint): added overloaded
  77. method.
  78. * System.Data/DataColumnCollection.cs: added constraints when needed.
  79. * System.Data/DataRow.cs: validate UniqueConstraint's.
  80. * System.Data/DataRowCollection.cs (ValidateDataRowInternal): new
  81. internal method to validate a given DataRow with respect to the
  82. DataRowCollection.
  83. * System.Data/ForeignKeyConstraint.cs (AssertConstraint): stubs for
  84. new overloaded method.
  85. * System.Data/UniqueConstraint.cs: added implementation.
  86. (AseertConstraint): implemented new overloaded method.
  87. 2002-10-01 Rodrigo Moya <[email protected]>
  88. * System.Data.OleDb/OleDbConnection.cs (Open): commented code from
  89. last commit, which wasn't supposed to be in CVS yet.
  90. 2002-10-01 Luis Fernandez <[email protected]>
  91. * System.Data/DataColumn.cs:
  92. * System.Data/DataRow.cs:
  93. * System.Data/DataRowCollection.cs:
  94. * System.Data/DataTable.cs: some fixes and implementation.
  95. 2002-09-28 Vladimir Vukicevic <[email protected]>
  96. * System.Data.OleDb/OleDbConnection.cs: Close
  97. reader properly in call to ExecuteScalar().
  98. 2002-09-07 Rodrigo Moya <[email protected]>
  99. * System.Data.OleDb/OleDbConnection.cs (Open): changed to use OleDb
  100. connection strings, which are then converted to GDA connection
  101. strings, instead of using directly GDA data source names.
  102. * System.Data.OleDb/libgda.cs: added more needed functions.
  103. 2002-09-06 Franklin Wise <[email protected]>
  104. * System.Data/DataColumn.cs: More flushing out.
  105. * System.Data/ForeignKeyConstraint.cs: Implemented GetHashCode()
  106. * System.Data/UniqueKeyConstraint.cs: Implemented GetHashCode()
  107. * Tests: See Changelog for System.Data/Test
  108. 2002-09-04 Franklin Wise <[email protected]>
  109. * Tests: See Changelog for System.Data/Test
  110. * New Files:
  111. System.Data/DataColumnCollectionTest.cs
  112. System.Data/DataRowCollectionTest.cs
  113. System.Data/DataRowTest.cs
  114. * System.Data/DataColumn.cs: Flushing out validation, type conversion for
  115. autoincrement. Added lots of TODO's.
  116. * System.Data/DataColumnCollection.cs: Wrote out add logic as a comment.
  117. Tagged implementation with FIXME tags. Lot's more validation
  118. and setup needs to be done, much of which is now tagged as todo's
  119. or FIXME's
  120. * System.Data/DataRow.cs: Lot's of fixme's added.
  121. * System.Data/DataRowCollection.cs: TODO's added.
  122. * System.Data/DataTable.cs: Implemented PrimaryKey.
  123. * System.Data/UniqueConstraint.cs: Implemented related PrimaryKey
  124. helpers.
  125. 2002-08-25 Rodrigo Moya <[email protected]>
  126. * System.Data.OleDb/OleDbTransaction.cs (OleDbTransaction): manage
  127. correctly the isolation level.
  128. (IsolationLevel): likewise.
  129. (~OleDbTransaction): implemented.
  130. * System.Data.OleDb/libgda.cs: added more needed stuff.
  131. 2002-08-22 Daniel Morgan <[email protected]>
  132. * System.Data.SqlClient/SqlParameter.cs: flush
  133. * System.Data.SqlClient/SqlParameterCollection.cs: fixes
  134. for the Item property, IndexOf, and Contains.
  135. * Test/SqlSharpCli.cs: added input parameters support.
  136. when a query is executed, if a parameter name matches
  137. a SQL# internal variable name, it uses that value for the parameter; otherwise,
  138. the user is prompted for the parameter value. Currently, it only supports
  139. string parameters.
  140. 2002-08-21 Rodrigo Moya <[email protected]>
  141. * System.Data.OleDb/libgda.cs: adapted to changes in libgda (get_vtype
  142. and get_type for GdaValue).
  143. * System.Data.OleDb/OleDbDataReader.cs: adapted to changes in
  144. libgda.cs.
  145. 2002-08-20 Rodrigo Moya <[email protected]>
  146. * System.Data.OleDb/OleDbConnection.cs (DataReader): new internal
  147. property.
  148. (Close): set the dataReader to null.
  149. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader): set the
  150. connection's DataReader property to this object.
  151. (Close): set it to null here.
  152. (Depth, IsDbNull): implemented.
  153. (this): implemented the Item property with a string indexer.
  154. * System.Data.OleDb/OleDbCommand.cs (ExecuteNonQuery, ExecuteReader,
  155. ExecuteScalar): do nothing if there's already an open data reader.
  156. * System.Data.OleDb/libgda.cs: more API functions.
  157. * System.Data.OleDb/TestOleDb.cs (TestDataReader): close the data
  158. reader before continuing.
  159. 2002-08-20 Franklin Wise <[email protected]>
  160. * System.Data/System.Data.build: added nowarn:0679
  161. * System.Data/System.DataTable: cleaned up class, added MonoTODO tags
  162. setup to begin implementing. Implemented ctor().
  163. * Tests: See System.Data\Test\ChangeLog
  164. 2002-08-19 Rodrigo Moya <[email protected]>
  165. * System.Data.OleDb/OleDbSchemaGuid.cs: initialize static members.
  166. 2002-08-19 Franklin Wise <[email protected]>
  167. * Tests: See System.Data\Test\ChangeLog
  168. * System.Data/UniqueConstraint.cs: More validation.
  169. * System.Data/ForeignKeyConstraint.cs: Added more validation rules.
  170. Another LAMESPEC tag. Implemented more of Add/Remove Setup/Cleanup
  171. logic.
  172. * System.Data/DataTable.cs: Added more MonoTODO tags
  173. * class/System.Data/.cvsignore: added tmp & Temp
  174. * System.Data/Constraint.cs: Changed abstract helpers to virtual and
  175. internal.
  176. * System.Data/ConstraintCollection.cs: Commented out unused line.
  177. 2002-08-18 Rodrigo Moya <[email protected]>
  178. * System.Data.OleDb/OleDbConnection.cs (ChangeDatabase): implemented.
  179. * System.Data.OleDb/OleDbException.cs (OleDbException): added internal
  180. constructor.
  181. (ErrorCode, Message, Source, Errors): implemented.
  182. * System.Data.OleDb/OleDbError.cs: implemented the full class.
  183. * System.Data.OleDb/libgda.cs: added more libgda functions.
  184. * System.Data.OleDb/TestOleDb.cs (TestOleDb): display properties for
  185. the opened connection.
  186. 2002-08-18 Rodrigo Moya <[email protected]>
  187. * System.Data.OleDb/OleDbConnection.cs (ServerVersion): implemented.
  188. * System.Data.OleDb/OleDbDataReader.cs (Close): clear the results
  189. ArrayList after releasing the items.
  190. (GetName, GetDateTime, GetDouble, GetSingle, GetInt16, GetInt32,
  191. GetOrdinal, GetString): implemented.
  192. (GetDataTypeName): made it get the type from the data model, not from
  193. the current value, which could not have been retrieved yet.
  194. (GetValue): call the Get* method corresponding with the data type of
  195. the requested column.
  196. * System.Data.OleDb/libgda.cs: added more libgda functions.
  197. (GdaTimestamp, GdaDate, GdaTime): new marshalled structures.
  198. * System.Data.OleDb/TestOleDb.cs (TestDateReader): display column
  199. titles via OleDbDataReader.GetName ().
  200. (TestOleDb): create temporary table with a date field.
  201. (InsertRow): set current date for the date field.
  202. 2002-08-18 Rodrigo Moya <[email protected]>
  203. * System.Data.OleDb/OleDbDataReader.cs (this[]): made it just call
  204. GetValue, which will take care of all the work needed.
  205. (Close): implemented basic stuff.
  206. (~OleDbDataReader): implemented.
  207. * System.Data.OleDb/libgda.cs: added more needed functions.
  208. 2002-08-16 Rodrigo Moya <[email protected]>
  209. * System.Data.OleDb/TestOleDb.cs: made it work with a temporary table
  210. we create.
  211. (TestTransaction): added test for transactions.
  212. 2002-08-16 Rodrigo Moya <[email protected]>
  213. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  214. * System.Data.OleDb/OleDbDataReader.cs (GetBoolean): throw exceptions
  215. when there are errors.
  216. (GetByte, GetChar, GetDataTypeName, GetValue, Read): implemented.
  217. * System.Data.OleDb/TestOleDb.cs: added more testing code for data
  218. readers.
  219. 2002-08-15 Rodrigo Moya <[email protected]>
  220. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  221. * System.Data.OleDb/OleDbParameterCollection.cs (GdaParameterList):
  222. create an empty GdaParameterList.
  223. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): check values
  224. for NULL before passing them to Marshal.PtrToStructure, which issues
  225. an exception if the value is NULL.
  226. 2002-08-15 Rodrigo Moya <[email protected]>
  227. * System.Data/UniqueConstraint.cs (UniqueConstraint): commented
  228. unreachable code to avoid compiler warning.
  229. * System.Data.OleDb/libgda.cs (GdaList): added new internal class.
  230. * System.Data.OleDb/OleDbConnection.cs (DataSource): implemented.
  231. (OpenReader): removed internal method.
  232. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): split correctly
  233. the list of returned data models.
  234. 2002-08-15 Franklin Wise <[email protected]>
  235. * System.Data/Constraint.cs: Added helper virtual functions
  236. * System.Data/ConstraintCollection.cs: Improved constraint removal,
  237. validation. Removed specific knowledge of subclasses of
  238. Constraint.
  239. * System.Data/DataColumn.cs: Added static helper function to compare
  240. if two DataColumn arrays are the same.
  241. * System.Data/ForeignKeyConstraint.cs: Continued to flush out.
  242. * System.Data/UniqueConstraint.cs: Implemented. Still some constraint
  243. validation to do.
  244. 2002-08-13 Franklin Wise <[email protected]>
  245. * System.Data/DataRow.cs: Added several fixme tags.
  246. 2002-08-13 Rodrigo Moya <[email protected]>
  247. * System.Data.SqlClient/SqlDataAdapter.cs (DeleteCommand,
  248. InsertCommand, SelectCommand, UpdateCommand): removed 'new' keyword
  249. to avoid compiler warnings.
  250. 2002-08-12 Franklin Wise <[email protected]>
  251. * System.Data/Constraint.cs: Implemented
  252. * System.Data/UniqueConstraint.cs: GetHashCode() &
  253. special case Ctor. Still need to be implemented. LAMESPEC tags
  254. added.
  255. * System.Data/ConstraintCollection.cs: Clear() &
  256. AddRange() need to be finished. Several LAMESPEC tags.
  257. * Allow Constraint collection to be created in DataTable.
  258. * System.Data/ForeignKeyConstraint: Added a couple of
  259. helper functions.
  260. * System.Data/DataColumnCollection New/Added DataColumns now have
  261. Table property set.
  262. 2002-08-11 Rodrigo Moya <[email protected]>
  263. * System.Data.OleDb/libgda.cs: added some GdaValue functions.
  264. * System.Data.OleDb/OleDbCommand.cs (OpenReader): removed this
  265. internal method, since we don't need it.
  266. (ExecuteReader): call SetupGdaCommand before executing the command
  267. via libgda functions.
  268. (ExecuteScalar): implemented.
  269. * System.Data.OleDb/OleDbDateReader.cs (OleDbDataReader): removed call
  270. to OleDbCommand.OpenReader.
  271. (GetBoolean): implemented.
  272. 2002-08-08 Franklin Wise <[email protected]>
  273. * System.Data/IDbComand.cs: IDbCommand now inherits IDisposable
  274. * System.Data/IDbConnection.cs: IDbConnection now inherits IDisposable
  275. * System.Data.SqlTypes/SqlCompareOptions.cs: Enum now set to correct
  276. values.
  277. 2002-08-06 Gonzalo Paniagua Javier <[email protected]>
  278. * System.Data.OleDb/OleDbConnection.cs: little fixes to make it work
  279. and don't show a warning in Open.
  280. * System.Data.OleDb/TestOleDb.cs: added Close.
  281. 2002-08-05 Rodrigo Moya <[email protected]>
  282. * System.Data.OleDb/OleDbConnection.cs (ConnectionString,
  283. ConnectionTimeout, ServerVersion, GdaConnection):
  284. corrected style.
  285. (OleDbConnection): call libgda.gda_init on constructor.
  286. * System.Data.OleDb/libgda.cs (libgda): removed static constructor,
  287. which wasn't been called.
  288. * System.Data.OleDb/TestOleDb.cs (TestOleDb): updated to really
  289. make some tests.
  290. 2002-08-04 Rodrigo Moya <[email protected]>
  291. * list: added missing System.Data.OleDb and
  292. System.Data.Common files.
  293. * System.Data.OleDb/ChangeLog: removed and merged with
  294. System.Data's ChangeLog.
  295. * System.Data.OleDb/OleDbDataAdapter.cs:
  296. * System.Data.OleDb/OleDbPermission.cs: compilation fixes.
  297. 2002-07-30 Rodrigo Moya <[email protected]>
  298. * System.Data.OleDb/OleDbDataReader.cs (FieldCount): implemented.
  299. (IsClosed, Item, RecordsAffected): implemented some properties.
  300. * libgda.cs: added GdaDataModel methods.
  301. 2002-07-29 Rodrigo Moya <[email protected]>
  302. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader constructor): changed to receive
  303. a second argument (ArrayList results).
  304. (NextResult): implemented.
  305. * System.Data.OleDb/OleDbCommand.cs: don't store the ArrayList of results, since we'll
  306. pass that to the OleDbDataReader.
  307. (OleDbCommand constructor): don't create the ArrayList of results.
  308. (GdaResults): removed property.
  309. (ExecuteReader): create a temporary ArrayList and pass that to the
  310. OleDbDataReader constructor.
  311. 2002-07-28 Rodrigo Moya <[email protected]>
  312. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader):
  313. (CreateParameter): implemented IDbCommand methods.
  314. (CommandText): don't create many GdaCommand's, only one is needed.
  315. (ExecuteNonQuery): set up the internal GDA command object.
  316. (ExecuteReader): use correctly the unique GDA command object.
  317. * System.Data.OleDb/libgda.cs: added new libgda calls.
  318. 2002-07-27 Rodrigo Moya <[email protected]>
  319. * System.Data.OleDb/OleDbConnection.cs (CreateCommand):
  320. (BeginTransaction): implemented IDbConnection methods.
  321. 2002-07-12 Rodrigo Moya <[email protected]>
  322. * list: added System.Data.OleDb files to file list.
  323. 2002-07-11 Rodrigo Moya <[email protected]>
  324. * System.Data.OleDb/libgda.cs: added new libgda functions and some enumerations.
  325. * System.Data.OleDb/OleDbParameter.cs (IsNullable): removed explicit implementation
  326. of the set method for this property.
  327. * System.Data.OleDb/OleDbDataAdapter.cs (MissingMappingAction): implemented.
  328. (MissingSchemaAction): implemented.
  329. 2002-07-10 Tim Coleman <[email protected]>
  330. * System.Data.OleDb/OleDbCommandBuilder.cs: Added new methods, properties
  331. * System.Data.OleDb/OleDbConnection.cs: Modified constructor
  332. * System.Data.OleDb/OleDbError.cs: Added stubbs
  333. * System.Data.OleDb/OleDbException.cs: Added stubbs
  334. * System.Data.OleDb/OleDbInfoMessageEventArgs.cs: Added stubbs
  335. * System.Data.OleDb/OleDbInfoMessageEventHandler.cs: style change
  336. * System.Data.OleDb/OleDbParameter.cs: Added conversion from type to OleDbType
  337. * System.Data.OleDb/OleDbPermission.cs: Added stubbs
  338. * System.Data.OleDb/OleDbSchemaGuid.cs: Added stubbs
  339. * System.Data.OleDb/OleDbTransaction.cs: New constructors, changes to methods to
  340. support transaction nesting
  341. * System.Data.OleDb/libgda.cs: Added my name to this file
  342. 2002-07-09 Tim Coleman <[email protected]>
  343. * System.Data.OleDb/OleDbCommand.cs: Style changes, added new methods
  344. * System.Data.OleDb/OleDbConnection.cs: Style changes, added new methods
  345. * System.Data.OleDb/OleDbDataAdapter.cs: Implementation
  346. * System.Data.OleDb/OleDbDataReader.cs: Added stubbs
  347. * System.Data.OleDb/OleDbErrorCollection.cs: Added stubbs, some implementation
  348. * System.Data.OleDb/OleDbParameter.cs: Style changes, added new methods
  349. * System.Data.OleDb/OleDbParameterCollection.cs: Style changes, added new methods
  350. * System.Data.OleDb/OleDbPermissionAttribute.cs: Style changes, added new methods
  351. * System.Data.OleDb/OleDbRowUpdatedEventArgs.cs: Added stubbs
  352. * System.Data.OleDb/OleDbRowUpdatingEventArgs.cs: Added stubbs
  353. * System.Data.OleDb/OleDbTransaction.cs: Style changes, added new methods
  354. * System.Data.OleDb/OleDbType.cs: Fixed two typos
  355. * System.Data.OleDb/libgda.cs: Style changes, added new methods
  356. 2002-07-09 Tim Coleman <[email protected]>
  357. * System.Data.build: remove restriction on System.Data.OleDb build
  358. 2002-06-03 Rodrigo Moya <[email protected]>
  359. * System.Data.OleDb/OleDbParameterCollection.cs (GetEnumerator, SyncRoot,
  360. IsSynchronized): implemented.
  361. 2002-06-02 Rodrigo Moya <[email protected]>
  362. * System.Data.OleDb/OleDbTransaction.cs (Dispose): added missing method.
  363. * System.Data.OleDb/OleDbCommand.cs (Clone): added missing methods.
  364. (Parameters, Transaction, Connection): made these overload
  365. IDbCommand's ones.
  366. * System.Data.OleDb/OleDbParameterCollection.cs (IndexOf, Remove, RemoveAt):
  367. call m_list methods, not own ones.
  368. * System.Data.OleDb/OleDbParameter.cs: more implementation.
  369. 2002-06-02 Rodrigo Moya <[email protected]>
  370. * System.Data.OleDb/OleDbTransaction.cs (Connection, IsolationLevel, Begin,
  371. Commit, Rollback): implemented.
  372. (GdaConnection): added new internal property.
  373. * System.Data.OleDb/OleDbParameter.cs:
  374. * System.Data.OleDb/OleDbParameterCollection.cs: implemented some methods and
  375. properties.
  376. * System.Data.OleDb/libgda.cs: added yet more libgda API functions.
  377. 2002-06-01 Rodrigo Moya <[email protected]>
  378. * System.Data.OleDb/libgda.cs: added new libgda API functions.
  379. * System.Data.OleDb/OleDbConnection.cs (Provider): implemented.
  380. (BeginTransaction): made it overload IDbConnection methods.
  381. (ChangeDatabase): new stub, needs some work on libgda for being
  382. implemented.
  383. (Clone): new stub.
  384. (Close): implemented.
  385. (CreateCommand): implemented.
  386. (GetOleDbSchemaTable): new stub, until I understand what to do here.
  387. (Open): implemented basic stuff, which is just supporting connection
  388. strings that represent a GDA data source name. More to come.
  389. (InfoMessage, StateChange): added events.
  390. * System.Data.OleDb/TestOleDb.cs: test program for System.Data.OleDb.
  391. 2002-05-29 Rodrigo Moya <[email protected]>
  392. * System.Data.OleDb/libgda.cs: added static constructor.
  393. (GdaClient): new static property to get the underlying GdaClient
  394. object.
  395. * System.Data.OleDb/OleDbConnection.cs: removed GDA initialization, which belongs to
  396. the static 'libgda' class.
  397. 2002-05-29 Rodrigo Moya <[email protected]>
  398. * System.Data.OleDb/libgda.cs: static class for libgda API calls.
  399. * System.Data.OleDb/OleDbConnection.cs: implemented constructors.
  400. (ConnectionString, Connectiontimeout, Database, State):
  401. implemented class properties.
  402. (BeginTransaction): implemented.
  403. * System.Data.OleDb/OleDbTransaction.cs: implemented protected constructors.
  404. * System.Data.OleDb/TestGDA.cs: simple test for libgda API.
  405. 2002-05-27 Rodrigo Moya <[email protected]>
  406. * System.Data.OleDb/*: started System.Data.OleDb provider, based on libgda.
  407. 2002-06-06 Rodrigo Moya <[email protected]>
  408. * list: added missing PostgresTypes.cs file.
  409. 2002-06-02 Francisco Jr. <[email protected]>
  410. * System.Data.SqlClient/SqlParameterCollection.cs: implemented missing
  411. methods.
  412. 2002-05-30 Daniel Morgan <[email protected]>
  413. * System.Data.SqlClient/SqlConnection.cs: modifed -
  414. start to implement the interfaces properly and
  415. properly doing a Close(), Dispose(), and
  416. releasing resources
  417. * Test/SqlSharpCli.cs: modified -
  418. add support for MySQL in Mono.Data.MySql
  419. and OleDb support in System.Data.OleDb. However,
  420. the OleDb support is commented right now.
  421. When the program starts up, a shorter help menu should
  422. display the most important commands: help and quit
  423. 2002-05-28 Rodrigo Moya <[email protected]>
  424. * System.Data.build: exclude System.Data.OleDb files.
  425. 2002-05-27 Daniel Morgan <[email protected]>
  426. * System.Data.SqlClient/SqlCommand.cs: typo
  427. should be CommandBehavior.KeyInfo
  428. * Test/SqlSharpCli.cs: refactored and added a few more
  429. features.
  430. 2002-05-27 Tim Coleman <[email protected]>
  431. * list: update to compile properly (add missing
  432. files and switch path delimiter from '\' to '/').
  433. 2002-05-26 Daniel Morgan <[email protected]>
  434. * System.Data/DataRow.cs
  435. * System.Data.Common/DbDataAdapter.cs: fix to
  436. get Test/TestSqlDataAdapter.cs to work again
  437. * Test/TestSqlDataAdapter.cs: removed comment
  438. about SqlDataReader:NextResult() not being implemented; it
  439. bas been implemented
  440. 2002-05-26 Daniel Morgan <[email protected]>
  441. * System.Data/DataRow.cs: modified
  442. support setting of DBNull.Value
  443. using the Item indexer this[DataColumn]
  444. * System.Data.SqlClient/SqlCommand.cs: modified
  445. tweaks to show TODO's for other CommandBehavior.
  446. Set AllowDBNull column to true for IsKey row
  447. in schema DataTable.
  448. * System.Data.SqlClient/SqlConnection.cs: modified
  449. if transaction is in progress when a Close() is called,
  450. do a transaction Rollback.
  451. 2002-05-26 Daniel Morgan <[email protected]>
  452. * Test/SqlSharpCli.cs: added file
  453. My new toy. SQL# is a command-line tool to enter
  454. SQL commands and queries using Mono System.Data.
  455. It also serves as a test for Mono System.Data.
  456. * System.Data.SqlClient/SqlCommand.cs: modified
  457. - ExecuteNonQuery(), ExecuteScalar(), and ExecuteReader()
  458. should handle the results from SQL Commands and Queries.
  459. - Internal class SqlResult should not create schema Table
  460. for the result from a SQL Command. Also, set the RecordsRetrieved
  461. property for SqlDataReader.
  462. - Closing the SqlDataReader should Close() the SqlConnection for
  463. a CommandBehavior.CloseConnection.
  464. - Set defaults for SqlResult
  465. * System.Data.SqlClient/SqlConnection.cs: modified -
  466. when SqlDataReader is Close()
  467. should Close() the SqlConnection for
  468. a CommandBehavior.CloseConnection. Changed internal Property
  469. from OpenReader get/set to IsReaderOpen get and created
  470. internal methods OpenReader()/CloseReader() for SqlCommand to call.
  471. SqlConnection needs to be prevented from doing while SqlDataReader
  472. is being used.
  473. * System.Data.SqlClient/SqlDataReader.cs: modified -
  474. call SqlCommand's OpenReader() internal method. get
  475. RecordsRetrieved from SqlResult. set/reset default
  476. values for SqlDataReader.
  477. * Test/PostgresTest.cs
  478. * Test/TestExecuteScalar.cs
  479. * Test/TestSqlDataReader.cs: modified
  480. for the Execute...() methods in SqlCommand
  481. to test SQL Queries and Commands
  482. * Test/System.Data_test.build: modified
  483. exclude new file Test/SqlSharpCli.cs from
  484. test build
  485. 2002-05-24 Tim Coleman <[email protected]>
  486. * System.Data.Common/DbDataAdapter.cs: remove IDbCommands, except
  487. for get accessors. These should be implemented in derived classes. See
  488. SqlDataAdapter for clues.
  489. * System.Data.SqlClient/SqlDataAdapter.cs: implement IDbDataAdapter
  490. * System.Data.Common/DataAdapter.cs:
  491. * System.Data.Common/DataTableMappingCollection.cs:
  492. * System.Data.Common/DataTableMapping.cs:
  493. * System.Data.Common/DataColumnMappingCollection.cs:
  494. * System.Data.Common/DataColumnMapping.cs:
  495. Properly (I hope!) implement all of the appropriate interfaces
  496. for these classes.
  497. 2002-05-23 Tim Coleman <[email protected]>
  498. * System.Data.SqlClient/SqlCommand.cs: include
  499. the BaseColumnName in the schema table. Was missed before.
  500. * System.Data.Common/DbDataAdapter.cs: Use DataTable
  501. mappings so that the DataSet and DataTable are more closely tied.
  502. Get schema information from the DataTable using GetSchemaTable ()
  503. Various other little fixes
  504. * System.Data.Common/DataColumnMappingCollection.cs:
  505. * System.Data.Common/DataTableMapping.cs:
  506. * System.Data.Common/DataTableMappingCollection.cs: Some
  507. implementation, enough to be used by DbDataAdapter.
  508. 2002-05-23 Daniel Morgan <[email protected]>
  509. * System.Data.SqlClient/SqlCommand.cs: set
  510. the "ProviderType" to the PostgreSQL type oid
  511. * System.Data.SqlClient/SqlDataReader.cs: fix
  512. for various properties and methods that
  513. return meta data: Item indexers this[name] and this[index],
  514. GetFieldType, GetName, and GetOrdinal. SqlDataAdapter
  515. should work again.
  516. 2002-05-22 Daniel Morgan <[email protected]>
  517. * System.Data/DataRow.cs: change suggested
  518. by tim: in Item indexer, do an EndEdit()
  519. * System.Data.SqlClient/SqlCommand.cs: more
  520. fixes to SqlResult. After setting each item in
  521. the DataRow, do an AcceptChanges() to commit
  522. the changes in the DataRow. For DataType, use a Type
  523. of System.String since System.Type nor System.Object
  524. seems to work.
  525. * Test/TestSqlDataReader.cs
  526. * Test/PostgresTest.cs: updated to to be on
  527. the way schema table is suppose to work
  528. 2002-05-22 Daniel Morgan <[email protected]>
  529. * System.Data.SqlClient/SqlCommand.cs: more work on
  530. building the schema table
  531. 2002-05-22 Tim Coleman <[email protected]>
  532. * System.Data.SqlClient/SqlCommand.cs: preliminary work
  533. on getting the schema table correctly built.
  534. 2002-05-21 Daniel Morgan <[email protected]>
  535. * System.Data.SqlClient/ParmUtil.cs: added file - to
  536. provide utility for conversion of input parameters
  537. * System.Data.SqlClient/PostgresTypes.cs: added file -
  538. moved the PostgreHelper class to here. May eventually
  539. move the internal class PostgresTypes that's inside the
  540. SqlConnection to here as well.
  541. Handling of PostgreSQL <-> .NET types need to be though
  542. out more. Also, the PostgreHelper has a method to convert
  543. from .NET types to a string which can be put into used in
  544. an SQL statement to execute against a PostgreSQL database.
  545. This is the beginnings of parameters support. It currently
  546. only supports input parameters. Still need to do output,
  547. input/output, and return parameters.
  548. * Test/TestSqlParameters.cs: new test to test the input
  549. parameters in System.Data.SqlClient against a
  550. PostgreSQL db.
  551. * System.Data.SqlClient/PostgresLibrary.cs: moved
  552. PostgresHelper class to file PostgresTypes.cs. Also
  553. moved struct PostgresType there too.
  554. * System.Data.SqlClient/SqlCommand.cs: added input
  555. parameters support
  556. * System.Data.SqlClient/SqlParameter.cs: got
  557. SqlParameter to work
  558. * System.Data.SqlClient/SqlParameterCollection.cs: got
  559. SqlParameterCollection to work
  560. * Test/System.Data_test.build: added files to exclude
  561. from test build
  562. * System.Data.SqlClient/SqlConnection.cs: release resources
  563. no longer used
  564. 2002-05-18 Daniel Morgan <[email protected]>
  565. * System.Xml: added directory for classes with namespace
  566. System.Xml to go into the System.Data.dll assembly
  567. * System.Xml/XmlDataDocument: added file
  568. for stubbed concrete class XmlDataDocument which
  569. inherits from XmlDocument. Its purpose is to provide
  570. a W3C XML DOM Document for relational data and interacting
  571. with a DataSet
  572. 2002-05-18 Daniel Morgan <[email protected]>
  573. * System.Data.SqlClient/SqlCommand.cs: handle CommandTypes
  574. Text, TableDirect, and StoredProcedure
  575. * Test/PostgresTest.cs: changed call to version()
  576. stored procedure to use the CommandType of StoredProcedure
  577. * Test/TestSqlDataReader.cs: test all the CommandTypes
  578. 2002-05-18 Daniel Morgan <[email protected]>
  579. * System.Data.build: took out all excluded
  580. files except the ones in the Test directory
  581. because all files compile now. It does not
  582. mean they all work or have implementations
  583. though.
  584. * System.Data/DataRelationCollection.cs
  585. * System.Data/DataTableRelationCollection.cs
  586. * System.Data/InternalDataCollectionBase.cs
  587. * System.Data.Common/DbDataPermission.cs
  588. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs
  589. * System.Data.SqlClient/SqlClientPermission.cs
  590. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: changes
  591. to get all System.Data* files to compile.
  592. * System.Data.SqlClient/SqlCommand.cs: started coding
  593. to prevent SqlConnection and SqlCommand from doing
  594. anyting while fetching data using SqlDataReader. Also,
  595. started coding to undo this prevention once the
  596. SqlDataReader is closed.
  597. * System.Data.SqlClient/SqlConnection.cs: get database server
  598. version. Started coding to prevent connection from
  599. doing anything while fetching data and undo once the reader
  600. is closed. Include events SqlInfoMessage and StateChange.
  601. * System.Data.SqlClient/SqlDataReader.cs: start coding to
  602. prevent connection and command from doing anything while
  603. fetching data, and undo when closed.
  604. * Test/PostgresTest.cs: added test to get ServerVersion
  605. property from SqlConnection
  606. 2002-05-18 Tim Coleman <[email protected]>
  607. * System.Data/DataRow.cs: More implementation,
  608. as well as boundary checks and small semantic
  609. repairs
  610. 2002-05-18 Tim Coleman <[email protected]>
  611. * System.Data/DataRow.cs: Try to reduce memory
  612. usage by only creating the original and proposed
  613. arrays as required in BeginEdit, and then destroying
  614. proposed during EndEdit, and original during AcceptChanges.
  615. * System.Data.Common/DbDataAdapter.cs: Make the
  616. startRecord and maxRecords parameters work correctly.
  617. 2002-05-18 Tim Coleman <[email protected]>
  618. * System.Data/DataRow.cs: Move the null check in
  619. ItemArray set to above the Invalid Cast check, so
  620. that we don't get null reference exceptions.
  621. 2002-05-17 Daniel Morgan <[email protected]>
  622. * System.Data.SqlClient/PostgresLibrary.cs: handle
  623. data value from database being NULL
  624. * System.Data.SqlClient/SqlCommand.cs: for ExecuteReader,
  625. allow multiple result sets. Added new internal class
  626. SqlResult to pass result set data from SqlCommand
  627. to SqlDataReader.
  628. * System.Data.SqlClient/SqlDataReader.cs: allow
  629. multiple result sets.
  630. * System.Data.SqlClient/SqlConnection.cs: moved
  631. things around. Implement IDisposable.
  632. * Test/TestSqlDataReader.cs: test for execution
  633. of multiple result sets and display the results
  634. of these multiple results sets
  635. * Test/TestSqlDataAdapter.cs: tweaks
  636. 2002-05-17 Tim Coleman <[email protected]>
  637. * System.Data.Common/DbDataAdapter.cs:
  638. - More implementation of Fill methods
  639. - Get rid of isDirty flag, because we can just check
  640. if the table exists
  641. - Do *not* remove DataTables before Filling them
  642. - Implicitly open the connection before doing a Fill
  643. if it does not exist.
  644. * System.Data.SqlClient/SqlDataAdapter.cs:
  645. - Minor fixup
  646. * System.Data/DataTableCollection.cs:
  647. - Add DataSet to internal, undocumented constructor
  648. - When a table is created, set its DataSet property
  649. - Default table name for creation is "Table1" (see .NET)
  650. - Inherit the ArrayList list from InternalDataCollecitonBase
  651. and maintain a hashtable between table names and
  652. DataTables
  653. * System.Data/DataTable.cs:
  654. - Add internal dataSet field. This is used by
  655. DataTableCollection when the DataTable is constructed.
  656. * System.Data/DataSet.cs:
  657. - Pass a reference to the DataSet when constructing the
  658. DataTableCollection.
  659. 2002-05-16 Tim Coleman <[email protected]>
  660. * System.Data.Common/DbDataAdapter.cs:
  661. Use table.Rows.Add (itemArray) instead of
  662. table.Rows.Add (thisRow) to provide better
  663. abstraction.
  664. * System.Data/DataRowCollection.cs:
  665. Some implementation of this class.
  666. * System.Data/InternalDataCollectionBase.cs:
  667. Some implementation. Most notably, this now
  668. has an enumerator so we can use foreach (DataRow row in table.Rows)
  669. in the test classes.
  670. * System.Data/DataTable.cs:
  671. Since DataRowCollection now accepts a DataTable in
  672. its internal constructor, we must pass one in.
  673. 2002-05-16 Daniel Morgan <[email protected]>
  674. * Test/TestSqlDataAdapter.cs: added new test
  675. for SqlDataAdapter, DataSet, DataTableCollection, DataTable,
  676. DataRowCollection, and DataRow. It tests retrieving data
  677. based on a SQL SELECT query. This test is based on Tim Coleman's
  678. test he sent to me.
  679. 2002-05-16 Tim Coleman <[email protected]>
  680. * System.Data.Common/DbDataAdapter.cs:
  681. Use table.Rows.Add (thisRow) instead of
  682. table.ImportRow (thisRow)
  683. * System.Data/DataRowCollection.cs:
  684. Construct the ArrayList before using it
  685. 2002-05-16 Tim Coleman <[email protected]>
  686. * System.Data/DataTable.cs:
  687. Construct the DataRowCollection in the DataTable
  688. constructor. Otherwise, it's a null reference.
  689. 2002-05-16 Tim Coleman <[email protected]>
  690. * System.Data.SqlClient/SqlDataReader.cs:
  691. Modify GetValues to use Array.Copy() to copy
  692. the results from fields to values, rather than
  693. an assignment, which results in loss of data.
  694. 2002-05-16 Tim Coleman <[email protected]>
  695. * System.Data/DataRow.cs:
  696. More implementation and documentation. It should
  697. work more like expected, although there is no way
  698. to demonstrate this well yet. DataTable requires
  699. more work.
  700. 2002-05-15 Tim Coleman <[email protected]>
  701. * System.Data/DataRow.cs:
  702. Minor tweaks as I determine exactly how to
  703. implement this class.
  704. 2002-05-14 Duncan Mak <[email protected]>
  705. * System.Data/DataTable.cs (NewRow): Added missing paren to fix build.
  706. 2002-05-14 Tim Coleman
  707. * System.Data/DataRow.cs:
  708. * System.Data/DataRowBuilder.cs:
  709. * System.Data/DataTable.cs:
  710. More implementation of these classes. DataRow
  711. can now (possibly) do some useful things.
  712. Still not sure what DataRowBuilder is all about,
  713. other than passing a DataTable in.
  714. 2002-05-14 Tim Coleman
  715. * System.Data/DataRowBuilder.cs:
  716. Add stubb for this internal class.
  717. 2002-05-13 Tim Coleman
  718. * System.Data.Common/DbDataAdapter.cs:
  719. The maxRecords check was not correct.
  720. 2002-05-13 Tim Coleman
  721. * System.Data/DataTableCollection.cs:
  722. Fix an issue when adding a DataTable and size == 0.
  723. Now explicitly checks if size > 0 before doing Array.Copy ()
  724. * System.Data.Common/DbDataAdapter.cs:
  725. Move closer to a working implementation.
  726. Make the IDbCommand fields protected so that they can
  727. be inherited.
  728. * System.Data.SqlClient/SqlDataAdapter.cs:
  729. This should inherit the IDbCommands instead of having its
  730. own. An explicit cast is used to force conversion between
  731. IDbCommand and SqlCommand
  732. 2002-05-13 Tim Coleman
  733. * System.Data.Common/DataTableMappingCollection.cs:
  734. Some implementation to allow progress with DbDataAdapter
  735. 2002-05-13 Tim Coleman
  736. * System.Data.Common/DbDataAdapter.cs:
  737. Modify to not break compile.
  738. 2002-05-13 Tim Coleman
  739. * System.Data.build:
  740. include SqlDataAdapter, SqlRowUpdatedEventArgs,
  741. SqlRowUpdatingEventArgs, SqlRowUpdatedEventHandler,
  742. SqlRowUpdatingEventHandler in the build.
  743. 2002-05-13 Tim Coleman
  744. * System.Data.Common/DbDataAdapter.cs:
  745. More implementation.
  746. * System.Data.Common/DataAdapter.cs:
  747. Correction of some of the stubbing, as well as a
  748. little bit more implementation
  749. 2002-05-11 Tim Coleman
  750. * System.Data.SqlClient/SqlDataAdapter.cs:
  751. * System.Data.Common/DbDataAdapter.cs:
  752. Moved methods that weren't supposed to
  753. be in SqlDataAdapter out. They should be implemented
  754. in DbDataAdapter.
  755. 2002-05-11 Tim Coleman
  756. * System.Data.SqlClient/SqlDataAdapter.cs:
  757. some implementation of this class. Note
  758. that none of the functionality has been
  759. tested yet, but I felt it should be checked
  760. in at this point as it compiles.
  761. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  762. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  763. Modified so that they will compile properly.
  764. Needed to include SqlDataAdapter in the build.
  765. 2002-05-11 Rodrigo Moya <[email protected]>
  766. * System.Data/DataTable.cs (Clear): implemented.
  767. (DataTable): removed repeated code in constructors, and call the
  768. basic constructor from the others.
  769. * System.Data/DataColumn.cs: some tweaks.
  770. * System.Data/DataRow.cs (RowState): implemented.
  771. (CancelEdit): set rowState property back to Unchanged.
  772. (RejectChanges): call CancelEdit.
  773. (Delete): set rowState to Deleted.
  774. 2002-05-11 Daniel Morgan <[email protected]>
  775. * System.Data.build: added copy of System.Data.dll to Test directory
  776. for easy testing. Also, added clean for it too.
  777. * System.Data.SqlClient/PostgresLibrary.cs: changed setting of boolean
  778. from PostgreSQL data type to .NET type.
  779. * System.Data.SqlClient/SqlDataReader.cs: beginnings
  780. handling of a NULL value from the database
  781. * Test/PostgresTest.cs: added tests for NULL values retrieved
  782. from the database
  783. * Test/ReadPostgresData.cs
  784. * Test/TestExecuteScalar.cs
  785. * Test/TestSqlDataReader.cs
  786. * Test/TestSqlException.cs
  787. * Test/TestSqlIsolationLevel.cs: updated tests to use databas user
  788. "postgres". These tests may eventually be removed since they
  789. are not flexible.
  790. 2002-05-10 Rodrigo Moya <[email protected]>
  791. * System.Data.build: removed reference to non-existant
  792. TestDataColumn.cs file.
  793. * System.Data/DataSet.cs: added some implementation.
  794. 2002-05-09 Daniel Morgan <[email protected]>
  795. * System.Data.SqlClient/PostgresLibrary.cs: got
  796. PostgreSQL data types time, date, timestamp (DateTime like)
  797. mapped to .NET System.DateTime working based
  798. on ISO DateTime formatting "YYYY-MM-DD hh:mi:ss.ms"
  799. Also mapped pg type boolean to .net Boolean
  800. * SqlClient/SqlConnection.cs: run SQL command to set
  801. Date style to ISO
  802. * Test/PostgresTest.cs: added test for an UPDATE SQL command,
  803. added tests for aggregates min(), max(), sum(), count(). could
  804. not get avg() to work due to some formatting error; someone claimed
  805. that it was my locale settings. added tests for SELECT of columns
  806. of type boolean, float, double, date, time, and timestamp. They
  807. have not been fully tested, but its a start.
  808. 2002-05-09 Tim Coleman <[email protected]>
  809. * System.Data.SqlTypes/SqlDecimal.cs: Implementations of
  810. addition, subtraction, and multiplication for the
  811. SqlDecimal type, as well as modification of some other
  812. operations. More to come on this one.
  813. 2002-05-08 Rodrigo Moya <[email protected]>
  814. * Test/System.Data_test.build: excluded TestDataColumn, which
  815. should be replaced with a nunit test.
  816. * Test/TestDataColumn.cs: added basic test for DataColumn.cs.
  817. 2002-05-07 Tim Coleman <[email protected]>
  818. * SqlBinary.cs:
  819. * SqlBoolean.cs:
  820. * SqlByte.cs:
  821. * SqlDateTime.cs:
  822. * SqlDecimal.cs:
  823. * SqlDouble.cs:
  824. * SqlGuid.cs:
  825. * SqlInt16.cs:
  826. * SqlInt32.cs:
  827. * SqlInt64.cs:
  828. * SqlMoney.cs:
  829. * SqlSingle.cs:
  830. * SqlString.cs:
  831. Fix the broken build I made before. Bad
  832. me.
  833. 2002-05-07 Tim Coleman <[email protected]>
  834. * SqlString.cs:
  835. Fix a symantic error I made in SqlString
  836. Equals where I copied and pasted wrongly
  837. 2002-05-07 Tim Coleman <[email protected]>
  838. * INullable.cs:
  839. * SqlBinary.cs:
  840. * SqlBoolean.cs:
  841. * SqlByte.cs:
  842. * SqlCompareOptions.cs:
  843. * SqlDateTime.cs:
  844. * SqlDecimal.cs:
  845. * SqlDouble.cs:
  846. * SqlGuid.cs:
  847. * SqlInt16.cs:
  848. * SqlInt32.cs:
  849. * SqlInt64.cs:
  850. * SqlMoney.cs:
  851. * SqlSingle.cs:
  852. * SqlString.cs:
  853. Implement CompareTo, Equals, and String conversions
  854. for many types
  855. 2002-05-05 Daniel Morgan <[email protected]>
  856. * Test/PostgresTest.cs: modified to run completely. There
  857. are many TODOs in System.Data, so not all data types are
  858. included in the SELECT SQL query. Also, I made it to where
  859. it would connect
  860. using "host=localhost;dbname=test;user=postgres"
  861. instead of my userid and password. When more types are included,
  862. update this test.
  863. 2002-05-05 Daniel Morgan <[email protected]>
  864. * Test/PostgresTest.cs: added - ported
  865. libgda postgres-test.c originally by
  866. Gonzalo Paniagua Javier <[email protected]>
  867. to C#.
  868. 2002-05-05 Tim Coleman <[email protected]>
  869. * System.Data.SqlTypes/SqlBinary.cs:
  870. * System.Data.SqlTypes/SqlBoolean.cs:
  871. * System.Data.SqlTypes/SqlByte.cs:
  872. * System.Data.SqlTypes/SqlDateTime.cs:
  873. * System.Data.SqlTypes/SqlDecimal.cs:
  874. * System.Data.SqlTypes/SqlDouble.cs:
  875. * System.Data.SqlTypes/SqlGuid.cs:
  876. * System.Data.SqlTypes/SqlInt16.cs:
  877. * System.Data.SqlTypes/SqlInt32.cs:
  878. * System.Data.SqlTypes/SqlInt64.cs:
  879. * System.Data.SqlTypes/SqlMoney.cs:
  880. * System.Data.SqlTypes/SqlSingle.cs:
  881. * System.Data.SqlTypes/SqlString.cs:
  882. More implementation, and code clean-up for consistency.
  883. Also, I had implemented many conversions as explicit
  884. that should have been implicit. This should remove
  885. many of the red X's and green pluses from the
  886. System.Data.SqlTypes namespace.
  887. 2002-05-05 Miguel de Icaza <[email protected]>
  888. * System.Data/DataSet.cs: Remove [Serializable] attributes from
  889. methods, those only apply to structs or classes.
  890. Stub out ISerializable, ISupportInitialize, and IListSource methods
  891. * System.Data/DataRowView.cs: Stub out interface methods for
  892. IEditableObject, ICustomTypeDescriptor and IDataErrorInfo
  893. * System.Data/DataView.cs: Comment out non-implemented
  894. interfaces.
  895. * System.Data/DataViewSettingsCollection.cs: Type cast variables
  896. to the correct type to make it compile.
  897. * System.Data/DataViewSettings.cs: remove reference to
  898. non-existance type ApplyDefaultSort, it is a boolean.
  899. 2002-05-05 Tim Coleman <[email protected]>
  900. * System.Data.SqlTypes/SqlBinary.cs:
  901. * System.Data.SqlTypes/SqlBoolean.cs:
  902. * System.Data.SqlTypes/SqlByte.cs:
  903. * System.Data.SqlTypes/SqlDecimal.cs:
  904. * System.Data.SqlTypes/SqlDouble.cs:
  905. * System.Data.SqlTypes/SqlGuid.cs:
  906. * System.Data.SqlTypes/SqlInt16.cs:
  907. * System.Data.SqlTypes/SqlInt32.cs:
  908. * System.Data.SqlTypes/SqlInt64.cs:
  909. * System.Data.SqlTypes/SqlMoney.cs:
  910. * System.Data.SqlTypes/SqlSingle.cs:
  911. * System.Data.SqlTypes/SqlString.cs:
  912. Various fixes, including adding the SqlNullValueException
  913. when trying to retrieve the value of a null SqlType,
  914. and when casting values, a Null of type A converts to a
  915. Null of type B.
  916. 2002-05-04 Daniel Morgan <[email protected]>
  917. * System.Data.SqlClient/PostgresLibrary.cs
  918. * System.Data.SqlClient/SqlCommand.cs
  919. * System.Data.SqlClient/SqlConnection.cs
  920. * System.Data.SqlClient/SqlDataReader.cs
  921. oid should not be hard coded because they
  922. can change from one version of PostgreSQL
  923. to the next. Use the typname's instead.
  924. The PostgreSQL type data retrieves
  925. at database connection time. Any unimplemented
  926. types just default to string. These were things
  927. suggested by Gonzalo.
  928. * Test/ReadPostgresData.cs - stuff
  929. * Test/TestSqlDataReader.cs - stuff
  930. * System.Data.SqlTypes/SqlInt32.cs - added a using
  931. 2002-05-03 Tim Coleman <[email protected]>
  932. * System.Data.build: Fix the build so that test depends on build
  933. 2002-05-03 Tim Coleman <[email protected]>
  934. * System.Data.SqlTypes/SqlByte.cs:
  935. * System.Data.SqlTypes/SqlDateTime.cs:
  936. * System.Data.SqlTypes/SqlDecimal.cs:
  937. * System.Data.SqlTypes/SqlDouble.cs:
  938. * System.Data.SqlTypes/SqlGuid.cs:
  939. * System.Data.SqlTypes/SqlInt16.cs:
  940. * System.Data.SqlTypes/SqlInt64.cs:
  941. * System.Data.SqlTypes/SqlMoney.cs:
  942. * System.Data.SqlTypes/SqlSingle.cs:
  943. These files were mysteriously excluded from the last
  944. patch I made and sent to Rodrigo
  945. * System.Data.build: include the System.Data.SqlTypes in the build
  946. 2002-05-03 Daniel Morgan <[email protected]>
  947. * System.Data.build: removed comments
  948. * System.Data.SqlClient/PostgresLibrary.cs: changed
  949. the hard-coded PostgreSQL oid type int's to using an
  950. enum. Also, added PostgreSQL bpchar (character) type.
  951. * Test/TestSqlDataReader.cs: updated test
  952. to include new bpchar PostgreSQL type
  953. 2002-05-03 Rodrigo Moya <[email protected]>
  954. * System.Data.SqlTypes/SqlBinary.cs:
  955. * System.Data.SqlTypes/SqlBoolean.cs:
  956. * System.Data.SqlTypes/SqlInt32.cs:
  957. * System.Data.SqlTypes/SqlString.cs: more implementation, by
  958. Tim Coleman <[email protected]>.
  959. 2002-05-03 Daniel Morgan <[email protected]>
  960. * Test/TestExecuteScalar.cs: added test for
  961. method ExecuteScalar in class SqlCommand.
  962. * System.Data/DataColumnCollection.cs - it should
  963. inherit properties from base InternalDataCollectionBase
  964. and use them instead of overriding them, such as, List.
  965. * System.Data/DataColumn.cs
  966. * System.Data/DataTable.cs: tweaks to retrieve
  967. meta data from the database
  968. * System.Data.SqlClient/PostgresLibrary.cs -
  969. added method OidToType to convert PostgreSQL oid type
  970. to System.Type. Renamed method OidTypeToSystem
  971. to ConvertPgTypeToSystem for converting the data value
  972. from a PostgreSQL type to a .NET System type.
  973. * System.Data.SqlClient/SqlCommand.cs: implemented
  974. method ExecuteReader which returns a SqlDataReader
  975. for a light forward only read only result set.
  976. It works on types int4 ==> Int32 and
  977. varchar ==> String. Other types
  978. will come later.
  979. * System.Data.SqlClient/SqlConnection.cs: added comment
  980. * System.Data.SqlClient/SqlDataReader.cs: implemented
  981. class. It works, but still lots to do.
  982. * Test/ReadPostgresData.cs: stuff
  983. * Test/TestSqlDataReader.cs: updated test for SqlDataReader
  984. to display meta data and the data
  985. 2002-05-03 Duncan Mak <[email protected]>
  986. * TODO: Took out all the Exceptions. They should be all done now.
  987. * System.Data/ConstraintException.cs:
  988. * System.Data/DBConcurrencyException.cs:
  989. * System.Data/DataException.cs:
  990. * System.Data/DeletedRowInaccessibleException.cs:
  991. * System.Data/DuplicateNameException.cs:
  992. * System.Data/EvaluateException.cs:
  993. * System.Data/InRowChangingEventException.cs:
  994. * System.Data/InvalidConstraintException.cs:
  995. * System.Data/InvalidExpressionException.cs:
  996. * System.Data/MissingPrimaryKeyException.cs:
  997. * System.Data/NoNullAllowedException.cs:
  998. * System.Data/ReadOnlyException.cs:
  999. * System.Data/RowNotInTableException.cs:
  1000. * System.Data/StrongTypingException.cs:
  1001. * System.Data/SyntaxErrorException.cs:
  1002. * System.Data/TypeDataSetGeneratorException.cs:
  1003. * System.Data/VersionNotFoundException.cs: Added to CVS.
  1004. * System.Data.SqlTypes/SqlNullValueException.cs:
  1005. * System.Data.SqlTypes/SqlTruncateException.cs:
  1006. * System.Data.SqlTypes/SqlTypeException.cs: Added to CVS.
  1007. 2002-05-02 Rodrigo Moya <[email protected]>
  1008. * System.Data/DataViewSettingCollection.cs: implemented.
  1009. * System.Data/DataRowView.cs: new stubs.
  1010. * System.Data.SqlTypes/SqlByte.cs:
  1011. * System.Data.SqlTypes/SqlDateTime.cs:
  1012. * System.Data.SqlTypes/SqlDecimal.cs:
  1013. * System.Data.SqlTypes/SqlDouble.cs:
  1014. * System.Data.SqlTypes/SqlGuid.cs:
  1015. * System.Data.SqlTypes/SqlInt16.cs:
  1016. * System.Data.SqlTypes/SqlInt64.cs:
  1017. * System.Data.SqlTypes/SqlMoney.cs:
  1018. * System.Data.SqlTypes/SqlSingle.cs: new stubs, contributed
  1019. by Tim Coleman <[email protected]>
  1020. * System.Data.build: excluded newly-added files.
  1021. 2002-05-02 Daniel Morgan <[email protected]>
  1022. * System.Data.SqlClient/PostgresLibrary.cs: included new
  1023. internal class that will be a helper class in using
  1024. PostgreSQL. PostgresLibrary is used for the
  1025. pinvoke methods to the PostgreSQL Client
  1026. native C library libpq while the class PostgresHelper
  1027. is used for wrapper or helper methods. It currently only
  1028. has one static method OidTypeToSystem in converting
  1029. PostgreSQL types to .NET System.<type>s, such as,
  1030. a PostgreSQL int8 becomes a .NET System.Int64.
  1031. Only a few types have been added, such as, int2,
  1032. int4, int8, varchar, text, bool, and char. Other types
  1033. will come later.
  1034. * System.Data.SqlClient/SqlCommand.cs: implemented
  1035. method ExecuteScalar which allows us to do aggregate
  1036. functions, such as, count, avg, min, max, and sum. We
  1037. also are able to retrieve the result, convert it to the .NET type
  1038. as an object. The user of the returned object must explicitly cast.
  1039. * Test/ReadPostgresData.cs: updated sample
  1040. to help us learn to retrieve data in System.Data.SqlClient
  1041. classes
  1042. 2002-05-01 Daniel Morgan <[email protected]>
  1043. * System.Data.build: added /nowarn: nnnn arguments
  1044. so you will not get a ton of warnings. The warnings
  1045. being excluded are: 1595, 0067, 0109, 0169, and 0649
  1046. 2002-05-01 Daniel Morgan <[email protected]>
  1047. * System.Data.build: modified to exclude more
  1048. files from the build
  1049. 2002-05-01 Rodrigo Moya <[email protected]>
  1050. * System.Data.SqlClient/SqlClientPermission.cs: added missing
  1051. 'using's.
  1052. * System.Data/MergeFailedEventArgs.cs: new class, contributed
  1053. by John Dugaw <[email protected]>.
  1054. * System.Data.build: excluded new files from build.
  1055. 2002-04-29 Daniel Morgan <[email protected]>
  1056. * Test/ReadPostgresData.cs: added - Uses the
  1057. PostgresLibrary to retrieve a recordset.
  1058. This is not meant to be used in Production, but as a
  1059. learning aid in coding
  1060. class System.Data.SqlClient.SqlDataReader.
  1061. This sample does work.
  1062. * Test/TestSqlDataReader.cs: added - used
  1063. to test SqlDataReader (does not work yet)
  1064. Forgot to add to ChangeLog on last commit.
  1065. 2002-04-28 Rodrigo Moya <[email protected]>
  1066. * System.Data/DataViewSetting.cs: new class.
  1067. 2002-04-28 Rodrigo Moya <[email protected]>
  1068. * System.Data/DataViewManager.cs: new class.
  1069. * System.Data.SqlTypes/INullable.cs: properties for interfaces
  1070. don't have implementation.
  1071. * System.Data.SqlTypes/SqlInt32.cs:
  1072. * System.Data.SqlTypes/SqlString.cs:
  1073. * System.Data.SqlTypes/SqlBoolean.cs: removed destructor, since
  1074. these are strctures.
  1075. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: added
  1076. missing 'using's.
  1077. 2002-04-28 Rodrigo Moya <[email protected]>
  1078. * System.Data/DataTableRelationCollection.cs: use 'new' keyword
  1079. for correctly hiding parent class' members.
  1080. (AddRange): use 'override' keyword on overriden method.
  1081. (Clear): likewise.
  1082. (Contains): likewise.
  1083. (IndexOf): likewise.
  1084. (OnCollectionChanged): likewise.
  1085. (OnCollectionChanging): likewise.
  1086. (RemoveCore): likewise.
  1087. * System.Data/DataColumnCollection.cs: use 'new' keyword.
  1088. * System.Data/DataSet.cs: added missing 'using's.
  1089. 2002-04-28 Rodrigo Moya <[email protected]>
  1090. * System.Data/DataSet.cs:
  1091. * System.Data/DataTableCollection.cs:
  1092. * System.Data/DataView.cs: compilation fixes on Linux.
  1093. 2002-04-28 Daniel Morgan <[email protected]>
  1094. * System.Data/DataRelation.cs
  1095. * System.Data/ForeignKeyConstraint.cs
  1096. * System.Data/UniqueConstraint.cs: added more stubs
  1097. * System.Data/DataTableRelationCollection.cs: added back to cvs
  1098. and modified for compile errors. DataRelationCollection is an
  1099. abstract class and there must be a class that implements for
  1100. DataTable/DataSet. DataTableRelationCollection was changed
  1101. to an internal class.
  1102. * System.Data.build: modified - new files added
  1103. also wanted to include files/classes in the build
  1104. so we can get a compilable forward read only result set.
  1105. It compiles now using csc/nant with warnings, but this
  1106. is a start for adding functionality for the result set.
  1107. Classes associated with/and DataSet are still excluded.
  1108. * TODO: modified - updated to do list for System.Data
  1109. * System.Data/Constraint.cs
  1110. * System.Data/ConstraintCollection.cs
  1111. * System.Data/DataRelationCollection.cs
  1112. * System.Data/DataRow.cs
  1113. * System.Data/DataRowChangeEventArgs.cs
  1114. * System.Data/DataRowCollection.cs
  1115. * System.Data/DataTable.cs
  1116. * System.Data/DataTableCollection.cs
  1117. * System.Data/InternalDataCollectionBase.cs
  1118. * System.Data/PropertyCollection.cs: modified -
  1119. changes to compile SqlDataReader/DataTable and
  1120. dependencies
  1121. * System.Data/IDbCommand.cs
  1122. * System.Data.SqlClient/SqlCommand.cs: modified -
  1123. un-commented overloaded methods ExecuteReader
  1124. which returns a SqlDataReader
  1125. 2002-04-28 Rodrigo Moya <[email protected]>
  1126. * System.Data/DataTableCollection.cs: more implementation.
  1127. (Count): added 'override' keyword, as pointer out by Martin.
  1128. * System.Data.Common/DataColumnMappingCollection.cs (Add, AddRange):
  1129. only call Array.Copy when there is really stuff to be copied.
  1130. (CopyTo): don't create the temporary array, it's not needed.
  1131. * System.Data.build: excluded newly added file from build.
  1132. 2002-04-27 Rodrigo Moya <[email protected]>
  1133. * System.Data/DataTableRelationCollection.cs: removed, it's not
  1134. on MS SDK documentation.
  1135. * System.Data/DataTableCollection.cs: new class.
  1136. 2002-04-27 Daniel Morgan <[email protected]>
  1137. * System.Data/DataRowChangeEventArgs.cs
  1138. * System.Data/DataRowCollection.cs
  1139. * System.Data/DataView.cs
  1140. * System.Data/PropertyCollection.cs: added new stubs
  1141. * System.Data.build: modified - added new files to exclude
  1142. from build
  1143. * TODO: modified - removed files from TODO list
  1144. that were stubbed above
  1145. * System.Data/DataColumn.cs
  1146. * System.Data/DataRow.cs: modified - various tweaks
  1147. and added internal method SetTable to set the reference
  1148. to a DataTable
  1149. * System.Data/DataSet.cs: modified - class was not
  1150. completely stubbed.
  1151. * System.Data/DataTable.cs: modified - temporarily commented
  1152. DataSet and DataView references - trying to compile a SqlDataReader,
  1153. DataTable, and dependencies for a forward read-only result set.
  1154. SqlDataAdapter, DataSet, and DataView will come later once we can get
  1155. a forward read only result set working.
  1156. * System.Data/IDataRecord.cs: modified - source code lines should
  1157. not be > 80
  1158. * System.Data/InternalDataCollectionBase.cs: modified - started
  1159. implementing this base class for collection of data rows,
  1160. columns, tables, relations, and constraints
  1161. * System.Data.SqlClient/SqlException.cs: modified -
  1162. call base(message) so a unhandled exception displays
  1163. the message of a SQL error instead of the
  1164. default SystemException message
  1165. * Test/TestSqlException.cs: modified -
  1166. handle the rollback properly for a SqlException on a
  1167. failure to connect
  1168. 2002-04-23 Daniel Morgan <[email protected]>
  1169. * System.Data.build: modified - added new
  1170. files to exclude from build
  1171. * System.Data/Constraint.cs
  1172. * System.Data/ConstraintCollection.cs
  1173. * System.Data/InternalDataCollectionBase.cs: added -
  1174. stubs which are needed to build DataTable.cs
  1175. * TODO: modified - added more classes TODO and
  1176. added more stuff TODO, such as, create script
  1177. to create test database monotestdb for testing
  1178. classes in System.Data
  1179. 2002-04-23 Rodrigo Moya <[email protected]>
  1180. * System.Data.Common/DataAdapter.cs:
  1181. * System.Data.Common/DataColumnMappingCollection.cs:
  1182. * System.Data.Common/DataTableMappingCollection.cs:
  1183. * System.Data.Common/DbDataPermission.cs:
  1184. * System.Data.Common/DbDataPermissionAttribute.cs: some
  1185. compilation errors fixed.
  1186. 2002-04-23 Daniel Morgan <[email protected]>
  1187. * TODO: modified - added classes TODO, and
  1188. a poor attempt at System.Data plan
  1189. 2002-04-23 Daniel Morgan <[email protected]>
  1190. * ChangeLog: modified - put tabs where they belong
  1191. * System.Data.SqlClient/SqlDataReader.cs
  1192. * System.Data/DataColumn.cs: modified - compile errors
  1193. trying to compile SqlDataAdapter and dependencies
  1194. 2002-04-23 Daniel Morgan <[email protected]>
  1195. * System.Data.SqlTypes/SqlBoolean.cs
  1196. * System.Data.SqlTypes/SqlCompareOptions.cs
  1197. * System.Data.SqlTypes/SqlInt32.cs
  1198. * System.Data.SqlTypes/SqlString.cs: added - new stubs
  1199. * System.Data/DataTable.cs
  1200. * System.Data.SqlClient/SqlCommand.cs
  1201. * System.Data.SqlClient/SqlConnection.cs
  1202. * System.Data.SqlClient/SqlError.cs
  1203. * System.Data.SqlClient/SqlTransaction.cs: modified -
  1204. misc. tweaks
  1205. * System.Data.SqlClient/SqlException.cs: modified -
  1206. missing Message on indexer for Message property
  1207. 2002-04-21 Daniel Morgan <[email protected]>
  1208. * System.Data.SqlClient/SqlCommand.cs: modified - to
  1209. compile using mcs. This problem is
  1210. returning a stronger type in csc vs. msc
  1211. * System.Data.SqlClient/SqlConnection.cs: modified - msc
  1212. can not do a using PGconn = IntPtr; and then declare
  1213. with PGconn pgConn = IntPtr.Zero;
  1214. Thiw works under csc though. Had to comment using and
  1215. changed declaration to IntPtr pgConn = IntPtr.Zero;
  1216. Also, got rid of compile warnings for hostaddr and port.
  1217. * System.Data.SqlClient/SqlErrorCollection.cs: modified - got
  1218. rid of compile warnings. Commented MonoTODO attribute because mcs
  1219. doesn't seem to work with C# array property indexer (Item)
  1220. this[int index]
  1221. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  1222. commented MonoTODO attribute for indexer for mcs compiling
  1223. * Test/TestSqlIsolationLevel.cs:
  1224. * Test/TestSqlInsert.cs:
  1225. * Test/TestSqlException.cs: modified -
  1226. removed extra ExecuteNonQuery which caused two inserted rows
  1227. 2002-04-20 Daniel Morgan <[email protected]>
  1228. * System.Data/StateChangeEventArgs.cs - added
  1229. needed to compile System.Data.dll with mcs.
  1230. 2002-04-20 Daniel Morgan <[email protected]>
  1231. * System.Data.OleDb: added directory - for OleDb database
  1232. provider classes
  1233. * System.Data.SqlClient/SqlClientPermission.cs
  1234. * System.Data.SqlClient/SqlClientPermissionAttribute.cs
  1235. * System.Data.SqlClient/SqlCommandBuilder.cs
  1236. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs
  1237. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs
  1238. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs
  1239. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs
  1240. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs
  1241. * Test/TestSqlException.cs
  1242. * Test/TestSqlIsolationLevel.cs: added - more tests
  1243. * System.Data.build: modified - added new files - excludes these too
  1244. * System.Data.SqlClient/PostgresLibrary.cs - modified - comment
  1245. * System.Data.SqlClient/SqlConnection.cs
  1246. * System.Data.SqlClient/SqlCommand.cs
  1247. * System.Data.SqlClient/SqlTransaction.cs
  1248. * System.Data.SqlClient/SqlException.cs
  1249. * System.Data.SqlClient/SqlErrorCollection.cs
  1250. * System.Data.SqlClient/SqlError.cs: modified - transaction and
  1251. exception/error handling. SqlConnection(connectionString)
  1252. constructor should not automatically connect.
  1253. * System.Data.SqlClient/SqlDataReader.cs
  1254. * System.Data.SqlClient/SqlDataAdapter.cs
  1255. * System.Data.SqlClient/SqlParameter.cs
  1256. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  1257. added using System.ComponentModel;
  1258. * Test/TestSqlInsert.cs: modified - to use transaction
  1259. 2002-04-17 Rodrigo Moya <[email protected]>
  1260. * System.Data/DataRow.cs: new skeletons.
  1261. * System.Data.Common/DataAdapter.cs:
  1262. * System.Data.Common/DataColumnMapping.cs:
  1263. * System.Data.Common/DataColumnMappingCollection.cs:
  1264. * System.Data.Common/DataTableMapping.cs:
  1265. * System.Data.Common/DataTableMappingCollection.cs:
  1266. * System.Data.Common/DbDataAdapter.cs:
  1267. * System.Data.Common/RowUpdatedEventArgs.cs:
  1268. * System.Data.SqlClient/SqlDataAdapter.cs:
  1269. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: compilation
  1270. fixes for Linux.
  1271. * System.Data.Common/DbDataRecord.cs:
  1272. * System.Data.Common/DbEnumerator.cs: removed MS implementation
  1273. internal classes.
  1274. 2002-04-17 Daniel Morgan <[email protected]>
  1275. * Test/TestSqlInsert.cs: modified - do
  1276. a SQL DELETE before SQL INSERT of row so you can use this
  1277. test over and over.
  1278. * System.Data.SqlClient/SqlTransaction.cs: modified - default
  1279. IsolationLevel for PostgreSQL is ReadCommitted. However,
  1280. PostgreSQL allows Serializable as well.
  1281. (Thanks to Gonzalo for that!)
  1282. * System.Data.SqlClient/SqlConnection.cs: modified
  1283. * System.Data.SqlClient/SqlCommand.cs: modified
  1284. * System.Data.SqlClient/SqlTransaction.cs: modified - got transactions
  1285. working; however, we still need to implement SQL errors
  1286. and exceptions to properly handle transactions. Also, added
  1287. status and error message support from the PostgreSQL database.
  1288. Currently, this does a Console.WriteLine() to display the
  1289. status and error messages, but this is a TODO
  1290. for SQL errors and exceptions.
  1291. * System.Data/TODOAttribute.cs: added - needed MonoTODO
  1292. attribute for System.Data.dll assembly
  1293. * System.Data/IDbCommand.cs: modified - commented
  1294. overloaded method ExecuteReader
  1295. so System.Data.SqlClient.SqlCommand can compile
  1296. * System.Data/IDbCommand.cs: modified
  1297. * System.Data/IDbConnection.cs: modified - added using System;
  1298. * System.Data/IDataParameter.cs
  1299. * System.Data.build: modified - build classes
  1300. in System.Data.SqlClient and exclude others in System.Data
  1301. * System.Data.SqlClient/PostgresLibrary.cs: modified - change
  1302. parameter data type from IntPtr to enum ExecStatusType
  1303. * ChangeLog: modified - corrected previous entries in log
  1304. 2002-04-16 Rodrigo Moya <[email protected]>
  1305. * System.Data.Common/DataColumnMappingCollection.cs: added basic
  1306. implementation. Still missing some stuff.
  1307. 2002-04-16 Daniel Morgan <[email protected]>
  1308. * System.Data.SqlClient/SqlConnection.cs: modified - got
  1309. to compile, run, and connect to PostgreSQL database
  1310. * System.Data.SqlClient/SqlCommand.cs: modified - got
  1311. to compile, run, and execute a SQL INSERT command
  1312. which successfully inserted a row
  1313. into the PostgreSQL database
  1314. * System.Data.SqlClient/SqlTransaction.cs: modified
  1315. * System.Data.SqlClient/SqlParameter.cs: modified
  1316. * System.Data.SqlClient/SqlParameterCollection.cs: modified
  1317. * System.Data.SqlClient/SqlError.cs: modified
  1318. * System.Data.SqlClient/SqlErrorCollection.cs: modified
  1319. * System.Data.SqlClient/SqlException.cs: modified
  1320. * System.Data.SqlClient/PostgresLibrary.cs: modified - to compile
  1321. * System.Data.SqlClient/SqlAdapter: modified
  1322. * System.Data.SqlClient/SqlReader: modified - add more stubs
  1323. 2002-04-16 Daniel Morgan <[email protected]>
  1324. * Test/TestSqlInsert.cs: added
  1325. 2002-04-15 Daniel Morgan <[email protected]>
  1326. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: added - using in
  1327. class SqlConnecition
  1328. * System.Data.SqlClient/SqlErrorCollection.cs: added
  1329. * System.Data.SqlClient/SqlErrors.cs: removed - no such class SqlErrors
  1330. 2002-04-15 Christopher Podurgiel <[email protected]>
  1331. * System.Data.IDbDataParameter: Added Interface to IDataParameter.
  1332. * System.Data.IDbTransaction: Added Interface to IDisposable.
  1333. * System.Data.IDbCommand: Fixed Capitalization of class name.
  1334. * System.Data.IDbConnection: Fixed Capitalization of class name.
  1335. 2002-04-15 Rodrigo Moya <[email protected]>
  1336. * System.Data.Common/DbDataPermissionAttribute.cs:
  1337. * System.Data.Common/DataAdapter.cs:
  1338. * System.Data.Common/DataColumnMapping.cs:
  1339. * System.Data.Common/DbDataPermission.cs: added some implementation.
  1340. 2002-04-15 Rodrigo Moya <[email protected]>
  1341. * System.Data.SqlClient/SqlConnection.cs: fixed constructor chaining
  1342. syntax, as pointed out by Levent Camlibel.
  1343. 2002-04-14 Rodrigo Moya <[email protected]>
  1344. * System.Data.SqlTypes/SqlBinary.cs:
  1345. * System.Data.SqlTypes/INullable.cs: new skeletons.
  1346. 2002-04-14 Daniel Morgan <[email protected]>
  1347. * System.Data.SqlClient/PostgresLibrary.cs: new internal class, which
  1348. contains all calls the the PostgreSQL client library, to be used
  1349. everywhere in System.Data.SqlClient.
  1350. 2002-03-30 Rodrigo Moya <[email protected]>
  1351. * System.Data.SqlClient/SqlConnection.cs: implemented basic
  1352. constructors.
  1353. * System.Data.SqlTypes/SqlNullValueException.cs: new skeletons.
  1354. 2002-03-29 Rodrigo Moya <[email protected]>
  1355. * System.Data.Common/DbDataRecord.cs:
  1356. * System.Data.Common/DbEnumerator.cs:
  1357. * System.Data.Common/RowUpdatedEventArgs.cs:
  1358. * System.Data.Common/RowUpdatingEventArgs.cs:
  1359. * System.Data.Common/DbDataPermissionAttribute.cs: new skeletons.
  1360. 2002-03-28 Rodrigo Moya <[email protected]>
  1361. * System.Data.Common/DataTableMappingCollection.cs:
  1362. * System.Data.Common/DbDataAdapter.cs:
  1363. * System.Data.Common/DbDataPermission.cs:
  1364. * System.Data.Common/DataTableMapping.cs: new skeletons.
  1365. * System.Data.SqlClient/SqlDataAdapter.cs:
  1366. * System.Data.SqlClient/SqlDataReader.cs:
  1367. * System.Data.SqlClient/SqlErrors.cs:
  1368. * System.Data.SqlClient/SqlError.cs:
  1369. * System.Data.SqlClient/SqlException.cs:
  1370. * System.Data.SqlClient/SqlParameter.cs:
  1371. * System.Data.SqlClient/SqlParameterCollection.cs:
  1372. * System.Data.SqlClient/SqlTransaction.cs:
  1373. * System.Data.SqlClient/SqlCommand.cs: fixed skeletons.
  1374. 2002-03-27 Rodrigo Moya <[email protected]>
  1375. * System.Data.Common/DataColumnMapping.cs:
  1376. * System.Data.Common/DataColumnMappingCollection.cs:
  1377. * System.Data.Common/DataAdapter.cs: created skeletons.
  1378. * System.Data.build: exclude new directories from build.
  1379. 2002-03-27 Rodrigo Moya <[email protected]>
  1380. * System.Data.SqlClient/SqlTransaction.cs: started implementation.
  1381. * System.Data.SqlClient/SqlConnection.cs (BeginTransaction):
  1382. implemented (2 methods).
  1383. 2002-03-24 Duncan Mak <[email protected]>
  1384. * System.Data.build: Excluded System.Data.SqlClient from the build.
  1385. The stubs are incomplete and they are stopping the build.
  1386. * System.Data.SqlClient/SqlCommand.cs: Replaced 'implements' with ':'.
  1387. 2002-03-24 Rodrigo Moya <[email protected]>
  1388. * System.Data.SqlClient/*: added skeletons for the SQL managed
  1389. provider for ADO.Net, to be based initially in PostgreSQL.
  1390. 2002-03-15 Christopher Podurgiel <[email protected]>
  1391. Changed the Namespace on some Enums from mono.System.Data to System.Data
  1392. 2002-03-01 Christopher Podurgiel <[email protected]>
  1393. * DataColumnCollection.cs : When an existing DataColumn is added, will now Assign a
  1394. default name if the ColumnName is null.
  1395. * DataSet.cs : Added
  1396. * DataTable.cs : Added
  1397. * DataRelationCollection.cs : Added
  1398. * DataTableRelationCollection.cs : Added
  1399. * DataColumn : Added
  1400. 2002-02-11 Christopher Podurgiel <[email protected]>
  1401. * DataColumnChangeEventArgs.cs : Added
  1402. * DataColumnCollection.cs : Added
  1403. 2002-02-10 Christopher Podurgiel <[email protected]>
  1404. * Removed *.cs from System.Data as the correct files are in mcs/class/System.Data/System.Data
  1405. * Updated all Enums, Interfaces, and Delegates in System.Data