#include <iostream>#include "TSQLServer.h"#include "TSQLStatement.h"#include "DatabaseInterface/DbiException.h"#include "LeakChecker/Lea.h"#include "MessageService/MsgService.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: DbiException.cxx,v 1.4 2007/04/26 14:19:57 west Exp $") | |
| std::ostream & | operator<< (std::ostream &os, const DbiException &e) |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 95 of file DbiException.cxx. 00095 {
00096
00097 os << "Error " << e.GetErrorCode()
00098 << " (" << e.GetMessage() << ") from DB type " << e.GetDbType() << endl;
00099 return os;
00100
00101 }
|
1.3.9.1