ChangeLog 23 KB

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