3.00.0
Compatibility Notes
Please use DolphinDB server and DolphinDB JDBC Connector 3.00.0.0 or above version and keep the first three segments of the version number the same (e.g., 3.00.0.x) to make sure all interfaces available.
3.00.0.1
New Features
-
Added support for methods on catalog operations such as
supportsSchemaandsupportsCatalog. -
Added methods
setFetchDirectionandgetFetchDirectionfor setting and getting the direction of fetching rows of ResultSet. Note that DolphinDB JDBC only supportsResultSet.FETCH_FORWARD.
-
Optimized the return value of
getIdentifierQuoteString. -
Added support for querying fields containing special character
$. -
Added support for calling data type conversion methods with brackets within the
insert intostatement. -
Added support for "NULL" or " " in the
insert intostatement when writing data to a DFS table. -
Methods
executeQueryandexecuteUpdateofJDBCPreparedStatementclass support statements without placeholders. -
Added support for calling
loadTablein theupdatestatement on DFS tables with classJDBCPreparedStatementorJDBCStatement. -
Optimized the logic of method
clearParameterof theJDBCPreparedStatementclass.
Fixed an issue where connection was established in unauthenticated mode if the JDBC URL only specified user or password. An error is now reported.
3.00.0.0
New Features
Introduced Catalog to JDBC Connector:
-
JDBCDataBaseMetaDataclass:-
Added
getCatalogsto get all catalogs in the database. -
Added
getTablesto get all tables in the catalog. -
Added
getColumnsto get all columns in the catalog. -
Added
getSchemasto get all schemas in the catalog.
-
-
JDBCConnectionclass:-
Added
setCatalogto set a catalog. -
Added
getCatalogto check available catalogs in the currentJDBCConnection.
-
