ChangeLog 20 KB

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