Search Results
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-7.html
In addition to the new APIs introduced in MySQL Connector/C++ 8.0 (X DevAPI and X DevAPI for C), Connector/C++ now also supports the legacy API based on JDBC4. Applications written against the JDBC4-based API of Connector/C++ 1.1 can be also ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-genai-vector-store-load.html
This section describes how to generate vector embeddings for files or folders stored in , and load the embeddings into a vector store table. The following sections in this topic describe how to ingest files into a vector store: Before You Begin ...
https://dev.mysql.com/doc/internals/en/event-content-writing-conventions.html
Event contents are written using these conventions: Numbers are written in little-endian format (least significant byte first), unless otherwise indicated. Values that represent positions or lengths are given in bytes and should be considered ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-cluster-log.html
This section provides information about the functions available in the MGM API for controlling the output of the cluster log. ndb_mgm_get_clusterlog_severity_filter() ndb_mgm_set_clusterlog_severity_filter() ndb_mgm_get_clusterlog_loglevel() ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-log-events.html
This section provides information about MGM API functions used for listening to log events. ndb_mgm_listen_event() ndb_mgm_create_logevent_handle() ndb_mgm_destroy_logevent_handle() ndb_logevent_get_fd() ndb_logevent_get_next() ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-management-server-connections.html
This section provides information about MGM API functions that are used to initiate, configure, and terminate connections to an NDB management server. ndb_mgm_get_connectstring() ndb_mgm_get_configuration_nodeid() ndb_mgm_get_connected_port() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-event.html
Event Class Overview Event::addEventColumn() Event::addEventColumns() Event::addTableEvent() Event Constructor Event::EventDurability Event::EventReport Event::getDurability() Event::getEventColumn() Event::getName() Event::getNoOfEventColumns() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-ndbrecord.html
This example illustrates the manipulation of a blob column in the NDB API using the NdbRecord interface. It demonstrates how to perform insert, read, and update operations, using both inline value buffers as well as read and write methods. It can ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-handling-errors.html
This program demonstrates handling errors and retrying failed transactions using the NDB API. The source code for this example can be found in storage/ndb/ndbapi-examples/ndbapi_retries/ndbapi_retries.cpp in the NDB Cluster source tree. In this ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes.html
This program illustrates how to use secondary indexes in the NDB API. The source code for this example may be found in the NDB Cluster source tree, in storage/ndb/ndbapi-examples/ndbapi_simple_index/main.cpp.