Search Results
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-annotation-column.html
4.3.2.1.1 Synopsis @Target(value={java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD}) @Retention(value=java.lang.annotation.RetentionPolicy.RUNTIME) public @interface Column { public String name ; public String ...This ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-read.html
We assume that you have already created and populated the basic table, perhaps using the row insertion example shown previously (see Section 2.5.1.2, “NDB API Basic Insertion Example”). This example illustrates basic retrieval of one or more ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-basic.html
It demonstrates how to perform insert, read, and update operations, using both inline value buffers as well as read and write methods. Shows insert, read, and update, using both inline value buffer and read/write methods. This example illustrates ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes-ndbrecord.html
*/ NdbDictionary::RecordSpecification spec[2]; spec[0].column= col1; spec[0].offset= offsetof(MyTableRow, attr1); // So that it goes nicely into the struct spec[0].nullbit_byte_offset= 0; spec[0].nullbit_bit_in_byte= 0; const NdbRecord *pk_record= ... This program illustrates how to use secondary indexes in the NDB API with the aid of the NdbRecord ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-synchronous-transactions.html
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 basic data operations (insert, update, read, and select) on this table using ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-timestamp2.html
The file timestamp2.cpp reproduced in this section provides an example of working in NDB API applications with the “new” MySQL temporal data types supporting fractional seconds. For more information working with MySQL temporal and other data ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-context.html
persist(Object instance, Function(Object error) callback); persist(Function constructor, Object values, Function(Object error) callback); persist(String tableName, Object values, Function(Object error) callback); Insert an instance into the ...It ...
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-common-files.html
After this operation, new_ref has a complete aRef to use in insertion and data_start has ptr from which data is to be written. In the NDB Cluster source distribution, the storage/ndb/ndbapi-examples directory storage/ndb/ndbapi-examples/common ...
https://dev.mysql.com/doc/ndbapi/en/overview-operations.html
The following operation types are supported: NdbOperation::insertTuple(): Inserts a nonexisting tuple. NdbOperation::writeTuple(): Updates a tuple if one exists, otherwise inserts a new tuple. An NdbTransaction consists of a list of operations, ...
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-33.html
(Bug #34975410, Bug #35141281) When Connector/NET inserted multiple rows using a single MySqlCommand object, the MySqlCommand.LastInsertedId property returned the ID of the first row that was inserted rather than the last row. Deprecation and ...