#include "TOracleServer.h"
#include "TOracleResult.h"
#include "TOracleStatement.h"
#include "TSQLColumnInfo.h"
#include "TSQLTableInfo.h"
#include "TUrl.h"
#include "TList.h"
#include "TObjString.h"
Go to the source code of this file.
Defines | |
#define | CheckConnect(method, res) |
#define | CatchError(method) |
#define CatchError | ( | method | ) |
Value:
catch (SQLException &oraex) { \ SetError(oraex.getErrorCode(), oraex.getMessage().c_str(), method); \ }
Definition at line 72 of file TOracleServer.cxx.
Referenced by TOracleServer::Close(), TOracleServer::Commit(), TOracleServer::Exec(), TOracleServer::Query(), TOracleServer::Rollback(), TOracleServer::Statement(), and TOracleServer::TOracleServer().
Value:
ClearError(); \ if (!IsConnected()) { \ SetError(-1,"Oracle database is not connected",method); \ return res; \ }
Definition at line 64 of file TOracleServer.cxx.