Main  /  Edit  /  History  /  Login  /  Users Area

dbixx:dbixx_error

This is the exception that is thrown in case of different errors. It is derived from std::runtime_error and thus can be catch by std::exception.

It has an additional member function:

  1. char const *query() const;  

That returns the query (if available) that caused an exception.

For example:

  1. try {  
  2.     row r;  
  3.     sql<<"SLECT 2+2",r;  
  4. }  
  5. catch(dbixx_error const &e) {  
  6.    cerr<<e.query()<<endl;  
  7.    cerr<<e.what()<<endl;  
  8. }  

The output is

  1. SLECT 2+2  
  2. Syntax error.  

About

CppCMS is a web development framework for performance demanding applications.

Support This Project

SourceForge.net Logo

Поддержать проект

CppCMS needs You


Navigation

Main Page



Valid CSS | Valid XHTML 1.0