Search



Search Results
Displaying 491 to 500 of 1095 total results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-rdo.html
The following RDO (Remote Data Objects) example creates a table my_rdo and demonstrates the use of rs.addNew and rs.update. SQL = "select * from my_rdo" Set rs = cn.OpenResultset(SQL, rdOpenStatic, rdConcurRowVer, rdExecDirect) Do Until rs.EOF For ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
Avoid setting up and dropping tables over and over again, as that is an expensive operation. The exception is temporary tables, which can be created and dropped quickly within an application. All DDL (Data Definition Language) statements are ...
https://dev.mysql.com/doc/internals/en/creating-handlerton.html
Used if the storage engine needs to perform special steps when a schema is dropped (such as in a storage engine that uses tablespaces). The handlerton (short for handler singleton) defines the storage engine and contains method pointers to those ...
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.
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-synchronous-transactions.html
This example illustrates the use of synchronous transactions in the NDB API. It first creates a database ndb_examples and a table api_simple (if these objects do not already exist) using the MySQL C API with an SQL node, then performs a series of ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbeventoperation.html
When a table is dropped, make sure that you drop any associated events. EO_DROPPED The event operation is waiting to be deleted, and is no longer usable. This section provides information about the NdbEventOperation class, which is used to monitor ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-requirements.html
The software requirements for running the examples found in the next few sections are as follows: A working Node.js installation Working installations of the ndb and mysql-js adapters The mysql-js adapter also requires a working installation of the ...
https://dev.mysql.com/doc/ndbapi/en/ndb-object.html
restore?), not useable(?) 3 StateDropping Going offline or being dropped; not usable 4 StateOnline Online, usable 5 StateBackup Online, being backed up, usable 6 StateBroken Broken; should be dropped and re-created Object::Status This section ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-6.html
Schema::dropView() is now a direct-execute method returning void rather than Executable. All dropXXX() methods succeed if the dropped objects do not exist. Locks can be requested several times for a given find or select statement. An acquired lock ...
Displaying 491 to 500 of 1095 total results