|
1 | 1 | # Change Log
|
2 | 2 |
|
| 3 | +## node-oracledb v1.0.0 (17 Aug 2015) |
| 4 | + |
| 5 | +- Implemented the Stream interface for CLOB and BLOB types, adding support for LOB queries, inserts, and PL/SQL LOB bind variables. |
| 6 | + |
| 7 | +- Added `fetchAsString` and `execute()` option `fetchInfo` properties to allow numbers, dates and ROWIDs to be fetched as strings. |
| 8 | + |
| 9 | +- Added support for binding DATE, TIMESTAMP and TIMESTAMP WITH LOCAL TIME ZONE as `DATE` to DML RETURNING (aka RETURNING INTO) `type`. |
| 10 | + |
| 11 | +- The internal Oracle client character set is now always set to AL32UTF8. |
| 12 | + |
| 13 | +- The test suite and example scripts database credentials can now be set via environment variables. |
| 14 | + |
| 15 | +- Fixed issues with database-to-client character set conversion by allocating extra memory to allow for character expansion. |
| 16 | + |
| 17 | +- Fixed a crash with `ResultSet` and unsupported column data types. |
| 18 | + |
| 19 | +- Fixed a crash allocating memory for large `maxRows` values. |
| 20 | + |
| 21 | +- Fixed a bug preventing closing of a `ResultSet` when `getRow()` or `getRows()` returned an error. |
| 22 | + |
| 23 | +- Fixed date precision issues affecting insert and query. |
| 24 | + |
| 25 | +- Fixed `BIND_OUT` bind `type` not defaulting to `STRING`. |
| 26 | + |
| 27 | +- Fixed INSERT of a date when the SQL has a RETURNING INTO clause and the bind style is array format. |
| 28 | + |
| 29 | +- Improved RETURNING INTO handling of unsupported types and sizes. |
| 30 | + |
| 31 | +- Correctly throw an error when array and named bind syntaxes are mixed together. |
| 32 | + |
3 | 33 | ## node-oracledb v0.7.0 (20 Jul 2015)
|
4 | 34 |
|
5 | 35 | - Added result set support for fetching large data sets.
|
|
14 | 44 |
|
15 | 45 | - Fixed INSERT of a date when the SQL has a RETURNING INTO clause.
|
16 | 46 |
|
17 |
| -- Renumbered the values used by the Oracledb Constants |
| 47 | +- Renumbered the values used by the Oracledb Constants. |
18 | 48 |
|
19 | 49 | ## node-oracledb v0.6.0 (26 May 2015)
|
20 | 50 |
|
|
28 | 58 |
|
29 | 59 | - Changed the `isExternalAuth` attribute name to `externalAuth`.
|
30 | 60 |
|
31 |
| -- Fixed outBinds array counting to not give empty array entries for IN binds. |
| 61 | +- Fixed `outBinds` array counting to not give empty array entries for IN binds. |
32 | 62 |
|
33 | 63 | - Added support for DML RETURNING bind variables.
|
34 | 64 |
|
|
0 commit comments