An asterisk (*) indicates support that was added in a hotfix or software patch subsequent to a release.
Refer to the following resources for additional information:
addtables='{\"sample_table\":[\"col1\",\"col2\",\"col3\"]}'
DefaultQueryOptions
are case sensitive. The recommended casing of the parameters is medial capitals (camel case). For example, DefaultQueryOptions=(startDate=<value>;endDate=<value>;propertyId=<value>)
.chmod +x testforjdbc.sh
PreparedStatement.setXXX
methods and ResultSet.getXXX
methods on Blob/Clob data types, in addition to the functionality described in the JDBC specification. The supported conversions typically are the same as those for LONGVARBINARY/LONGVARCHAR, except where limited by database support.CallableStatement.registerOutputParameter(parameterIndex, sqlType)
with sqlType Types.NUMERIC
or Types.DECIMAL
sets the scale of the output parameter to zero (0). According to the JDBC specification, calling CallableStatement.registerOutputParameter(parameterIndex, sqlType, scale)
is the recommended method for registering NUMERIC or DECIMAL output parameters.CallableStatement.getXXX
is called, result sets and update counts that have not yet been processed by the application are discarded to make the output parameter data available. Warnings are generated when results are discarded.CallableStatement.execute()
. If multiple results are generated using executeUpdate
, the first update count is returned. Any result sets prior to the first update count are discarded. If multiple results are generated using executeQuery
, the first result set is returned. Any update counts prior to the first result set are discarded. Warnings are generated when result sets or update counts are discarded.getTimestamp()
, getDate()
, and getTime()
return references to mutable objects. If the object reference returned from any of these methods is modified, re-fetching the column using the same method returns the modified value. The value is only modified in memory; the database value is not modified.Refer to Generating connection URLs with the Configuration Manager and Testing connections and queries.