MySQL Connector/C++ 9.1.0
MySQL connector library for C and C++ applications
|
An operation which removes documents from a collection. More...
Public Member Functions | |
CollectionRemove (Collection &coll, const string &expr) | |
Create an operation which removes selected documnets from the given collection. More... | |
Operation & | sort (Type... spec) |
Specify ordering of documents in a query results. More... | |
Operation & | limit (unsigned items) |
Limit the operation to the given number of items (rows or documents). | |
An operation which removes documents from a collection.
|
inline |
Create an operation which removes selected documnets from the given collection.
Documents to be removed are specified by the given Boolean expression.
|
inlineinherited |
Specify ordering of documents in a query results.
Arguments are one or more strings of the form "<expr> <dir>"
where <expr>
gives the value to sort on and <dir>
is a sorting direction ASC
or DESC
.