ChangeLog 23 KB

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