ChangeLog 25 KB

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