Search Results
https://dev.mysql.com/doc/internals/en/mysys-functions.html
int my_redel _A((const char *from, const char *to, int MyFlags)); Delete from before rename of to to from. Functions in mysys: (For flags see my_sys.h) int my_copy _A((const char *from, const char *to, myf MyFlags)); Copy file from from to to. int ...
https://dev.mysql.com/doc/internals/en/sql-directory.html
Programs for handling SQL commands. The "core" of MySQL. These are the .c and .cc files in the sql directory: derror.cc --- read language-dependent message file des_key_file.cc --- load DES keys from plaintext file discover.cc --- Functions for ...
https://dev.mysql.com/doc/internals/en/starting-transaction-from-external-lock-method.html
MySQL calls [custom-engine.html#custom-engine-api-reference-external_lock handler::external_lock()] for every table it is going to use at the beginning of every statement. Thus, if a table is touched for the first time, it implicitly starts a ...
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-_query.html
Table 4.37 deletePersistentAll() Parameter Description return the number of instances deleted 4.3.1.19.9 execute(Map<String, ?>) public abstract Results<E> execute(Map<String, ?> parameters); Execute the query with one or more named parameters. A ...
https://dev.mysql.com/doc/ndbapi/en/mccj-overview-clusterj-object-models.html
It contains methods for the following operations: Finding persistent instances by primary key Creating, updating, and deleting persistent instances Getting a query builder (see com.mysql.clusterj.query.QueryBuilder) Getting the current transaction ... This section discusses the ClusterJ API and the object model used to represent the data handled by the ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-handling-errors.html
\n"; for (int i = 10000; i < 20000; i++) { executeInsertTransaction(i, myNdb, myTable); } std::cout << "Done.\n"; delete myNdb; delete cluster_connection; ndb_end(0); return 0; } . This program demonstrates handling errors and retrying failed ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbeventoperation.html
Currently, all INSERT, DELETE, and UPDATE events—as well as all attribute changes—are sent to the API, even if only some attributes have been specified. EO_DROPPED The event operation is waiting to be deleted, and is no longer usable. This ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbindexoperation.html
NdbIndexOperation Class Overview NdbIndexOperation::deleteTuple() NdbIndexOperation::getIndex() NdbIndexOperation::readTuple() NdbIndexOperation::updateTuple() NdbIndexOperation Class Overview Parent class NdbOperation Child classes None Description ...NdbIndexOperation can be used only with unique hash indexes; to work with ordered indexes, use ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbrecattr.html
You should delete only copies of NdbRecAttr objects that were created in your application using the clone() method. The copy created by this method should be deleted by the application when no longer needed. NdbRecAttr Class Overview ~NdbRecAttr() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-context.html
remove(Object instance, Function(Object error) callback); remove(Function constructor, Object keys, Function(Object error) callback); remove(String tableName, Object keys, Function(Object error) callback); Delete an instance of a class from the ...