MySQL Connector/C++ 9.1.0
MySQL connector library for C and C++ applications
|
An operation which inserts rows into a table. More...
Public Member Functions | |
virtual TableInsert & | values (const Row &row) |
Add the given row to the list of rows to be inserted. | |
template<typename... Types> | |
TableInsert & | values (Types... rest) |
Add a single row consisting of the specified values to the list of rows to be inserted. | |
template<typename Container > | |
TableInsert & | rows (const Container &cont) |
Add rows from a container such as vector or list. | |
template<typename It > | |
TableInsert & | rows (const It &begin, const It &end) |
Add rows from a range given by two iterators. | |
template<typename... Types> | |
TableInsert & | rows (const Row &first, Types... rest) |
Add the given list of rows. | |
virtual Result | execute () |
Execute given operation and return its result. | |
virtual Result | execute () |
Execute given operation and return its result. | |
virtual Result | execute () |
Execute given operation and return its result. | |
An operation which inserts rows into a table.
This class defines methods that specify the rows to be inserted into the table.