OCILIB (C and C++ Driver for Oracle)
4.6.3
|
The Oracle OCI provides the ability to establish a server connection in :
OCILIB implements OCI in blocking mode. The application has to wait for OCI calls to complete to continue.
Some operations can be long to be processed by the server.
In order to cancel the current pending call, OCILIB provides OCI_Break() that cancel the last internal OCI Call and then raise an OCI abortion error code.
Functions | |
OCI_EXPORT boolean OCI_API | OCI_Break (OCI_Connection *con) |
Perform an immediate abort of any currently Oracle OCI call. More... | |
OCI_EXPORT boolean OCI_API OCI_Break | ( | OCI_Connection * | con | ) |
#include <ocilib.h>
Perform an immediate abort of any currently Oracle OCI call.
con | - connection handle |
Referenced by ocilib::Connection::Break().