MySQL Connector/C++ 9.1.0
MySQL connector library for C and C++ applications
|
Represents an operation that can be executed. More...
Public Member Functions | |
virtual Res | execute () |
Execute given operation and return its result. | |
Represents an operation that can be executed.
Creating an operation does not involve any communication with the server. Only when execute()
method is called operation is sent to the server for execution.
The template parameter Res
is the type of result that is returned by execute()
method.
A derived class must create an implementation object for the operation and set it using reset() method. Such implementation object should implement common::Executable_if interface.