Search Results
https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-cpp.html
Configuring Connector/C++ Specifying External Dependencies Building Connector/C++ Installing Connector/C++ Verifying Connector/C++ Functionality Configuring Connector/C++ Use CMake to configure and build Connector/C++. --target install --config ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-sql.html
If you remember your manual, you know that you must pronounce this: ess queue ell. The "parser" programs on mysql-5.0/sql: size name comment ---- ---- ------- 51326 sql_lex.cc lexer 230026 sql_yacc.yy parser + many more *.cc programs This is where ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-7.html
Deprecation and Removal Notes Security Notes X DevAPI Notes Functionality Added or Changed Bugs Fixed Deprecation and Removal Notes View and table DDL methods have been removed. (WL #11229) Functionality Added or Changed Connector/C++ now implements ... 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 ...
https://dev.mysql.com/doc/relnotes/connector-odbc/en/news-8-0-19.html
A list of hosts can be given in a connection string, along with passing MULTI_HOST=1 to to enable this functionality. Functionality Added or Changed Bugs Fixed Functionality Added or Changed Added DNS SRV support. To automatically resolve any SRV ...
https://dev.mysql.com/doc/x-devapi-userguide/en/database-connection-example.html
The connection parameters can be specified as either a URI type string, for example user:@localhost:33060, or as a data dictionary, for example {user: myuser, password: mypassword, host: example.com, port: 33060}. See Connecting to the Server Using ... The code that is needed to connect to a MySQL document store looks a lot like the traditional MySQL connection code, but now applications can establish logical sessions to MySQL server instances running the X ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/collection-find.html
The find(SearchConditionStr) function is for searching documents in a collection, similar to the SELECT statement for an SQL database. It takes a search condition string (SearchConditionStr) as a parameter to specify the documents that should be ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/collection-find.html
The find(SearchConditionStr) function is for searching documents in a collection, similar to the SELECT statement for an SQL database. It takes a search condition string (SearchConditionStr) as a parameter to specify the documents that should be ...
https://dev.mysql.com/doc/refman/8.4/en/keyring-encrypted-file-component.html
"path": The item value is a string that names the file to use for storing keyring data. "password": The item value is a string that specifies the password for accessing the data file. component_keyring_encrypted_file supports the functions that ...
https://dev.mysql.com/doc/refman/8.4/en/problems-with-null.html
The concept of the NULL value is a common source of confusion for newcomers to SQL, who often think that NULL is the same thing as an empty string ''. For example, the following statements are completely different: mysql> INSERT INTO my_table ...In ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-execute.html
For a statement such as SELECT that generates a result set, you must call mysql_stmt_fetch() to fetch the data prior to calling any other functions that result in query processing. Those functions are not intended for processing results from ... int ...