Release Notes for MariaDB Connector/C++ 1.1.0
This page is part of MariaDB's Documentation.
The parent of this page is: Release Notes for MariaDB Connector/C++ 1.1
Topics on this page:
Overview
MariaDB Connector/C++ is the interface between C++ applications and MariaDB Server. MariaDB Connector/C++ enables development of C++ applications using a JDBC-based API, which is also used by MariaDB Connector/J.
MariaDB Connector/C++ 1.1.0 was released on 2021-08-06. This release is of Beta maturity, and should not be used with production workloads.
MariaDB Connector/C++ implements the MySQL protocol using the MariaDB Connector/C API. This release depends on Connector/C 3.2.3.
Notable Changes
The default connection character set is
utf8mb4. (CONCPP-91)Re-execution or destruction on any type of statement object closes all of its result-sets. (CONCPP-88)
ResultSetstreaming is supported. ThedefaultFetchSizeconnection option sets the default number of rows in a result-sets retrieved at a time. ThesetFetchSizestatement method sets number of rows for the statement. (CONCPP-72)
Notable API Changes
ResultSetget methods areconst(CONCPP-86)sql::Propertiesclass passed to connect methods is a class defined in the library.DatabaseMetaData::getTablesaccepts thesql::Listclass object. Methods still acceptstd::mapandstd::listobjects. (CONCPP-83)SQLStringclass supportsfindmethods. (CONCPP-90)Propertiesparameters to connect methods areconst(CONCPP-82)SQLStringconstructor fromstd::stringis not exported on Windows. (CONCPP-85)
