Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
584f68e8
Commit
584f68e8
authored
Jan 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed example names
and updated some docs
parent
fcdd5e43
Changes
18
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
156 additions
and
99 deletions
+156
-99
ndb/examples/Makefile
ndb/examples/Makefile
+7
-2
ndb/examples/ndbapi_async_example1/Makefile
ndb/examples/ndbapi_async_example1/Makefile
+3
-3
ndb/examples/ndbapi_async_example1/ndbapi_async1.cpp
ndb/examples/ndbapi_async_example1/ndbapi_async1.cpp
+1
-1
ndb/examples/ndbapi_event_example/Makefile
ndb/examples/ndbapi_event_example/Makefile
+3
-3
ndb/examples/ndbapi_event_example/ndbapi_event.cpp
ndb/examples/ndbapi_event_example/ndbapi_event.cpp
+32
-1
ndb/examples/ndbapi_retries_example/Makefile
ndb/examples/ndbapi_retries_example/Makefile
+3
-3
ndb/examples/ndbapi_retries_example/ndbapi_retries.cpp
ndb/examples/ndbapi_retries_example/ndbapi_retries.cpp
+2
-2
ndb/examples/ndbapi_simple_example/Makefile
ndb/examples/ndbapi_simple_example/Makefile
+1
-1
ndb/examples/ndbapi_simple_example/ndbapi_simple.cpp
ndb/examples/ndbapi_simple_example/ndbapi_simple.cpp
+1
-1
ndb/examples/ndbapi_simple_index_example/Makefile
ndb/examples/ndbapi_simple_index_example/Makefile
+1
-1
ndb/examples/ndbapi_simple_index_example/ndbapi_simple_index.cpp
...mples/ndbapi_simple_index_example/ndbapi_simple_index.cpp
+1
-1
ndb/include/ndbapi/Ndb.hpp
ndb/include/ndbapi/Ndb.hpp
+76
-72
ndb/include/ndbapi/NdbDictionary.hpp
ndb/include/ndbapi/NdbDictionary.hpp
+1
-1
ndb/include/ndbapi/NdbError.hpp
ndb/include/ndbapi/NdbError.hpp
+1
-1
ndb/include/ndbapi/NdbEventOperation.hpp
ndb/include/ndbapi/NdbEventOperation.hpp
+1
-1
ndb/include/ndbapi/NdbOperation.hpp
ndb/include/ndbapi/NdbOperation.hpp
+13
-2
ndb/include/ndbapi/NdbRecAttr.hpp
ndb/include/ndbapi/NdbRecAttr.hpp
+1
-1
ndb/include/ndbapi/NdbTransaction.hpp
ndb/include/ndbapi/NdbTransaction.hpp
+8
-2
No files found.
ndb/examples/Makefile
View file @
584f68e8
BIN_DIRS
:=
ndbapi_example1 ndbapi_example3 ndbapi_example4
\
BIN_DIRS
:=
ndbapi_simple_example
\
ndbapi_example5 ndbapi_scan_example
ndbapi_async_example
\
ndbapi_async_example1
\
ndbapi_retries_example
\
ndbapi_simple_index_example
\
ndbapi_event_example
\
ndbapi_scan_example
bins
:
$(patsubst %
,
_bins_%
,
$(BIN_DIRS))
bins
:
$(patsubst %
,
_bins_%
,
$(BIN_DIRS))
...
...
ndb/examples/ndbapi_
example3
/Makefile
→
ndb/examples/ndbapi_
async_example1
/Makefile
View file @
584f68e8
TARGET
=
ndbapi_
example3
TARGET
=
ndbapi_
async1
SRCS
=
ndbapi_
example3
.cpp
SRCS
=
ndbapi_
async1
.cpp
OBJS
=
ndbapi_
example3
.o
OBJS
=
ndbapi_
async1
.o
CXX
=
g++
CXX
=
g++
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
DEBUG
=
DEBUG
=
...
...
ndb/examples/ndbapi_
example2/ndbapi_example2
.cpp
→
ndb/examples/ndbapi_
async_example1/ndbapi_async1
.cpp
View file @
584f68e8
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
//
//
// ndbapi_
example2
.cpp: Using asynchronous transactions in NDB API
// ndbapi_
async1
.cpp: Using asynchronous transactions in NDB API
//
//
// Execute ndbapi_example1 to create the table "MYTABLENAME"
// Execute ndbapi_example1 to create the table "MYTABLENAME"
// before executing this program.
// before executing this program.
...
...
ndb/examples/ndbapi_e
xample5
/Makefile
→
ndb/examples/ndbapi_e
vent_example
/Makefile
View file @
584f68e8
TARGET
=
ndbapi_e
xample5
TARGET
=
ndbapi_e
vent
SRCS
=
ndbapi_e
xample5
.cpp
SRCS
=
ndbapi_e
vent
.cpp
OBJS
=
ndbapi_e
xample5
.o
OBJS
=
ndbapi_e
vent
.o
CXX
=
g++
CXX
=
g++
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
CXXFLAGS
=
CXXFLAGS
=
...
...
ndb/examples/ndbapi_e
xample5/ndbapi_example5
.cpp
→
ndb/examples/ndbapi_e
vent_example/ndbapi_event
.cpp
View file @
584f68e8
...
@@ -15,7 +15,38 @@
...
@@ -15,7 +15,38 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/**
/**
* ndbapi_example5.cpp: Using API level events in NDB API
* ndbapi_event.cpp: Using API level events in NDB API
*
* Classes and methods used in this example:
*
* Ndb_cluster_connection
* connect()
* wait_until_ready()
*
* Ndb
* init()
* getDictionary()
* createEventOperation()
* dropEventOperation()
* pollEvents()
*
* NdbDictionary
* createEvent()
* dropEvent()
*
* NdbDictionary::Event
* setTable()
* addtableEvent()
* addEventColumn()
*
* NdbEventOperation
* getValue()
* getPreValue()
* execute()
* next()
* isConsistent()
* getEventType()
*
*/
*/
#include <NdbApi.hpp>
#include <NdbApi.hpp>
...
...
ndb/examples/ndbapi_
example2
/Makefile
→
ndb/examples/ndbapi_
retries_example
/Makefile
View file @
584f68e8
TARGET
=
ndbapi_
example2
TARGET
=
ndbapi_
retries
SRCS
=
ndbapi_
example2
.cpp
SRCS
=
ndbapi_
retries
.cpp
OBJS
=
ndbapi_
example2
.o
OBJS
=
ndbapi_
retries
.o
CXX
=
g++
CXX
=
g++
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
CFLAGS
=
-c
-Wall
-fno-rtti
-fno-exceptions
DEBUG
=
DEBUG
=
...
...
ndb/examples/ndbapi_
example3/ndbapi_example3
.cpp
→
ndb/examples/ndbapi_
retries_example/ndbapi_retries
.cpp
View file @
584f68e8
...
@@ -15,9 +15,9 @@
...
@@ -15,9 +15,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
//
//
// ndbapi_
example3
.cpp: Error handling and transaction retries
// ndbapi_
retries
.cpp: Error handling and transaction retries
//
//
// Execute ndbapi_
example1
to create the table "MYTABLENAME"
// Execute ndbapi_
simple
to create the table "MYTABLENAME"
// before executing this program.
// before executing this program.
//
//
// There are many ways to program using the NDB API. In this example
// There are many ways to program using the NDB API. In this example
...
...
ndb/examples/ndbapi_
example1
/Makefile
→
ndb/examples/ndbapi_
simple_example
/Makefile
View file @
584f68e8
TARGET
=
ndbapi_
example1
TARGET
=
ndbapi_
simple
SRCS
=
$(TARGET)
.cpp
SRCS
=
$(TARGET)
.cpp
OBJS
=
$(TARGET)
.o
OBJS
=
$(TARGET)
.o
CXX
=
g++
CXX
=
g++
...
...
ndb/examples/ndbapi_
example1/ndbapi_example1
.cpp
→
ndb/examples/ndbapi_
simple_example/ndbapi_simple
.cpp
View file @
584f68e8
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/*
/*
* ndbapi_
example1
.cpp: Using synchronous transactions in NDB API
* ndbapi_
simple
.cpp: Using synchronous transactions in NDB API
*
*
* Correct output from this program is:
* Correct output from this program is:
*
*
...
...
ndb/examples/ndbapi_
example4
/Makefile
→
ndb/examples/ndbapi_
simple_index_example
/Makefile
View file @
584f68e8
TARGET
=
ndbapi_
example4
TARGET
=
ndbapi_
simple_index
SRCS
=
$(TARGET)
.cpp
SRCS
=
$(TARGET)
.cpp
OBJS
=
$(TARGET)
.o
OBJS
=
$(TARGET)
.o
CXX
=
g++
CXX
=
g++
...
...
ndb/examples/ndbapi_
example4/ndbapi_example4
.cpp
→
ndb/examples/ndbapi_
simple_index_example/ndbapi_simple_index
.cpp
View file @
584f68e8
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
//
//
// ndbapi_
example4
.cpp: Using secondary indexes in NDB API
// ndbapi_
simple_index
.cpp: Using secondary indexes in NDB API
//
//
// Correct output from this program is:
// Correct output from this program is:
//
//
...
...
ndb/include/ndbapi/Ndb.hpp
View file @
584f68e8
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
that implements transactions.
that implements transactions.
The NDB API consists of the following fundamental classes:
The NDB API consists of the following fundamental classes:
- Ndb_cluster_connection, representing a connection to a cluster,
- Ndb_cluster_connection, representing a connection to a cluster,
- Ndb is the main class, representing
the
database,
- Ndb is the main class, representing
a connection to a
database,
- NdbTransaction represents a transaction,
- NdbTransaction represents a transaction,
- NdbOperation represents an operation using a primary key,
- NdbOperation represents an operation using a primary key,
- NdbScanOperation represents an operation performing a full table scan.
- NdbScanOperation represents an operation performing a full table scan.
...
@@ -44,15 +44,15 @@
...
@@ -44,15 +44,15 @@
The main structure of an application program is as follows:
The main structure of an application program is as follows:
-# Construct and connect to a cluster using the Ndb_cluster_connection
-# Construct and connect to a cluster using the Ndb_cluster_connection
object.
object.
-# Construct and initialize Ndb object(s).
-# Construct and initialize Ndb object(s)
to connect to a database
.
-# Define and execute transactions using NdbTransaction
and Ndb*Operation
.
-# Define and execute transactions using NdbTransaction.
-# Delete Ndb objects
-# Delete Ndb objects
.
-# Delete cluster connection
-# Delete cluster connection
.
The main structure of a transaction is as follows:
The main structure of a transaction is as follows:
-# Start transaction (an NdbTransaction)
-# Start transaction (an NdbTransaction)
-# Add and define operations associated with the transaction using
-# Add and define operations associated with the transaction using
Ndb
*
Operation
Ndb
Operation, NdbScanOperation, NdbIndexOperation, NdbIndexScan
Operation
-# Execute transaction
-# Execute transaction
The execution can be of two different types,
The execution can be of two different types,
...
@@ -65,8 +65,9 @@
...
@@ -65,8 +65,9 @@
for later execution.
for later execution.
If the execute is of type <var>Commit</var>, then the transaction is
If the execute is of type <var>Commit</var>, then the transaction is
committed, and no further addition or definition of operations
committed. The transaction <em>must</em> be closed after it has been
is allowed.
commited (event if commit fails), and no further addition or definition of
operations is allowed.
@section secSync Synchronous Transactions
@section secSync Synchronous Transactions
...
@@ -78,14 +79,18 @@
...
@@ -78,14 +79,18 @@
(typically created using Ndb::startTransaction()).
(typically created using Ndb::startTransaction()).
At this point, the transaction is only being defined,
At this point, the transaction is only being defined,
and is not yet sent to the NDB kernel.
and is not yet sent to the NDB kernel.
-# Define operations and add them to the transaction,
-# Define operations and add them to the transaction, using
using NdbTransaction::getNdb*Operation() and
NdbTransaction::getNdbOperation(),
methods of the Ndb*Operation class.
NdbTransaction::getNdbScanOperation(),
NdbTransaction::getNdbIndexOperation(), or
NdbTransaction::getNdbIndexScanOperation(),
and methods of the respective NdbOperation class.
Note that the transaction has still not yet been sent to the NDB kernel.
Note that the transaction has still not yet been sent to the NDB kernel.
-# Execute the transaction, using the NdbTransaction::execute() method.
-# Execute the transaction, using the NdbTransaction::execute() method.
-# Close the transaction (using Ndb::closeTransaction()).
-# Close the transaction (using Ndb::closeTransaction()).
For an example of this process, see the program listing in @ref ndbapi_example1.cpp.
For an example of this process, see the program listing in
@ref ndbapi_simple.cpp.
To execute several parallel synchronous transactions, one can either
To execute several parallel synchronous transactions, one can either
use multiple Ndb objects in several threads, or start multiple
use multiple Ndb objects in several threads, or start multiple
...
@@ -93,9 +98,9 @@
...
@@ -93,9 +98,9 @@
@section secNdbOperations Operations
@section secNdbOperations Operations
Each NdbTransaction
Each NdbTransaction
consists of a list of operations which are represented
consists of a list of operations which are represented by instances
by instances of NdbOperation, NdbScanOperation, NdbIndexOperation, and/or
of Ndb*
Operation.
NdbIndexScan
Operation.
<h3>Single row operations</h3>
<h3>Single row operations</h3>
After the operation is created using NdbTransaction::getNdbOperation()
After the operation is created using NdbTransaction::getNdbOperation()
...
@@ -105,8 +110,8 @@
...
@@ -105,8 +110,8 @@
-# Specify search conditions, using NdbOperation::equal()
-# Specify search conditions, using NdbOperation::equal()
-# Specify attribute actions, using NdbOperation::getValue()
-# Specify attribute actions, using NdbOperation::getValue()
Here are two brief examples illustrating this process. For the sake of
brevity,
Here are two brief examples illustrating this process. For the sake of
we omit error-handling.
brevity,
we omit error-handling.
This first example uses an NdbOperation:
This first example uses an NdbOperation:
@code
@code
...
@@ -122,12 +127,12 @@
...
@@ -122,12 +127,12 @@
// 4. Attribute Actions
// 4. Attribute Actions
MyRecAttr= MyOperation->getValue("ATTR2", NULL);
MyRecAttr= MyOperation->getValue("ATTR2", NULL);
@endcode
@endcode
For additional examples of this sort, see @ref ndbapi_
example1
.cpp.
For additional examples of this sort, see @ref ndbapi_
simple
.cpp.
The second example uses an NdbIndexOperation:
The second example uses an NdbIndexOperation:
@code
@code
// 1. Create
// 1. Create
MyOperation= MyTransaction->getNdbIndexOperation("MYINDEX",
"MYTABLENAME");
MyOperation= MyTransaction->getNdbIndexOperation("MYINDEX","MYTABLENAME");
// 2. Define type of operation and lock mode
// 2. Define type of operation and lock mode
MyOperation->readTuple(NdbOperation::LM_Read);
MyOperation->readTuple(NdbOperation::LM_Read);
...
@@ -138,10 +143,11 @@
...
@@ -138,10 +143,11 @@
// 4. Attribute Actions
// 4. Attribute Actions
MyRecAttr = MyOperation->getValue("ATTR2", NULL);
MyRecAttr = MyOperation->getValue("ATTR2", NULL);
@endcode
@endcode
Another example of this second type can be found in @ref ndbapi_example4.cpp.
Another example of this second type can be found in
@ref ndbapi_simple_index.cpp.
We will now discuss in somewhat greater detail each step involved in the
creation
We will now discuss in somewhat greater detail each step involved in the
and use of synchronous transactions.
creation
and use of synchronous transactions.
<h4>Step 1: Define single row operation type</h4>
<h4>Step 1: Define single row operation type</h4>
The following types of operations exist:
The following types of operations exist:
...
@@ -162,18 +168,11 @@
...
@@ -162,18 +168,11 @@
operate on a defined unique hash index.)
operate on a defined unique hash index.)
@note If you want to define multiple operations within the same transaction,
@note If you want to define multiple operations within the same transaction,
then you need to call NdbTransaction::getNdb
*Operation for each
then you need to call NdbTransaction::getNdb
Operation() or
operation.
NdbTransaction::getNdbIndexOperation() for each
operation.
<h4>Step 2: Specify Search Conditions</h4>
<h4>Step 2: Specify Search Conditions</h4>
The search condition is used to select tuples.
The search condition is used to select tuples using NdbOperation::equal()
For NdbOperation::insertTuple it is also allowed to define the
search key by using NdbOperation::setValue.
The NDB API will automatically detect that it is
supposed to use NdbOperation::equal instead.
For NdbOperation::insertTuple it is not necessary to use
NdbOperation::setValue on key attributes before other attributes.
<h4>Step 3: Specify Attribute Actions</h4>
<h4>Step 3: Specify Attribute Actions</h4>
Now it is time to define which attributes should be read or updated.
Now it is time to define which attributes should be read or updated.
...
@@ -183,21 +182,21 @@
...
@@ -183,21 +182,21 @@
also possible to use the attribute identity to define the
also possible to use the attribute identity to define the
attribute.
attribute.
NdbOperation::getValue returns an NdbRecAttr object
NdbOperation::getValue
()
returns an NdbRecAttr object
containing the read value.
containing the read value.
To get the value, there is actually two methods.
To get the value, there is actually two methods.
The application can either
The application can either
- use its own memory (passed through a pointer aValue) to
- use its own memory (passed through a pointer aValue) to
NdbOperation::getValue, or
NdbOperation::getValue
()
, or
- receive the attribute value in an NdbRecAttr object allocated
- receive the attribute value in an NdbRecAttr object allocated
by the NDB API.
by the NDB API.
The NdbRecAttr object is released when Ndb::closeTransaction
The NdbRecAttr object is released when Ndb::closeTransaction
()
is called.
is called.
Thus, the application can not reference this object after
Thus, the application can not reference this object after
Ndb::closeTransaction have been called.
Ndb::closeTransaction
()
have been called.
The result of reading data from an NdbRecAttr object before
The result of reading data from an NdbRecAttr object before
calling NdbTransaction::execute is undefined.
calling NdbTransaction::execute
()
is undefined.
@subsection secScan Scan Operations
@subsection secScan Scan Operations
...
@@ -214,16 +213,17 @@
...
@@ -214,16 +213,17 @@
- They can operate on several nodes in parallell
- They can operate on several nodes in parallell
After the operation is created using NdbTransaction::getNdbScanOperation()
After the operation is created using NdbTransaction::getNdbScanOperation()
(or NdbTransaction::getNdbIndexScanOperation()),
it is defined in the following
(or NdbTransaction::getNdbIndexScanOperation()),
three steps:
it is defined in the following
three steps:
-# Define the standard operation type, using NdbScanOperation::readTuples()
-# Define the standard operation type, using NdbScanOperation::readTuples()
-# Specify search conditions, using @ref NdbScanFilter and/or @ref NdbIndexScanOperation::setBound
-# Specify search conditions, using @ref NdbScanFilter and/or
@ref NdbIndexScanOperation::setBound()
-# Specify attribute actions, using NdbOperation::getValue()
-# Specify attribute actions, using NdbOperation::getValue()
-# Executing the transaction, using NdbTransaction::execute()
-# Executing the transaction, using NdbTransaction::execute()
-# Iterating through the result set using NdbScanOperation::nextResult
-# Iterating through the result set using NdbScanOperation::nextResult
()
Here are two brief examples illustrating this process. For the sake of
brevity,
Here are two brief examples illustrating this process. For the sake of
we omit error-handling.
brevity,
we omit error-handling.
This first example uses an NdbScanOperation:
This first example uses an NdbScanOperation:
@code
@code
...
@@ -262,11 +262,14 @@
...
@@ -262,11 +262,14 @@
@endcode
@endcode
<h4>Step 1: Define scan operation operation type</h4>
<h4>Step 1: Define scan operation operation type</h4>
Scan operations only support 1 operation, @ref NdbScanOperation::readTuples or @ref NdbIndexScanOperation::readTuples
Scan operations only support 1 operation,
@ref NdbScanOperation::readTuples()
or @ref NdbIndexScanOperation::readTuples()
@note If you want to define multiple scan operations within the same transaction,
@note If you want to define multiple scan operations within the same
then you need to call NdbTransaction::getNdb*ScanOperation for each
transaction, then you need to call
operation.
NdbTransaction::getNdbScanOperation() or
NdbTransaction::getNdbIndexScanOperation() for each operation.
<h4>Step 2: Specify Search Conditions</h4>
<h4>Step 2: Specify Search Conditions</h4>
The search condition is used to select tuples.
The search condition is used to select tuples.
...
@@ -288,33 +291,32 @@
...
@@ -288,33 +291,32 @@
also possible to use the attribute identity to define the
also possible to use the attribute identity to define the
attribute.
attribute.
NdbOperation::getValue returns an NdbRecAttr object
NdbOperation::getValue
()
returns an NdbRecAttr object
containing the read value.
containing the read value.
To get the value, there is actually two methods.
To get the value, there is actually two methods.
The application can either
The application can either
- use its own memory (passed through a pointer aValue) to
- use its own memory (passed through a pointer aValue) to
NdbOperation::getValue, or
NdbOperation::getValue
()
, or
- receive the attribute value in an NdbRecAttr object allocated
- receive the attribute value in an NdbRecAttr object allocated
by the NDB API.
by the NDB API.
The NdbRecAttr object is released when Ndb::closeTransaction
The NdbRecAttr object is released when Ndb::closeTransaction()
is called.
is called. Thus, the application can not reference this object after
Thus, the application can not reference this object after
Ndb::closeTransaction() have been called.
Ndb::closeTransaction have been called.
The result of reading data from an NdbRecAttr object before
The result of reading data from an NdbRecAttr object before
calling NdbTransaction::execute is undefined.
calling NdbTransaction::execute
()
is undefined.
<h3> Using Scan to update/delete </h3>
<h3> Using Scan to update/delete </h3>
Scanning can also be used to update/delete rows.
Scanning can also be used to update/delete rows.
This is performed by
This is performed by
-# Scan using exclusive locks, NdbOperation::LM_Exclusive
-# Scan using exclusive locks, NdbOperation::LM_Exclusive
-# When iterating through the result set, for each row optionally call
-# When iterating through the result set, for each row optionally call
either NdbScanOperation::updateCurrentTuple or
either NdbScanOperation::updateCurrentTuple
()
or
NdbScanOperation::deleteCurrentTuple
NdbScanOperation::deleteCurrentTuple
()
-# If performing NdbScanOperation::updateCurrentTuple,
-# If performing NdbScanOperation::updateCurrentTuple
()
,
set new values on record using ordinary @ref NdbOperation::setValue.
set new values on record using ordinary @ref NdbOperation::setValue
()
.
NdbOperation::equal
should _not_ be called as the primary key is
NdbOperation::equal
() should <em>not</em> be called as the primary
retreived from the scan.
key is
retreived from the scan.
@note that the actual update/delete will not be performed until next
@note that the actual update/delete will not be performed until next
NdbTransaction::execute (as with single row operations),
NdbTransaction::execute (as with single row operations),
...
@@ -323,12 +325,14 @@
...
@@ -323,12 +325,14 @@
<h4> Index scans specific features </h4>
<h4> Index scans specific features </h4>
The following features are available when performing an index scan
The following features are available when performing an index scan
- Scan subset of table using @ref NdbIndexScanOperation::setBound
- Scan subset of table using @ref NdbIndexScanOperation::setBound()
- Ordering result set ascending or descending, @ref NdbIndexScanOperation::readTuples
- Ordering result set ascending or descending,
@ref NdbIndexScanOperation::readTuples()
- When using NdbIndexScanOperation::BoundEQ on distribution key
- When using NdbIndexScanOperation::BoundEQ on distribution key
only fragment containing rows will be scanned.
only fragment containing rows will be scanned.
Rows are returned unordered unless sorted is set to true.
Rows are returned unordered unless sorted is set to true.
@note When performing sorted scan, parameter parallelism to readTuples will
@note When performing sorted scan, parameter parallelism to readTuples will
be ignored and max parallelism will be used instead.
be ignored and max parallelism will be used instead.
...
@@ -342,8 +346,8 @@
...
@@ -342,8 +346,8 @@
batch parameter to @ref NdbScanOperation::readTuples.
batch parameter to @ref NdbScanOperation::readTuples.
To let the application handle how locks are released
To let the application handle how locks are released
@ref NdbScanOperation::nextResult have a parameter fetch_allow.
@ref NdbScanOperation::nextResult
()
have a parameter fetch_allow.
If NdbScanOperation::nextResult is called with fetch_allow = false, no
If NdbScanOperation::nextResult
()
is called with fetch_allow = false, no
locks may be released as result of the function call. Otherwise the locks
locks may be released as result of the function call. Otherwise the locks
for the current batch may be released.
for the current batch may be released.
...
@@ -423,25 +427,25 @@
...
@@ -423,25 +427,25 @@
*******************************************************************************/
*******************************************************************************/
/**
/**
* @page ndbapi_
example1.cpp ndbapi_example1
.cpp
* @page ndbapi_
simple.cpp ndbapi_simple
.cpp
* @include ndbapi_
example1
.cpp
* @include ndbapi_
simple
.cpp
*/
*/
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
/**
/**
* @page ndbapi_
example2.cpp ndbapi_example2
.cpp
* @page ndbapi_
async1.cpp ndbapi_async1
.cpp
* @include ndbapi_
example2
.cpp
* @include ndbapi_
async1
.cpp
*/
*/
#endif
#endif
/**
/**
* @page ndbapi_
example3.cpp ndbapi_example3
.cpp
* @page ndbapi_
retries.cpp ndbapi_retries
.cpp
* @include ndbapi_
example3
.cpp
* @include ndbapi_
retries
.cpp
*/
*/
/**
/**
* @page ndbapi_
example4.cpp ndbapi_example4
.cpp
* @page ndbapi_
simple_index.cpp ndbapi_simple_index
.cpp
* @include ndbapi_
example4
.cpp
* @include ndbapi_
simple_index
.cpp
*/
*/
/**
/**
...
...
ndb/include/ndbapi/NdbDictionary.hpp
View file @
584f68e8
...
@@ -56,7 +56,7 @@ typedef struct charset_info_st CHARSET_INFO;
...
@@ -56,7 +56,7 @@ typedef struct charset_info_st CHARSET_INFO;
* -# NdbDictionary::Column for creating table columns
* -# NdbDictionary::Column for creating table columns
* -# NdbDictionary::Index for creating secondary indexes
* -# NdbDictionary::Index for creating secondary indexes
*
*
* See @ref ndbapi_
example4
.cpp for details of usage.
* See @ref ndbapi_
simple_index
.cpp for details of usage.
*/
*/
class
NdbDictionary
{
class
NdbDictionary
{
public:
public:
...
...
ndb/include/ndbapi/NdbError.hpp
View file @
584f68e8
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
* The <em>error messages</em> and <em>error details</em> may
* The <em>error messages</em> and <em>error details</em> may
* change without notice.
* change without notice.
*
*
* For example of use, see @ref ndbapi_
example3
.cpp.
* For example of use, see @ref ndbapi_
retries
.cpp.
*/
*/
struct
NdbError
{
struct
NdbError
{
/**
/**
...
...
ndb/include/ndbapi/NdbEventOperation.hpp
View file @
584f68e8
...
@@ -46,7 +46,7 @@ class NdbEventOperationImpl;
...
@@ -46,7 +46,7 @@ class NdbEventOperationImpl;
* The instance is removed by Ndb::dropEventOperation
* The instance is removed by Ndb::dropEventOperation
*
*
* For more info see:
* For more info see:
* @ref ndbapi_e
xample5
.cpp
* @ref ndbapi_e
vent
.cpp
*
*
* Known limitations:
* Known limitations:
*
*
...
...
ndb/include/ndbapi/NdbOperation.hpp
View file @
584f68e8
...
@@ -237,10 +237,13 @@ public:
...
@@ -237,10 +237,13 @@ public:
* use several equals (then all of them must be satisfied for the
* use several equals (then all of them must be satisfied for the
* tuple to be selected).
* tuple to be selected).
*
*
* @note There are 10 versions of NdbOperation::equal with
* @note For insertTuple() it is also allowed to define the
* search key by using setValue().
*
* @note There are 10 versions of equal() with
* slightly different parameters.
* slightly different parameters.
*
*
* @note When using
NdbOperation::equal
with a string (char *) as
* @note When using
equal()
with a string (char *) as
* second argument, the string needs to be padded with
* second argument, the string needs to be padded with
* zeros in the following sense:
* zeros in the following sense:
* @code
* @code
...
@@ -249,6 +252,8 @@ public:
...
@@ -249,6 +252,8 @@ public:
* NdbOperation->equal("Attr1", buf);
* NdbOperation->equal("Attr1", buf);
* @endcode
* @endcode
*
*
*
*
* @param anAttrName Attribute name
* @param anAttrName Attribute name
* @param aValue Attribute value.
* @param aValue Attribute value.
* @param len Attribute length expressed in bytes.
* @param len Attribute length expressed in bytes.
...
@@ -328,6 +333,12 @@ public:
...
@@ -328,6 +333,12 @@ public:
* then the API will assume that the pointer
* then the API will assume that the pointer
* is correct and not bother with checking it.
* is correct and not bother with checking it.
*
*
* @note For insertTuple() the NDB API will automatically detect that
* it is supposed to use equal() instead.
*
* @note For insertTuple() it is not necessary to use
* setValue() on key attributes before other attributes.
*
* @note There are 14 versions of NdbOperation::setValue with
* @note There are 14 versions of NdbOperation::setValue with
* slightly different parameters.
* slightly different parameters.
*
*
...
...
ndb/include/ndbapi/NdbRecAttr.hpp
View file @
584f68e8
...
@@ -39,7 +39,7 @@ class NdbOperation;
...
@@ -39,7 +39,7 @@ class NdbOperation;
* ndbout << MyRecAttr->u_32_value();
* ndbout << MyRecAttr->u_32_value();
* @endcode
* @endcode
* For more examples, see
* For more examples, see
* @ref ndbapi_
example1
.cpp.
* @ref ndbapi_
simple
.cpp.
*
*
* @note The NdbRecAttr object is instantiated with its value when
* @note The NdbRecAttr object is instantiated with its value when
* NdbTransaction::execute is called. Before this, the value is
* NdbTransaction::execute is called. Before this, the value is
...
...
ndb/include/ndbapi/NdbTransaction.hpp
View file @
584f68e8
...
@@ -298,7 +298,7 @@ public:
...
@@ -298,7 +298,7 @@ public:
* ExecType::Rollback rollbacks the entire transaction.
* ExecType::Rollback rollbacks the entire transaction.
* @param callback A callback method. This method gets
* @param callback A callback method. This method gets
* called when the transaction has been
* called when the transaction has been
* executed. See @ref ndbapi_
example2
.cpp
* executed. See @ref ndbapi_
async1
.cpp
* for an example on how to specify and use
* for an example on how to specify and use
* a callback method.
* a callback method.
* @param anyObject A void pointer. This pointer is forwarded to the
* @param anyObject A void pointer. This pointer is forwarded to the
...
@@ -366,7 +366,13 @@ public:
...
@@ -366,7 +366,13 @@ public:
* Once a transaction has been completed successfully
* Once a transaction has been completed successfully
* it can be started again wo/ calling closeTransaction/startTransaction
* it can be started again wo/ calling closeTransaction/startTransaction
*
*
* Note this method also releases completed operations
* @note This method also releases completed operations
*
* @note This method does not close open scans,
* c.f. NdbScanOperation::close()
*
* @note This method can only be called _directly_ after commit
* and only if commit is successful
*/
*/
int
restart
();
int
restart
();
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment