10. ODPI-C Release notes
10.1. Version 5.1 (TBD)
Added members
dpiDataTypeInfo.domainSchema
,dpiDataTypeInfo.domainName
, anddpiDataTypeInfo.annotations
which provide the SQL domain and annotations associated with a column in Oracle Database 23c. Also requires Oracle Client 23.1 or higher.Added methods
dpiConn_getDbDomain()
,dpiConn_getDbName()
,dpiConn_getMaxOpenCursors()
,dpiConn_getServiceName()
, anddpiConn_getTransactionInProgress()
in order to provide additional metadata about the database.Added new type
DPI_ORACLE_TYPE_XMLTYPE
for data of typeSYS.XMLTYPE
to the dpiOracleTypeNum enumeration. Previously data of this type was returned asDPI_ORACLE_TYPE_LONG_VARCHAR
, which was unclear.
10.2. Version 5.0.1 (October 10, 2023)
Fixed bug resulting in a segfault on some platforms when using two-phase commit.
10.3. Version 5.0 (August 15, 2023)
Added function
dpiSodaColl_listIndexes()
in order to get a list of the indexes for a SODA collection.Added function
dpiContext_freeStringList()
which replaces the function dpiSodaDb_freeCollectionNames(). The new structure dpiStringList replaces the old structure dpiSodaCollNames. The old names are deprecated and will be removed in a future version.Added support for member
dpiSodaOperOptions.lock
. This can only be used with Oracle Client 21.3 and higher (also available in Oracle Client 19 from 19.11).Added attribute
dpiDataTypeInfo.isJson
which is set to true when columns are fetched that are of type DPI_ORACLE_TYPE_JSON or have the “IS JSON” constraint enabled.Added method
dpiConn_getInstanceName()
in order to be able to get the Oracle Database instance name associated with the connection. This is the same value as given by the SQL expressionsys_context('userenv', 'instance_name')
.Added support for the embedded OIDs found in SODA documents in Oracle Database 23c.
Adjusted the value of the attribute
dpiJsonNode.nativeTypeNum
to be DPI_NATIVE_TYPE_FLOAT when the value stored in JSON is a float value. Previously the value was DPI_NATIVE_TYPE_DOUBLE (issue 174).Added support for automatically retrying a query if the error
ORA-00932: inconsistent data types
is raised (which can occur if a table or view is recreated with a data type that is incompatible with the column’s previous data type).Dropped functions dpiConn_beginDistribTrans() and dpiConn_prepareDistribTrans() which were deprecated in version 4.3.
10.4. Version 4.6.1 (March 30, 2023)
Added support for the “signed int”, “signed long” and “decimal128” scalar types in JSON (generally only seen when converting from MongoDB).
10.5. Version 4.6 (November 10, 2022)
Added attributes
packageName
andpackageNameLength
to structure dpiObjectTypeInfo.Defer debugging startup until first use of an ODPI-C function instead of upon loading of the library.
10.6. Version 4.5 (September 13, 2022)
Added support for OAuth token authentication when creating standalone connections and connection pools.
Added support for enqueuing and dequeuing JSON payloads using Advanced Queuing (AQ). Functions
dpiConn_newJson()
,dpiConn_newJsonQueue()
,dpiMsgProps_getPayloadJson()
anddpiMsgProps_setPayloadJson()
were added to support this functionality.
10.7. Version 4.4.1 (June 14, 2022)
Fixed ability to use constant DPI_ORACLE_TYPE_LONG_NVARCHAR when creating variables to fetch NCLOB values.
Adjusted test suite and samples for token based authentication to more closely follow the behavior of the Oracle Client libraries.
10.8. Version 4.4 (May 20, 2022)
Added support for token based authentication when establishing pool based connections and standalone connections.
Added method
dpiMsgProps_setRecipients()
to support the recipients list message property of AQ.Added attribute
dpiSubscrMessage.aqMsgId
which provides the message id of an AQ message that is available to dequeue.Added constant DPI_ORACLE_TYPE_LONG_NVARCHAR. This type cannot be represented in an Oracle database but is used when fetching NCLOB data as a string.
Fixed bug resulting in a segfault when certain errors occur during the binding of a variable (issue 168).
Prefer the use of memcpy() over strncpy(), even though embedded NULL characters in XID values are extremely unlikely (issue 175).
Fixed bug resulting in error ORA-25263 when attempting to dequeue a message with a specific message ID that is known to exist.
Improved documentation and the test suite.
10.9. Version 4.3 (November 4, 2021)
Added methods
dpiData_getJson()
,dpiData_getJsonArray()
,dpiData_getJsonObject()
to retrieve the value of the data when the native types are DPI_NATIVE_TYPE_JSON, DPI_JSON_TYPE_JSON_ARRAY and DPI_NATIVE_TYPE_JSON_OBJECT respectively.Added method
dpiJson_setFromText()
to set a JSON value from a JSON string.Added method
dpiVar_setFromJson()
to set the value of a JSON variable to a specified JSON value.Enhanced support for TPC (two-phase commit). The functions
dpiConn_tpcBegin()
,dpiConn_tpcCommit()
,dpiConn_tpcEnd()
,dpiConn_tpcForget()
,dpiConn_tpcPrepare()
anddpiConn_tpcRollback()
were added. The functions dpiConn_beginDistribTrans() and dpiConn_prepareDistribTrans() are deprecated and will be removed in a future version.Added function
dpiConn_setEcontextId()
to enable setting the execution context id attribute on connections.Added method
dpiStmt_deleteFromCache()
to exclude the associated SQL statement from getting added to the statement cache.Added support for setting JSON node values using the following type combinations: DPI_ORACLE_TYPE_NATIVE_DOUBLE with DPI_NATIVE_TYPE_DOUBLE and DPI_ORACLE_TYPE_NATIVE_FLOAT with DPI_NATIVE_TYPE_FLOAT (issue 155).
The method OCIAQDeq() is now used for single message dequeue in order to support dequeue of Oracle Transactional Event Queue (TEQ) messages.
Added function
dpiConn_getIsHealthy()
to do a local, light-weight connection health check.Added constant DPI_ORACLE_TYPE_UROWID as a synonym for DPI_ORACLE_TYPE_ROWID and placeholder for when it is possible to distinguish between ROWID and UROWID columns in the database.
10.10. Version 4.2.1 (June 1, 2021)
Added support for caching the database version in pooled connections with Oracle Client 19 and earlier (later Oracle Clients handle this caching internally). This optimization eliminates a round-trip previously often required when reusing a pooled connection.
Fixed a regression with error messages raised during connection creation.
All errors identified as causing a dead connection now populate
dpiErrorInfo.sqlState
with the value 01002 instead of only a hard-coded list of errors.Improved documentation and the test suite.
10.11. Version 4.2 (May 18, 2021)
Added methods
dpiPool_getMaxSessionsPerShard()
,dpiPool_getPingInterval()
,dpiPool_setMaxSessionsPerShard()
,dpiPool_setPingInterval()
anddpiPool_reconfigure()
in order to support changing pool configuration after the pool has been created.Added support for the SODA metadata cache available in Oracle Client 21.3 and higher (also available in Oracle Client 19 from 19.11). This significantly improves the performance of repeated calls to methods
dpiSodaDb_createCollection()
(when not specifying a value for the metadata parameter) anddpiSodaDb_openCollection()
. The memberdpiCommonCreateParams.sodaMetadataCache
has been added and functionsdpiPool_getSodaMetadataCache()
anddpiPool_setSodaMetadataCache()
have been added.Added support for supplying hints to SODA operations. The members
dpiSodaOperOptions.hint
anddpiSodaOperOptions.hintLength
were added and methodsdpiSodaColl_insertOneWithOptions()
,dpiSodaColl_insertManyWithOptions()
anddpiSodaColl_saveWithOptions()
were added. These can only be used with Oracle Client 21.3 and higher (also available in Oracle Client 19 from 19.11).Added support for specifying the size of the statement cache when a pool or standalone connection is created. The member
dpiCommonCreateParams.stmtCacheSize
was added and can be populated with the desired value prior to callingdpiPool_create()
ordpiConn_create()
.Added function
dpiLob_getType()
in order to get the type of a LOB, as requested (issue 135).Changed the requirement for the method
dpiSodaColl_save()
to Oracle Client 19.9 or higher (instead of 20.1 or higher).Added flag to internal calls made by method
dpiSodaColl_getDataGuide()
to ensure that the returned content is in encoding UTF-8. This ensures consistency with other SODA documents returned by ODPI-C.Corrected internal handling of flags sent to
dpiSodaDocCursor_getNext()
anddpiSodaCollCursor_getNext()
.The distributed transaction handle assosciated with the connection is now cleared on commit or rollback (cx_Oracle issue 530).
When calling
dpiJson_getValue()
, any cached value is now cleared before getting the new value in order to take into account possible calls todpiJson_setValue()
that were made in between or to take into account the passing of different flags (issue 154).Corrected internal handling of client version information when creating multiple contexts (issue 156).
Threaded mode is now always enabled when creating pools, regardless of what mode is provided in the
dpiCommonCreateParams.createMode
member in order to provide for greater safety. Although there may be instances where threaded mode is not strictly needed, these are few and any advantages are minimal.Improved dead connection detection. If any error occurs that indicates that the connection is no longer usable, the connection is marked as dead and the unified error DPI-1080: connection was closed by ORA-%d (where the %d is replaced by the Oracle error that caused the connection to be closed) is returned instead. Attempts to use the connection after this result in the error DPI-1010: not connected being returned. This includes call timeout errors such as when
dpiConn_setCallTimeout()
is called with a value set too low to allow the connection to break the executing statement and reset after the timeout occurs.Improved documentation and the test suite.
10.12. Version 4.1 (December 8, 2020)
Added support for the new JSON data type available in Oracle Client and Database 21 and higher.
Added methods
dpiConn_getOciAttr()
,dpiConn_setOciAttr()
,dpiStmt_getOciAttr()
anddpiStmt_setOciAttr()
in order to be able to get and set OCI attributes that are otherwise not supported by ODPI-C. These methods should only be used as directed by Oracle.Workaround unexpected error when calling
dpiLob_readBytes()
with a very small value in the valueLength parameter (issue 146).Ensure that calls to
dpiStmt_setPrefetchRows()
are honored when binding as a REF cursor.Improved documentation and the test suite.
10.13. Version 4.0.2 (August 31, 2020)
Adjusted check for GNU version of strerror_r() on Cygwin as suggested (issue 138).
Up to 40 digits can be represented in an unconstrained Oracle number so allow for that possibility (cx_Oracle issue 459).
Correct double free error (issue 141).
Improved documentation and adjusted test suite.
10.14. Version 4.0.1 (June 26, 2020)
Ensure that all members of the
dpiErrorInfo
structure parameter are set properly during a call todpiContext_getError()
.
10.15. Version 4.0 (June 25, 2020)
Replaced function
dpiContext_create()
withdpiContext_createWithParams()
. A new structure dpiContextCreateParams can be passed to this function, enabling applications or drivers to modify how the Oracle Client library is loaded. In particular the structure allows the directories for Oracle Client libraries and configuration files to be specified. The original functiondpiContext_create()
is still available as a macro that calls the new function and passes NULL for the parameters (meaning all built-in defaults will be used).The default encoding for all character data is now UTF-8 but can be overridden by setting the member
dpiContextCreateParams.defaultEncoding
before callingdpiContext_createWithParams()
. Setting the membersdpiCommonCreateParams.encoding
anddpiCommonCreateParams.nencoding
to NULL will use theNLS_LANG
andNLS_NCHAR
environment variables, which was the previous default.The algorithm by which the Oracle Client library is loaded was improved. See the installation guide for more details.
Added new debugging level (64) for debugging the loading of the Oracle Client libraries (https://github.com/oracle/odpi/issues/131). See ODPI-C Debugging for more details.
Renamed debugging level 1 to
DPI_DEBUG_LEVEL_UNREPORTED_ERRORS
to be more clear as to its purpose.Added methods
dpiSodaColl_save()
anddpiSodaColl_truncate()
available in Oracle Client 20 and higher.Added member
dpiSodaOperOptions.fetchArraySize
which defines the array size to use when fetching SODA documents from a collection. It is available in Oracle Client 19.5 and higher.Internally make use of new mode available in Oracle Client 20.3 and higher in order to avoid a round-trip when calling
dpiConn_getServerVersion()
withreleaseString
set to NULL.Added member
dpiErrorInfo.isWarning
to identify warnings that are returned when callingdpiContext_getError()
. After a method returnsDPI_SUCCESS
, a call todpiContext_getError()
can be made to determine if a warning has been created. Calling any other function will result in the warning being cleared. Known warnings includeORA-28002: the password will expire within %d days
(after a successful call todpiPool_create()
ordpiConn_create()
) andORA-24344: success with compilation error
(after a successful call todpiStmt_execute()
to create a stored procedure with compilation errors).Modified member
dpiErrorInfo.offset
to be 32-bit and added new memberdpiErrorInfo.offset16
for backwards compatibility; in this way row offsets that exceed 65536 can be reported successfully (node-oracledb issue 1157).Added method
dpiConn_startupDatabaseWithPfile()
in order to support starting up the database with a parameter file (PFILE), as requested (issue 41).Added support for converting all three timestamp types to/from double values (number of milliseconds since January 1, 1970) as used by frameworks such as Node.js.
When an INSERT ALL statement is executed, return NULL in the
rowid
parameter todpiStmt_getLastRowid()
instead of the errorDPI-1004: unable to get error message
.Added methods
dpiStmt_getPrefetchRows()
anddpiStmt_setPrefetchRows()
in order to control how many rows the Oracle Client library prefetches when callingdpiStmt_execute()
for a query (issue 73).Added support for returning DATE values as
DPI_NATIVE_TYPE_DOUBLE
, as commonly used by environments like Node.jsAdded DLL export attribute for Windows, as suggested by Kubo (issue 126).
Improved documentation, samples, tutorial and test suite.
10.16. Version 3.3 (December 2, 2019)
Added support for CQN and other subscription
clientInitiated
connections to the database (as opposed to the default server initiated connections).Added function
dpiStmt_getLastRowid()
for getting the rowid of the last row affected by a DML statement (issue 111).Added support for setting the
maxSessionsPerShard
attribute for session pools.Added support for providing double input for DATE sharding keys, as required by environments like Node.js.
Corrected processing of DATE sharding keys (sharding requires a slightly different format to be passed to the server).
Added support for using TIMESTAMP columns as sharding keys.
Added check to ensure sharding key is specified when a super sharding key is specified.
Improved error message when the library is loaded successfully but the attempt to detect the version of the library fails, either due to the fact that the library is too old or the method could not be called for some reason (node-oracledb issue 1168).
Adjusted support for creating a connection using an existing service context handle. The service context handle and its associated environment handle are now used directly in order to avoid potential memory corruption.
Made the
releaseString
andreleaseStringLength
parameters todpiConn_getServerVersion()
optional since they are not frequently used.Added
ORA-3156: OCI call timed out
to the list of error messages that result in error DPI-1067.Allow a NULL pointer to be passed to
dpiVar_setFromBytes()
anddpiLob_setFromBytes()
when the length is zero.Improved documentation and test suite.
10.17. Version 3.2.2 (October 1, 2019)
Ensured that sharding keys are dedicated to the connection that is acquired using them in order to avoid possible hangs, crashes or unusual errors.
Corrected support for PLS_INTEGER and BINARY_INTEGER types when used in PL/SQL records (issue 112).
Improved documentation for
dpiLob_getSize()
,dpiLob_readBytes()
anddpiLob_writeBytes()
regarding the lengths reported in number of characters (issue 94).
10.18. Version 3.2.1 (August 12, 2019)
A more meaningful error is now returned when calling
dpiSodaColl_insertMany()
with an empty array.A more meaningful error is now returned when calling
dpiSubscr_prepareStmt()
with SQL that is not a SELECT statement.Eliminated a segfault when calling
dpiConn_close()
when a value was specified for the connection class during connection creation.Added documentation discussing round-trips to the database, as requested (issue 108).
Improved processing of internal handle lists.
10.19. Version 3.2 (July 1, 2019)
Added support for enqueue and dequeue of RAW payloads and for bulk enqueue and dequeue of messages. The methods dpiConn_deqObject() and dpiConn_enqObject() are deprecated and will be removed in version 4.0. The new methods
dpiConn_newQueue()
,dpiQueue_deqMany()
,dpiQueue_deqOne()
,dpiQueue_enqMany()
anddpiQueue_enqOne()
should be used instead (issue 58 and issue 104).Added support for getting the registration id for a CQN subscription, as requested (node-oracledb issue 1075).
Removed preview status from existing SODA functionality. See this tracking issue for known issues with SODA.
Added support for a preview of SODA bulk insert, available in Oracle Client 18.5 and higher.
Added support for setting the LOB prefetch length indicator in order to reduce the number of round trips when processing LOB values.
Added support for getting and setting timestamp and date attributes of objects as double values (number of milliseconds since January 1, 1970), as preferred by some environments like Node.js.
Added support for types BINARY_INTEGER, PLS_INTEGER, ROWID, LONG and LONG RAW when used in PL/SQL.
Eliminated memory leak when fetching objects that are atomically null (cx_Oracle issue 298).
Eliminated memory leak when setting LOB attributes on objects.
Eliminated bug when attempting to unregister a subscription while callbacks are ongoing.
Eliminated bug when processing the string representation of numbers like 1e-08 and 1e-09 (cx_Oracle issue 300).
Eliminated attempt to adjust the time a session was last used (to manage internal pool pinging functionality) if the pool is being closed.
Eliminated potential segfault when an implicit result statement is closed before its parent statement is closed.
Eliminated overhead by deferring the creation of OCI error handles until they are needed.
Replaced prefix “Test” with “Demo” on all sample file names.
Added additional test cases.
Documentation improvements.
10.20. Version 3.1.4 (April 24, 2019)
Added support for getting the row count for PL/SQL statements (cx_Oracle issue 285).
10.21. Version 3.1.3 (March 12, 2019)
Ensure that the strings “-0” and “-0.0” are correctly handled as zero values (cx_Oracle issue 274).
When using an external handle, create a new service context handle so that there are no discrepancies in character sets between the service context and the newly created environment handle (cx_Oracle issue 273).
Eliminated error when startup and shutdown events are generated (issue 102).
Improved documentation.
10.22. Version 3.1.2 (February 19, 2019)
10.23. Version 3.1.1 (February 4, 2019)
Improved code preventing a statement from binding itself, in order to avoid a potential segfault under certain cirumstances.
Always set
dpiConnCreateParams.outNewSession
to the appropriate value when callingdpiPool_acquireConnection()
ordpiConn_create()
.Worked around OCI bug when attempting to free objects that are PL/SQL records, in order to avoid a potential segfault.
Added samples demonstrating how to fetch CLOBs as strings and BLOBs as bytes (preferred for smaller LOBs).
Documentation improvements based on feedback (issue 87, issue 88, issue 90, issue 91, issue 92).
10.24. Version 3.1 (January 21, 2019)
Added support for getting and setting attributes of type RAW on Oracle objects, as requested (issue 72).
Added function
dpiData_getIsNull()
for getting the null indicator from a dpiData structure and functiondpiData_setNull()
for setting a value to null, as requested (issue 82).Added support for fetching SYS.XMLTYPE objects as string data, limited to the VARCHAR2 length (cx_Oracle issue 14).
Added support for multi-property session tags and added attribute
dpiPoolCreateParams.plsqlFixupCallback
for identifying a PL/SQL callback that will be executed when a requested tag doesn’t match the tag associated with a pooled connection. Both of these features are only available in Oracle Client 12.2 and higher.The attribute
dpiConnCreateParams.outNewSession
was added to support determining if a session in a pool is completely new and has never been acquired from the pool.Added support for performing external authentication with proxy for standalone connections.
Added error message when external authentication with proxy is attempted without placing the user name in [] (proxy authentication is otherwise silently ignored).
Exempted additional error messages from forcing the statement to be dropped from the cache (issue 76).
Tightened up handling of numeric values when converted from a string representation. The error message returned when the string cannot be converted to an Oracle number was also improved.
Completed enabling of pool pinging functionality for 12.2+ clients (see attribute
dpiPoolCreateParams.pingInterval
for more information on this feature).Ensured that the connection returned from the pool after a failed ping (such as due to a killed session) is not itself marked as needing to be dropped.
Eliminated memory leak under certain circumstances when pooled connections are released back to the pool.
Eliminated memory leak when connections are dropped from the pool.
Eliminated memory leak when calling
dpiConn_close()
after fetching collections from the database.Adjusted order in which memory is freed when the last references to SODA collections, documents, document cursors and collection cursors are released, in order to prevent a segfault under certain circumstances.
Improved error message when using an older version of the ODPI-C library.
Added additional test cases.
Improved documentation.
10.25. Version 3.0.0 (September 13, 2018)
Added support for Oracle Client 18 libraries.
Added support for SODA (as preview). See SODA Database, SODA Collection and SODA Document for more information.
Added support for call timeouts available in Oracle Client 18.1 and higher. See functions
dpiConn_setCallTimeout()
anddpiConn_getCallTimeout()
.Added support for setting a LOB attribute of an object with string/bytes using the function
dpiObject_setAttributeValue()
.Added support for the packed decimal type used by object attributes with historical types DECIMAL and NUMERIC (cx_Oracle issue 212).
On Windows, first attempt to load oci.dll from the same directory as the module that contains ODPI-C.
SQL Objects that are created or fetched from the database are now tracked and marked unusable when a connection is closed. This was done in order to avoid a segfault in some circumstances.
Improved support for closing pools by ensuring that once a pool has closed, further attempts to use connections acquired from that pool will fail with error “DPI-1010: not connected”.
Re-enabled pool pinging functionality for Oracle Client 12.2 and higher to handle classes of connection errors such as resource profile limits.
Improved error messages when the Oracle Client or Oracle Database need to be at a minimum version in order to support a particular feature.
Use plain integers instead of enumerations in order to simplify code and reduce the requirement for casts. Typedefs have been included so that code does not need to be changed.
Eliminated potential buffer overrun (issue 69).
In the Makefile for non-Windows platforms, the version information for ODPI-C is acquired directly from include/dpi.h as suggested (issue 66).
Removed function dpiConn_newSubscription(). Use function
dpiConn_subscribe()
instead.Removed function dpiLob_flushBuffer(). This function never worked anyway.
Removed function dpiSubscr_close(). Use function
dpiConn_unsubscribe()
instead.Removed function dpiVar_getData(). Use function
dpiVar_getReturnedData()
instead.Added additional test cases.
Improved documentation.
10.26. Version 2.4.2 (July 9, 2018)
Avoid buffer overrun due to improper calculation of length byte when converting some negative 39 digit numbers from string to the internal Oracle number format (issue 67).
10.27. Version 2.4.1 (July 2, 2018)
Use the install_name_tool on macOS to adjust the library name, as suggested (issue 65).
Even when dequeue fails OCI still provides a message id so make sure it is deallocated to avoid a memory leak.
Ensure that the row count for queries is reset to zero when the statement is executed (cx_Oracle issue 193).
If the statement should be deleted from the statement cache, first check to see that there is a statement cache currently being used; otherwise, the error “ORA-24300: bad value for mode” will be raised under certain conditions.
10.28. Version 2.4 (June 6, 2018)
Added support for grouping events for subscriptions. See attributes
dpiSubscrCreateParams.groupingClass
,dpiSubscrCreateParams.groupingValue
anddpiSubscrCreateParams.groupingType
.Added support for specifying the IP address a subscription should use instead of having the Oracle Client libraries determine the IP address to use on its own. See attributes
dpiSubscrCreateParams.ipAddress
anddpiSubscrCreateParams.ipAddressLength
.Added support for subscribing to notifications when messages are available to dequeue in an AQ queue. See attribute
dpiSubscrCreateParams.subscrNamespace
and the enumeration dpiSubscrNamespace as well as the attributesdpiSubscrMessage.queueName
,dpiSubscrMessage.queueNameLength
,dpiSubscrMessage.consumerName
anddpiSubscrMessage.consumerNameLength
.Added attribute
dpiSubscrMessage.registered
to allow the application to know when a subscription is no longer registered with the database. Deregistration can take place when thedpiSubscrCreateParams.timeout
value is reached or whendpiSubscrCreateParams.qos
is set to the value DPI_SUBSCR_QOS_DEREG_NFY. Note that notifications are not sent when a subscription is explicitly deregistered.Added method
dpiConn_subscribe()
to replace method dpiConn_newSubscription() and added methoddpiConn_unsubscribe()
to replace method dpiSubscr_close(). The replaced methods are deprecated and will be removed in version 3.0. The new methods clarify the fact that subscriptions do not require the connection they were created with to remain open. A new connection with the same credentials can be used to unusbscribe from events in the database.Added support for the pool “get” mode of timed wait. See attributes
dpiPoolCreateParams.getMode
anddpiPoolCreateParams.waitTimeout
. The wait timeout value can be acquired after pool creation using the new methoddpiPool_getWaitTimeout()
and set after pool creation using the new methoddpiPool_setWaitTimeout()
.Added support for setting the maximum lifetime session and timeout parameters when creating a pool. See attributes
dpiPoolCreateParams.maxLifetimeSession
anddpiPoolCreateParams.timeout
.Added support for installing ODPI-C into a user-defined prefix on platforms other than Windows, as requested (issue 59).
Added support for setting the SONAME for shared libraries on platforms other than Windows, as requested (issue 44).
Improved error message when attempting to create a subscription without enabling events mode when the pool or standalone connection is created.
Added checks for minimal Oracle Client version (12.1) when calling the methods
dpiPool_getMaxLifetimeSession()
anddpiPool_setMaxLifetimeSession()
.Added check to prevent attempts to bind PL/SQL array variables using the method
dpiStmt_executeMany()
.Ensure that method
dpiStmt_getRowCount()
returns the value 0 for all statements other than queries and DML, as documented.Correct handling of ROWIDs and statements when used as bind variables during execution of DML RETURNING statements.
Added additional test cases.
Improved documentation.
10.29. Version 2.3.2 (May 7, 2018)
Ensure that a call to unregister a subscription only occurs if the subscription is still registered.
Ensure that before a statement is executed that any dynamic buffers created for DML returning statments are reset since the out bind callback is not called if no rows are returned!
Silenced compilation warning in test suite.
Added test cases for DML returning statements.
10.30. Version 2.3.1 (April 25, 2018)
Fixed determination of the number of rows returned in a DML Returning statement when the same statement is executed multiple times in succession with less rows being returned in each succeeding execution.
Stopped attempting to unregister a CQN subscription before it was completely registered. This prevents errors encountered during registration from being masked by an error stating that the subscription has not been registered!
Fixed support for true heterogeneous session pools that use different user/password combinations for each session acquired from the pool.
Added error message indicating that modes DPI_MODE_EXEC_BATCH_ERRORS and DPI_MODE_EXEC_ARRAY_DML_ROWCOUNTS are only supported with insert, update, delete and merge statements.
Corrected comment (issue 61).
Renamed internal method dpiStmt__preFetch() to dpiStmt__beforeFetch() in order to avoid confusion with OCI prefetch.
10.31. Version 2.3 (April 2, 2018)
Corrected support for getting the OUT values of bind variables bound to a DML Returning statement when calling the function
dpiStmt_executeMany()
. Since multiple rows can be returned for each iteration, a new functiondpiVar_getReturnedData()
has been added and the original functiondpiVar_getData()
has been deprecated and will be removed in version 3.Corrected binding of LONG data (values exceeding 32KB) when using the function
dpiStmt_executeMany()
.Added code to verify that the CQN subscription is open before permitting it to be used. Error “DPI-1060: subscription was already closed” will now be raised if an attempt is made to use a subscription that was closed earlier.
Added error “DPI-1061: edition is not supported when a new password is specified” to clarify the fact that specifying an edition and a new password at the same time is not supported. Previously the edition value was simply ignored.
Query metadata is no longer fetched if executing a statement with mode DPI_MODE_EXEC_PARSE_ONLY.
Added additional statement types (DPI_STMT_TYPE_EXPLAIN_PLAN, DPI_STMT_TYPE_ROLLBACK and DPI_STMT_TYPE_COMMIT) as well as one that covers statement types not currently identified (DPI_STMT_TYPE_UNKNOWN).
Improved error message when older OCI client libraries are being used that don’t have the method OCIClientVersion().
Corrected the handling of ANSI types REAL and DOUBLE PRECISION as implemented by Oracle. These types are just subtypes of NUMBER and are different from BINARY_FLOAT and BINARY_DOUBLE (cx_Oracle issue 163).
Added check that the return value from OCI functions matches the expected value of OCI_ERROR, and if not, raises an error including the value that was actually returned.
Added additional test cases.
Removed unused error messages.
10.32. Version 2.2.1 (March 5, 2018)
Maintain a reference to the “parent” object and use the actual object instance instead of a copy, so that “child” objects can be manipulated in-place instead of having to be created externally and then set (attributes) or appended (collections).
Correct handling of boundary numbers 1e126 and -1e126.
Eliminate memory leak when calling
dpiConn_deqObject()
anddpiConn_enqObject()
.Eliminate memory leak when setting NCHAR and NVARCHAR attributes of objects.
Eliminate memory leak when fetching collection objects from the database.
Prevent internal re-execution of statement from duplicating itself in the list of open statements maintained on the connection.
Improved documentation.
10.33. Version 2.2 (February 14, 2018)
Keep track of open statements and LOBs and automatically close them when the connection is closed; this eliminates the need for users of the driver to do so and removes the error “DPI-1054: connection cannot be closed when open statements or LOBs exist”.
Ignore failures that occur during the implicit rollback performed when a connection is closed, but if an error does occur, ensure that the connection is dropped from the pool (if it was acquired from a pool); such failures are generally due to an inability to communicate with the server (such as when your session has been killed).
Avoid a round trip to the database when a connection is released back to the pool by preventing a rollback from being called when there is no transaction in progress.
Improve error message when the use of bind variables is attempted with DDL statements, which is not supported.
Since rowid is returned as a handle, the size in bytes and characters was simply being returned as the size of a pointer; set these values to 0 instead as is done with other handles that are returned.
Ensure that the LOB locator returned from the object attribute or element is not used directly as freeing it will result in unexpected behavior when the object containing it is itself freed.
Make a copy of any objects that are acquired from other objects (either as attributes or elements of collections) in order to prevent possible use of the object acquired in such a fashion after the object it came from has been freed.
Protect global variables on destruction as well since dpiGlobal__finalize() may not be the last method that is called if other methods are registered with atexit().
Use cast to avoid assertions with isspace() when using debug libraries on Windows (issue 52).
Added file embed/dpi.c to simplify inclusion of ODPI-C in projects.
Minor changes to satisfy pickier compilers and static analysis tools.
Added additional test cases.
Improved documentation.
10.34. Version 2.1 (December 12, 2017)
Connections
Support was added for accessing sharded databases via sharding keys (new in Oracle 12.2). NOTE: the underlying OCI library has a bug when using standalone connections. There is a small memory leak proportional to the number of connections created/dropped. There is no memory leak when using session pools, which is recommended.
Added options for authentication with SYSBACKUP, SYSDG, SYSKM and SYSRAC, as requested (cx_Oracle issue 101).
Attempts to release statements or free LOBs after the connection has been closed (by, for example, killing the session) are now prevented.
An error message was added when specifying an edition and a connection class since this combination is not supported.
Attempts to close the session for connections created with an external handle are now prevented.
Attempting to ping a database earlier than 10g results in ORA-1010: invalid OCI operation, but that implies a response from the database and therefore a successful ping, so treat it that way! (see https://github.com/rana/ora/issues/224 for more information).
Objects
Support was added for converting numeric values in an object type attribute to integer and text, as requested (issue 35).
Methods
dpiDeqOptions_setMsgId()
anddpiMsgProps_setOriginalMsgId()
now set their values correctly.The overflow check when using double values as input to float attributes of objects or elements of collections was removed as it didn’t work anyway and is a well-known issue that cannot be prevented without removing desired functionality. The developer should ensure that the source value falls within the limits of floats, understand the consequent precision loss or use a different data type.
Variables
Support was added for setting a LOB variable using
dpiVar_setFromBytes()
.Added support for the case when the time zone minute offset is negative, as requested (issue 38).
Variables of type DPI_NATIVE_TYPE_BYTES are restricted to 2 bytes less than 1 GB (1,073,741,822 bytes), since OCI cannot handle more than that currently.
Miscellaneous
Support was added for identifying the id of the transaction which spawned a CQN subscription message, as requested (issue 32).
Corrected use of subscription port number (cx_Oracle issue 115).
Added support for getting information about MERGE statements, as requested (issue 40).
Problems reported with the usage of FormatMessage() on Windows was addressed (issue 47).
On Windows, if oci.dll cannot be loaded because it is the wrong architecture (32-bit vs 64-bit), attempt to find the offending DLL and include the full path of the DLL in the message, as suggested (issue 49).
Debugging
Support was added to the debugging infrastructure to print the thread id and the date/time of messages. Support for an environment variable DPI_DEBUG_PREFIX was also added. See ODPI-C Debugging.
Support was added for debugging both entry and exit points of ODPI-C public functions and for memory allocation/deallocation.
Infrastructure
Dependent libraries were moved to the main Makefile so that applications do not have to do that, as suggested (issue 33).
Added Makefile.win32 for the use of nmake on Windows and reworked existing Makefiles to support only platforms other than Windows.
Ensure that ODPI-C extended initialization code takes place before any other ODPI-C code can take place, and that it takes place in only one thread. Code was also added to cleanup the global OCI environment on process exit.
The OCI wrapers for using mutexes were eliminated, which improves performance.
Force OCI prefetch to always use the value 2; the OCI default is 1 but setting the ODPI-C default to 2 ensures that single row fetches don’t require an extra round trip to determine if there are more rows to fetch; this change also reduces the potential memory consumption when fetchArraySize was set to a large value and also avoids performance issues discovered with larger values of prefetch.
Unused parameters for internal functions were removed where possible and
__attribute((unused))
added where not possible, as requested (issue 39).The use of OCIThreadKeyInit() in any code other than the global initialization code was removed in order to avoid bugs in the OCI library.
Compiler warnings and Parfait warnings were eliminated.
Added additional test cases.
Documentation improvements.
Deprecations
The function dpiLob_flushBuffer() is deprecated and will be removed in version 3. It previously always returned an error anyway because of the inability to enable LOB buffering and now always returns the error “DPI-1013: not supported”.
10.35. Version 2.0.3 (November 6, 2017)
Prevent use of unitialized data in certain cases (cx_Oracle issue 77).
Attempting to ping a database earlier than 10g results in error “ORA-1010: invalid OCI operation”, but that implies a response from the database and therefore a successful ping, so treat it that way!
Some values represented as double do not convert perfectly to float; use FLT_EPSILON to check the difference between the two after conversion, rather than expect the values to convert perfectly.
Prevent use of NaN with Oracle numbers since it produces corrupt data (cx_Oracle issue 91).
Verify that Oracle objects bound to cursors, fetched from cursors, set in object attributes or appended to collection objects are of the correct type.
Correct handling of NVARCHAR2 when used as attributes of Oracle objects or elements of collections (issue 45).
10.36. Version 2.0.2 (August 30, 2017)
Don’t prevent connection from being explicitly closed when a fatal error has taken place (cx_Oracle issue 67).
Correct handling of objects when dynamic binding is performed.
Process deregistration events without an error.
Eliminate memory leak when calling dpiObjectType_createObject().
10.37. Version 2.0.1 (August 18, 2017)
Ensure that any allocated statement increments the open child count (issue 27).
Correct parameter subscrId to dpiConn_newSubscription() as noted. There is no OCI documentation for this attribute and should never have been exposed. The parameter is therefore deprecated and will be removed in version 3. The value NULL can now also be passed to this parameter.
Add script for running valgrind and correct issues found in test suite reported by valgrind (issue 29).
Use posix_spawn() instead of system() in the test suite, as requested (issue 30).
Add support for DML Returning statements that require dynamically allocated variable data (such as CLOBs being returned as strings).
10.38. Version 2.0.0 (August 14, 2017)
Added new structure dpiDataTypeInfo and modified structures dpiQueryInfo, dpiObjectAttrInfo and dpiObjectTypeInfo in order to add support for fractional seconds precision on timestamps and interval day to second values (issue 22) and to support additional metadata on object types and attributes (issue 23).
Prevent closing the connection when there are any open statements or LOBs and add new error “DPI-1054: connection cannot be closed when open statements or LOBs exist” when this situation is detected; this is needed to prevent crashes under certain conditions when statements or LOBs are being acted upon while at the same time (in another thread) a connection is being closed; it also prevents leaks of statements and LOBs when a connection is returned to a session pool.
Added support for binding by value for rowids in
dpiStmt_bindValueByPos()
anddpiStmt_bindValueByName()
.On platforms other than Windows, if the regular method for loading the Oracle Client libraries fails, try using $ORACLE_HOME/lib/libclntsh.so (issue 20).
Use the environment variable DPI_DEBUG_LEVEL at runtime, not compile time, to add in debugging.
Added support for DPI_DEBUG_LEVEL_ERRORS (reports errors and has the value 8) and DPI_DEBUG_LEVEL_SQL (reports prepared SQL statement text and has the value 16) in order to further improve the ability to debug issues.
Ensure that any prefetch activities are performed prior to performing the fetch in
dpiStmt_scroll()
.Provide means of disabling thread cleanup for situations where threads are created at startup and never terminated (such as takes place with Node.js).
Add script sql/TestEnv.sql and read environment variables during test execution in order to simplify the running of tests.
Add script sql/SampleEnv.sql and read environment variables during sample execution in order to simplify the running of samples.
Adjust Makefile for tests and samples (issue 24).
Added additional test cases.
Documentation improvements.
10.39. Version 2.0.0-rc.2 (July 20, 2017)
Improved error messages when initial OCI environment cannot be created.
On Windows, convert system message to Unicode first, then to UTF-8; otherwise, the error message returned could be in a mix of encodings.
Added support for converting from text to number in object attributes and collection element values.
Added checks on all pointers to ensure they are not NULL.
Added checks on all pointer/length combinations to ensure that they are not NULL and non-zero at the same time.
Ensure that the thread specific errors are freed properly.
Corrected handling of connections using DRCP.
Corrected issue where error getting a pooled connection was masked by error “DPI-1002: invalid OCI handle”.
PL/SQL boolean values are not supported until Oracle Client 12.1 so raise an unsupported error if an attempt is made to use them in Oracle Client 11.2.
Allow the parameter numQueryColumns to be null in
dpiStmt_execute()
as a convenience to those who do not require that information.Added url fragment and whether a 32-bit or 64-bit library is expected to error “DPI-1047: Oracle Client library cannot be loaded” in order to improve the help provided.
Added prefix “ODPI: ” to start of all debug messages to aid in differentiating between them and other messages in log files.
Added additional test cases.
Documentation improvements.
10.40. Version 2.0.0-rc.1 (June 16, 2017)
OCI requires that both
encoding
andnencoding
have values or that both encoding and encoding do not have values. The missing value is set to its default value if one of the values is set and the other is not (issue 36).Add optimization when client and server character sets are identical; in that case the size in bytes reported by the server is sufficient to hold the data that will be transferred from the server and there is no need to expand the buffer for character strings.
Corrected handling of BFILE LOBs.
Eliminated errors and warnings when using AIX compiler.
Documentation improvements.
10.41. Version 2.0.0-beta.4 (May 24, 2017)
Added support for getting/setting attributes of objects or element values in collections that contain LOBs, BINARY_FLOAT values, BINARY_DOUBLE values and NCHAR and NVARCHAR2 values. The error message for any types that are not supported has been improved as well.
Enabled temporary LOB caching in order to avoid disk I/O as suggested.
Changed default native type to DPI_ORACLE_TYPE_INT64 if the column metadata indicates that the values are able to fit inside a 64-bit integer.
Added function
dpiStmt_defineValue()
, which gives the application the opportunity to specify the data type to use for fetching without having to create a variable.Added constant DPI_DEBUG_LEVEL as a set of bit flags which result in messages being printed to stderr. The following levels are defined:
0x0001 - reports errors during free operations
0x0002 - reports on reference count changes
0x0004 - reports on public function calls
An empty string is just as acceptable as NULL when enabling external authentication in
dpiPool_create()
.Avoid changing the OCI actual length values for fixed length types in order to prevent error “ORA-01458: invalid length inside variable character string”.
Ensured that the length set in the dpiBytes structure by the caller is passed through to the actual length buffer used by OCI.
Added missing documentation for function
dpiVar_setFromBytes()
.Handle edge case when an odd number of zeroes trail the decimal point in a value that is effectively zero (cx_Oracle issue 22).
Eliminated resource leak when a standalone connection or pool is freed.
Prevent attempts from binding the cursor being executed to itself.
Corrected determination of unique bind variable names. The function
dpiStmt_getBindCount()
returns a count of unique bind variable names for PL/SQL statements only. For SQL statements, this count is the total number of bind variables, including duplicates. The functiondpiStmt_getBindNames()
has been adjusted to return the actual number of unique bind variable names (parameter numBindNames is now a pointer instead of a scalar value).Added additional test cases.
Added check for Cygwin, as suggested.
10.42. Version 2.0.0-beta.3 (April 18, 2017)
Add initial set of functional test cases.
Add support for smallint and float data types in Oracle objects, as requested.
Ensure that the actual array size is set to the number of rows returned in a DML Returning statement.
Remove unneeded function dpiVar_resize().
Improve error message when specifying an invalid array position in a variable.
Add structure dpiVersionInfo to pass version information, rather than separate parameters. This affects functions
dpiContext_getClientVersion()
anddpiConn_getServerVersion()
.Rename functions that use an index to identify elements in a collection to include “ByIndex” in the name. This is clearer and also allows for functions that may be added in the future that will identify elements by other means. This affects functions
dpiObject_deleteElementByIndex()
,dpiObject_getElementExistsByIndex()
,dpiObject_getElementValueByIndex()
, anddpiObject_setElementValueByIndex()
.The OCI function OCITypeByFullName() is supported on a 12.1 Oracle Client but will give the error “OCI-22351: This API is not supported by the ORACLE server” when used against an 11.2 Oracle Database. The function
dpiConn_getObjectType()
now checks the server version and calls the correct routine as needed.Add parameter “exists” to functions
dpiObject_getFirstIndex()
anddpiObject_getLastIndex()
which allow a calling program to avoid error “OCI-22166: collection is empty”.
10.43. Version 2.0.0-beta.2 (March 28, 2017)
Use dynamic loading at runtime to load the OCI library and eliminate the need for the OCI header files to be present when building ODPI-C.
Improve sample Makefile as requested in issue 1.
Correct support for handling unsigned integers that are larger than the maximum size that can be represented by a signed integer. This corrects issue 3.
Remove type DPI_ORACLE_TYPE_LONG_NVARCHAR which is not needed as noted in issue 5.
Increase size of string which can be generated from an OCI number. This corrects issue 6.
Ensure that zeroing the check integer on ODPI-C handles is not optimised away by the compiler.
Silence compiler warnings from the Microsoft C++ compiler.
Restore support for simple reference count tracing by the use of DPI_TRACE_REFS.
Add additional error (ORA-56600: an illegal OCI function call was issued) to the list of errors that cause the session to be dropped from the session pool.
Changed LOB sample to include code to populate both CLOBs and BLOBs in addition to fetching them.
10.44. Version 2.0.0-beta.1 (January 30, 2017)
Initial release supporting the following features:
11.2, 12.1 and 12.2 Oracle Client support
9.2 and higher Oracle Database support (depending on Oracle Client version)
SQL and PL/SQL execution
Character datatypes (CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, NCLOB, LONG)
Numeric datatypes (NUMBER, BINARY_FLOAT, BINARY_DOUBLE)
Dates, Timestamps, Intervals
Binary types (BLOB, BFILE, RAW, LONG RAW)
PL/SQL datatypes (PLS_INTEGER, BOOLEAN, Collections, Records)
JSON
User Defined Types
REF CURSOR, Nested cursors, Implicit Result Sets
Array fetch
Array bind/execute
Session pools (homogeneous and non-homogeneous with proxy authentication)
Standalone connections
Database Resident Connection Pooling (DRCP)
External authentication
Statement caching (tagging)
End-to-end tracing, mid-tier authentication and auditing (action, module, client identifier, client info, database operation)
Edition Based Redefinition
Scrollable cursors
DML RETURNING
Privileged connection support (SYSDBA, SYSOPER, SYSASM, PRELIM_AUTH)
Database Startup/Shutdown
Session Tagging
Proxy authentication
Batch Errors
Array DML Row Counts
Query Result Caching
Application Continuity (with some limitations)
Query Metadata
Password Change
Two Phase Commit
OCI Client Version and Server Version
Connection Validation (when acquired from session pool or DRCP)
Continuous Query Notification
Advanced Queuing
Easily extensible (via direct OCI calls)