ChangeLog 21 KB

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