ChangeLog 22 KB

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