ChangeLog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. 2007-02-09 Nagappan A <[email protected]>
  2. * OdbcDataReader.cs (GetDecimal): Implemented new API.
  3. 2007-01-08 Nagappan A <[email protected]>
  4. * OdbcFactory.cs: Fixed compilation warning.
  5. * OdbcCategoryAttribute.cs (Category): Implemented missing
  6. property.
  7. * OdbcParameterCollection.cs: Fixed compilation warning.
  8. * OdbcCommandBuilder.cs (GetInsertCommand, GetUpdateCommand)
  9. (GetDeleteCommand): Implemented overloaded method.
  10. * OdbcTransaction.cs: Modified partial content of DOS format file
  11. to UNIX format.
  12. 2006-07-13 Senganal T <[email protected]>
  13. * OdbcTransaction.cs OdbcCommand.cs OdbcConnectionFactory.cs
  14. OdbcPermission.cs OdbcDataReader.cs OdbcParameterCollection.cs
  15. OdbcConnection.cs OdbcFactory.cs OdbcParameter.cs :
  16. 2.0 Api fixes
  17. 2006-05-31 Gert Driesen <[email protected]>
  18. * OdbcErrorCollection.cs: Removed explicit interface implementation
  19. of IEnumerable.GetEnumerator ().
  20. * OdbcCommand.cs: Removed destructor as the destructor in
  21. System.ComponentModel.Component already calls the Dispose method.
  22. Removed explicit interface implemenation of members that are
  23. implement by public members.
  24. * OdbcDataReader.cs: Removed explicit interface implemenation of
  25. IDataRecord.GetData.
  26. 2006-05-24 Senganal T <[email protected]>
  27. * OdbcColumn.cs :
  28. - Added IsVariableSizeType : Handle types with variable datasize
  29. * OdbcTypeConverter.cs : map LongVarBinary to Image
  30. * OdbcDataReader.cs :
  31. - GetValue () : Handle Text,Image datatypes differently. Only allocate
  32. storage for the data contained and not for MaxLength. Fixes #78234
  33. 2006-05-09 Senganal T <[email protected]>
  34. * OdbcConnection.cs : Implemented ChangeDatabase Method
  35. * libodbc.cs : Added value for CurrentCatalog in OdbcConnectionAttribute
  36. 2006-02-17 Chris Toshok <[email protected]>
  37. * OdbcDataReader.cs: remove VisibleFieldCount property.
  38. 2005-11-21 Senganal T <[email protected]>
  39. * OdbcTransaction.cs
  40. * OdbcCommandBuilder.cs
  41. * OdbcParameterCollection.cs
  42. * OdbcDataReader.cs
  43. * OdbcFactory.cs
  44. * OdbcDataAdapter.cs
  45. * OdbcParameter.cs
  46. Added stubs and other changes for ADO.NET 2.0 compatibility
  47. 2005-10-14 Senganal T <[email protected]>
  48. * OdbcColumn.cs : Changed the mapping of OdbcType.Char to string
  49. instead of char. Fixes bug #67269
  50. 2005-10-14 Senganal T <[email protected]>
  51. * OdbcDataReader.cs: Added Text and NText datatypes to the list
  52. of datatypes checked by GetValue () method. Fixes bug #75032
  53. 2005-10-14 Sureshkumar T <[email protected]>
  54. * OdbcDataReader.cs (GetValue): Use SQL_CHAR for Numeric as
  55. temporary fix.
  56. * OdbcParameter.cs (CopyValue): Add support for Numeric & Decimal
  57. parameters.
  58. 2005-10-08 Sureshkumar T <[email protected]>
  59. * OdbcCommand.cs (BindParameters): Copy the parameter Value after
  60. binding.
  61. * OdbcParameter.cs: re-implemented the native buffer handling and
  62. odbc type handling.
  63. * NativeBuffer.cs: A native buffer class to hold pointer to native
  64. memory.
  65. * OdbcTypeMap.cs (OdbcTypeMap): structure to hold different odbc
  66. types and the default mapping.
  67. * OdbcTypeConverter.cs: Simplified mapping between different odbc
  68. types using switch-case.
  69. * libodbc.cs (SQLBindParameter): use only one entry point and use
  70. IntPtr instead of ref.
  71. 2005-08-20 Gert Driesen <[email protected]>
  72. * OdbcDataReader.cs: Marked GetPrimaryKeysBySQLStatistics unsafe.
  73. This fixes the build on Windows (using csc).
  74. 2005-08-09 Sureshkumar T <[email protected]>
  75. * OdbcDataReader.cs: GetSchemaTable (): set values for the column
  76. attributes using SQLColAttribute. If SQLPrimaryKeys does not
  77. yeild, try SQLStatistics. Optimized primary key logic.
  78. * libodbc.cs: Added api SQLStatistics and constants.
  79. * OdbcParameter.cs: setBuffer (): allocate a short int buffer for
  80. OdbcType.SmallInt. fixes bug #75600.
  81. 2005-08-08 Gert Driesen <[email protected]>
  82. * OdbcConnection.cs: Marked Init helper method private.
  83. * OdbcCommand.cs: Marked BindParameters helper method private.
  84. 2005-08-08 Sureshkumar T <[email protected]>
  85. * OdbcDataReader.cs: Implemented Dispose pattern. Cache
  86. schematable for same result set. don't free command's statements
  87. if the command is prepared.
  88. * OdbcConnection.cs: Open (): set disposed to false so that close
  89. will be called in Dispose.
  90. * OdbcCommand.cs:
  91. - Prepare (): Split SQLPrepare and SQLBind so that
  92. already prepared statements can be reused with new parameter
  93. values.
  94. - ExecSQL (): create new statement handle, if not prepared
  95. and there are no parameters. if there are parameters, prepare and
  96. use.
  97. - Implemented Dispose pattern
  98. - Streamlined the allocation and de-allocation of statement
  99. handles.
  100. 2005-08-05 Sureshkumar T <[email protected]>
  101. * OdbcDataReader.cs: RecordsAffected: get value from command.
  102. GetSchemaTable (): set IsExpression based on BaseTableName. set
  103. AllowDBNull to false if the column is PK.
  104. * OdbcCommand.cs: correct UpdatedRowSource is returned. whitespace
  105. changes to conform to standard.
  106. * OdbcCommandBuilder.cs: Implemented.
  107. * OdbcParameter.cs: Direction is set to Input by default.
  108. 2005-07-22 Sureshkumar T <[email protected]>
  109. * OdbcParameter.cs: updated attributes & attribute descriptions to
  110. match with masterinfos.
  111. * OdbcDataReader.cs: NextRow (): made private.
  112. 2005-07-21 Sureshkumar T <[email protected]>
  113. * OdbcDataReader.cs: GetValue (): added case for OdbcType.Bit. and
  114. Formatting corrections. Fixes bug #75574.
  115. 2005-07-07 Sureshkumar T <[email protected]>
  116. * OdbcTypeConverter.cs: ConvertToSqlType & ConvertToSqlCType: map
  117. VarChar to SQL_C_CHAR and SQL_VARCHAR respective instead of WCHAR
  118. and WVARCHAR as temporary fix.
  119. * OdbcParameter.cs: setBuffer: string types need not be quoted.
  120. 2005-06-28 Sureshkumar T <[email protected]>
  121. * OdbcDataReader.cs: GetPrimaryKeys (): use the length indicator
  122. for GetString, otherwise, it creates a string of length 255. Use
  123. ArrayList for keys as the columns are different from the selected
  124. columns. fixes bug #75263.
  125. 2005-06-09 Sureshkumar T <[email protected]>
  126. * OdbcDataReader.cs: GetValue (): return decimal in case of odbc
  127. type Numeric. Move the temp buffer logic inside.
  128. * OdbcTypeConverter.cs: map SQL_TYPE.NUMERIC to SQL_C_TYPE.CHAR by
  129. now, since PgSql driver seems not to accept NUMERIC c type. Other
  130. database anyway, provides NUMERIC datatype as DECIMAL.
  131. 2005-05-31 Sureshkumar T <[email protected]>
  132. * OdbcParameter.cs: setBuffer (): for numeric type, the buffer
  133. parameter should be a packed decimal struct. fixes bug #75041.
  134. 2005-04-05 Sureshkumar T <[email protected]>
  135. * OdbcParameter.cs: SqlBindParameter requires the last parameter
  136. to be a ref.
  137. * libodbc.cs: API change for above.
  138. 2005-04-04 Sureshkumar T <[email protected]>
  139. * OdbcDataReader.cs: Ignore BaseTableName & BaseColumnName
  140. properties while building Schema information as most drivers
  141. ignores these properties. e.g. PostgreSQL.
  142. 2005-03-24 Sureshkumar T <[email protected]>
  143. Appasamy <[email protected]>
  144. * OdbcColumn.cs: IsStringType: OdbcType.Char is also of type
  145. String.
  146. * OdbcDataReader.cs: GetSchemaTable: Get Additional info using
  147. SQLColAttribute. Don't pad with spaces in GetColAttributeStr.
  148. 2005-03-24 Sureshkumar T <[email protected]>
  149. * OdbcDataReader.cs:
  150. - GetValue: Decode only outsize length for SQL_C_TYPE.CHAR type in
  151. SQLGetData.
  152. - GetOrdinal: Perform case insensitive lookup if sensitive lookup
  153. fails.
  154. 2005-03-22 Sureshkumar T <[email protected]>
  155. Appsamy <[email protected]>
  156. * libodbc.cs (System.Data.Odbc): Added enum FieldIdentifier. Added
  157. library functions SQLPrimaryKeys, SQLBindCol and SQLColAttribute.
  158. * OdbcDataReader.cs: Implemented GetPrimaryKeys to get the primary
  159. keys associated with resultset using SQLPrimaryKeys.
  160. 2005-03-15 Sureshkumar T <[email protected]>
  161. * OdbcConnection.cs: re-throw error on exception in Open method.
  162. 2005-03-11 Sureshkumar T <[email protected]>
  163. * OdbcConnection.cs : notify state change through event. clean up
  164. handles in case any exception while opening a connection. NET_2_0
  165. uses base class's OnStateChange handler.
  166. 2005-03-10 Sureshkumar T <[email protected]>
  167. Migrated core classes to derive from ProviderBase instead of
  168. implementing IDb* interfaces. Most part of these files have been
  169. branched with #if NET_2_0/ONLY_1_1. Make sure any changes works
  170. with both the profiles.
  171. * OdbcFactory.cs: Concrete Factory for DbProviderFactory. Factory
  172. to generate Connection,Command,etc.
  173. * OdbcConnectionFactory.cs: Concrete factory for DbConnectionFactory.
  174. * OdbcTransaction.cs: migration and overrides.
  175. * OdbcCommandBuilder.cs: migration and overrides.
  176. * OdbcDataReader.cs: --do--. no command behavior member as it will
  177. be maintained in base provider class.
  178. * OdbcParameterCollection.cs: --do--. Now, local ArrayList is not
  179. maintained here, instead it is in base class. Most of the methods
  180. which operated on this list are not needed in NET_2_0.
  181. * OdbcConnection.cs: Migration. connectionString is maintained in
  182. DbConnectionBase class.
  183. * OdbcParameter.cs: Migration. Many of the local members like
  184. value,sourceColumn are maintained in DbParameterBase.
  185. * OdbcCommand.cs: Migration. commandText,timeout and
  186. commandTimeOut are maintained in DbCommandBase class.
  187. 2005-03-10 Sureshkumar T <[email protected]>
  188. * OdbcType.cs: Added enums for SQL_TYPE & SQL_C_TYPE.
  189. * libodbc.cs: Accept SQL_C_TYPE for driver
  190. parameters. SQLBindParameter takes two parameters SQL_TYPE and
  191. SQL_C_TYPE. This caused the whole lot of changes done in this
  192. revision.
  193. * OdbcParameter.cs: Set default values of OdbcType & DbType. Pass
  194. mapped SQL_TYPE and SQL_C_TYPE to SQLBindParameter. Increase
  195. buffer size by 2 for additional ' chars.
  196. * OdbcTypeConverter.cs: Added class to convert between OdbcType,
  197. SQL_TYPE, SQL_C_TYPE.
  198. * OdbcColumn.cs: Added private members for SQL_TYPE and
  199. SQL_C_TYPE. conversion from/to odbctype to/from SQL_TYPE is done
  200. through OdbcTypeConverter class.
  201. * OdbcDataReader.cs: use OdbcColumn's SQL_C_TYPE member. It keeps
  202. track of default mapping between odbctype, SQL_TYPE and
  203. SQL_C_TYPE. Move dataTableSchema.AcceptChanges inside if condition
  204. to avoid null reference exception.
  205. 2005-02-04 Sureshkumar T <[email protected]>
  206. Appasamy <[email protected]>
  207. * OdbcConnection.cs: Implemented properties database, datasource,
  208. serverversion and driver.
  209. * libodbc.cs: Added type OdbcInfo and native call SQLGetInfo.
  210. 2005-01-20 Sureshkumar T <[email protected]>
  211. * OdbcDataReader.cs: case for type OdbcType.Double added in
  212. GetValue. fixes bug #71173.
  213. Thanks to patch given by "Appasamy T" <[email protected]>
  214. 2005-01-19 Sureshkumar T <[email protected]>
  215. * OdbcType.cs: Change enum values for compatiability with MS.NET.
  216. * libodbc.cs: Change enum values for compatiability with
  217. MS.NET. Change calls into driver with native type.
  218. * OdbcDataReader.cs: Change enum values for compatiability with
  219. MS.NET. Change calls from/into driver with native type.
  220. 2005-01-18 Sureshkumar T <[email protected]>
  221. * OdbcDataReader.cs: GetOrdinal need not check for
  222. currentRow. Return -1 if column name is not found.
  223. fixes bug #71261. Thanks to patch given by "Appasamy T"
  224. <[email protected]>.
  225. 2005-01-13 Sureshkumar T <[email protected]>
  226. * OdbcDataReader.cs: Implement NextResultSet for multiple result
  227. set queries.
  228. * OdbcDataReader.cs: build column schema once creating reader and
  229. then for each Next result set. Thanks to
  230. [email protected] (Sebastien Robitaille) for
  231. pointing out this optimization (bugzilla #70530).
  232. * libodbc.cs: Added library calls SQLFreeStmt and SQLMoreResults
  233. for mutiple resultsets.
  234. 2005-01-10 Sureshkumar T <[email protected]>
  235. * OdbcDataReader.cs: Connection has to be closed only after
  236. Statement handle is freed. fixes bug #70048.
  237. 2005-01-07 Sureshkumar T <[email protected]>
  238. * OdbcDataReader.cs: Pass OdbcCType.SignedBigInt for accessing big
  239. int columns.
  240. * OdbcType.cs: Added a new enum for Odbc C DataTypes. This should
  241. essentially be passed to drivers, since the public OdbcType types
  242. differs from types expected in drivers in some cases.
  243. * libodbc.cs : Added a ODBC method which takes OdbcCType
  244. enumeration for SQLGetData for BigInt fields.
  245. fixes bug #65342.
  246. 2004-12-28 Duncan Mak <[email protected]>
  247. * libodbc.cs: Change all the DllImport attributes to point to
  248. "odbc32.dll" instead of "odbc32", because /etc/mono/config lists
  249. "odbc32.dll" (all other entries in the file have the .dll suffix
  250. as well, for consistency's sake, let's rename it here.)
  251. This fixes #70727.
  252. 2004-12-03 Sureshkumar T <[email protected]>
  253. * OdbcParameter.cs: Fixed a null reference exception when a
  254. parameter is created and its value is not set. #68750.
  255. 2004-11-26 Sureshkumar T <[email protected]>
  256. * OdbcParameter.cs: Fixed Parameter Size property as well as
  257. insufficient buffer errors. bug #68749.
  258. 2004-09-14 Sebastien Pouliot <[email protected]>
  259. * OdbcPermission.cs: Added internal constructor accepting an Odbc
  260. PermissionAttribute parameter (using base class protected ctor).
  261. * OdbcPermissionAttribute.cs: Copy now use the new OdbcPermission
  262. constructor.
  263. 2004-09-13 Sebastien Pouliot <[email protected]>
  264. * OdbcPermission.cs: Mostly completed (needs tests).
  265. * OdbcPermissionAttribute.cs: Completed.
  266. 2004-08-31 Umadevi S ([email protected])
  267. * OdbcDataReader.cs - Fixed Decimal parsing
  268. 2004-08-30 Umadevi S ([email protected])
  269. * OdbcType.cs - removed inheritance from short.
  270. 2004-08-27 Sureshkumar T ([email protected])
  271. * OdbcDataReader.cs - fixed bug #63539 - TINYINT ODBC datatype is converted into System.Byte
  272. 2004-08-26 Sureshkumar T ([email protected])
  273. * OdbcDataReader.cs - Date & DateTime GetValue fixed.
  274. GetBytes ordinal parameter passing fixed for BINARY in GetValue.
  275. 2004-08-20 Sureshkumar T ([email protected])
  276. * OdbcConnection.cs - correct handles are passed to OdbcError exception to trap the correct error
  277. 2004-08-04 Umadevi S ([email protected])
  278. * OdbcDataReader.cs - Fixed bug 61832 - Column names were not filled, due to which name based lookup of columns failed.
  279. 2004-08-04 Umadevi S ([email protected])
  280. * OdbcDataReader.cs - Fixed bug 61405 - Handling smallint column type.
  281. 2004-07-30 Sureshkumar T ([email protected])
  282. * OdbcCommand.cs: ExecuteNonQuery Closed statement handle to fix memory leak
  283. * OdbcDataReader.cs: Closed statement handle to fix memory leak
  284. Removed SQLState login in GetBytes coz OdbcError provides the same.
  285. 2004-07-29 Umadevi S ([email protected])
  286. * OdbcCommand.cs - Fixed bug 62046. ExecuteNonQuery implemented correctly
  287. 2004-07-28 Umadevi S ([email protected])
  288. * OdbcParameter.cs - fixed bug 61968. String values passed with quotes
  289. 2004-07-07 Umadevi S ([email protected])
  290. * OdbcConnection.cs - Allowed Close to be called multiple times
  291. - Implementation of Dispose method
  292. 2004-07-07 Umadevi S ([email protected])
  293. * OdbcCommand.cs : fixed set method for Transaction
  294. 2004-07-01 Sureshkumar T ([email protected])
  295. * OdbcCommand.cs : fixed reader problem with ExecuteScalar
  296. 2004-06-23 Sureshkumar T ([email protected])
  297. * OdbcConnection.cs: Fix: Moved env allocation to Open method.
  298. Disconnection & freeing handles are done in Close
  299. method to avoid simultaneous connections.
  300. * libodbc.cs : Added constants for odbc version.
  301. 2004-06-16 Gert Driesen <[email protected]>
  302. * OdbcError.cs: fixed serialization compatibility with MS.NET
  303. * OdbcErrorCollection.cs: fixed serialization compatibility with
  304. MS.NET
  305. * OdbcException.cs: fixed serialization compatibility with MS.NET
  306. 2004-06-16 Sureshkumar T ([email protected])
  307. * OdbcDataReader.cs: Added GetValue support for Sql Binary type to return byte array.
  308. Implemented GetBytes method.
  309. * libodbc.cs : Added enums, constants & imports for above fix.
  310. 2004-06-13 Gert Driesen <[email protected]>
  311. * OdbcDataReader.cs: changed GetData method to return IDataReader
  312. to match MS.NET
  313. 2004-06-09 Sureshkumar T ([email protected])
  314. * OdbcDataReader.cs: Removed checking of currentRow in GetName
  315. method
  316. 2004-06-04 Gert Driesen <[email protected]>
  317. * OdbcPermission.cs: moved Obsolete attribute to correct
  318. ctor
  319. 2004-06-02 Sureshkumar T ([email protected])
  320. * OdbcDataReader.cs: Implemented GetByte method. Fixed bug #58820
  321. 2004-06-02 Gert Driesen <[email protected]>
  322. * OdbcParameter.cs: added missing attributes
  323. * OdbcPermission.cs: added missing attributes
  324. * OdbcConnection.cs: fixes attribute, added missing attributes
  325. * OdbcInfoMessageEventArgs.cs: removed extra properties, fixed
  326. API compatibility with MS.NET
  327. * OdbcCommandBuilder.cs: use correct attributes
  328. 2004-05-20 Gert Driesen ([email protected])
  329. * OdbcPermissionAttribute.cs: change AllowMultiple and
  330. Inherited to match .NET
  331. 2004-05-17 Umadevi S ([email protected])
  332. * OdbcPermissionAttribute, OdbcPermission.cs - fixed missing methods
  333. 2004-05-17 Gert Driesen ([email protected])
  334. * OdbcCategoryAttribute.cs: fixed namespace
  335. * OdbcDataAdapter.cs: removed extra attributes
  336. * OdbcDescriptionAttribute.cs: fixed namespace
  337. 2004-05-14 Umadevi S ([email protected])
  338. * OdbcParameterConverter.cs -Added
  339. * OdbcParameter.cs - Added some attributes
  340. 2004-05-14 Umadevi S ([email protected])
  341. * OdbcDataAdapter.cs - Added Attributes
  342. 2004-05-14 Umadevi S ([email protected])
  343. * OdbcConnection.cs - Added Attributes
  344. 2004-05-14 Umadevi S ([email protected])
  345. * OdbcCommand.cs - Added Attributes
  346. 2004-05-14 Umadevi S ([email protected])
  347. * OdbcDataReader.cs - Added Attributes
  348. 2004-05-14 Umadevi S ([email protected])
  349. * Added Classes OdbcCategoryAttribute.cs, OdbcDescriptionAttribute.cs
  350. 2004-05-14 Umadevi S ([email protected])
  351. * Added Class OdbcCommandBuilder.cs
  352. 2004-05-14 Umadevi S ([email protected])
  353. * Added classes OdbcInfoMessageEventArgs.cs - with stubs
  354. * Added classes OdbcInfoMessageEventInfo.cs
  355. 2004-05-14 Umadevi S ([email protected])
  356. * Added classes OdbcPermission.cs, OdbcPermissionAttribute.cs - with stubs
  357. 2004-05-09 Gert Driesen ([email protected])
  358. * OdbcException.cs : removed ErrorCode property, fixing signature
  359. * OdbcErrorCollection.cs : added internal ctor, reduced
  360. accessibility of Add method to internal
  361. * OdbcCommand.cs: marked hstmt field private, remove setters for
  362. Parameters property
  363. * OdbcDataReader.cs: Added GetDate method, renamed GetTimeSpan to
  364. GetTime to match MS.NET, added HasRows stub
  365. 2004-05-09 Gert Driesen ([email protected])
  366. * OdbcError.cs:
  367. * OdbcErrorCollection.cs:
  368. * OdbcException.cs: fixed linefeeds to DOS to match other
  369. sources in System.Data.Odbc
  370. 2004-05-09 Gert Driesen ([email protected])
  371. * OdbcCommand.cs: No longer use OdbcConnection.Datareader, in order
  372. to fix signature of OdbcConnection
  373. * OdbcDataReader.cs: No longer use ODbcConnection.Datareader, in
  374. order to fix signature of OdbcConnection
  375. * OdbcConnection.cs: Signature fixes: removed DataReader property,
  376. added setter for ConnectionTimeout, made transaction internal
  377. * OdbcParameter.cs: reduced accessibility of Bind method to
  378. internal, added setter for IsNullable
  379. * OdbcParameterCollection.cs: made default ctor and Bind method
  380. internal
  381. 2004-05-09 Gert Driesen ([email protected])
  382. * OdbcCommand.cs: fixed linefeeds to DOS to match other sources
  383. in System.Data.Odbc
  384. 2004-05-09 Gert Driesen ([email protected])
  385. * OdbcTransaction.cs: fixed signature to match MS.NET
  386. 2004-05-09 Gert Driesen ([email protected])
  387. * OdbcType.cs: fixed typo UniqueIndetifier
  388. * OdbcColumn.cs : fixed typo UniqueIndetifier
  389. 2004-05-09 Gert Driesen ([email protected])
  390. * OdbcType.cs: fixed linefeeds to DOS to match other sources
  391. in System.Data.Odbc
  392. 2003-12-01 Gonzalo Paniagua Javier <[email protected]>
  393. * OdbcTransaction.cs: applied patch from Jeff Seifert that makes
  394. this class implement IDbTransaction interface.
  395. 2002-11-01 Daniel Morgan <[email protected]>
  396. * OdbcDataReader.cs: - uncommented code, but I put a FIXME:
  397. according to Brian, this does not work on MS .NET however, we need it
  398. for Mono for now. schemaRow.AcceptChanges(),
  399. - implement IEnumerable.GetEnumerator()
  400. * libodbc.cs: changed the DllImport from "odbc32.dll" to "odbc32"
  401. 2002-10-21 Gonzalo Paniagua Javier <[email protected]>
  402. * ChangeLog: added.
  403. * OdbcError.cs:
  404. * OdbcException.cs: added dummy implementation for these missing
  405. classes.