ChangeLog 22 KB

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