MySQL Connector/C++
MySQL connector library for C and C++ applications
Public Member Functions | List of all members
TableInsert Class Reference

An operation which inserts rows into a table. More...

Public Member Functions

virtual TableInsertvalues (const Row &row)
 Add the given row to the list of rows to be inserted.
 
template<typename... Types>
TableInsertvalues (Types... rest)
 Add a single row consisting of the specified values to the list of rows to be inserted.
 
template<typename Container >
TableInsertrows (const Container &cont)
 Add rows from a container such as vector or list.
 
template<typename It >
TableInsertrows (const It &begin, const It &end)
 Add rows from a range given by two iterators.
 
template<typename... Types>
TableInsertrows (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.
 

Detailed Description

An operation which inserts rows into a table.

This class defines methods that specify the rows to be inserted into the table.


The documentation for this class was generated from the following file: