nodejs-db-informix  master
nodejs bindings for Informix
 All Classes Functions Pages
result.cxx
1 #include "result.h"
2 
3 nodejs_db::Result::Column::~Column() {
4 }
5 
6 bool nodejs_db::Result::Column::isBinary() const {
7  return false;
8 }
9 
10 uint64_t nodejs_db::Result::count() const throw(Exception&) {
11  throw nodejs_db::Exception("Not implemented");
12 }
13 
14 uint64_t nodejs_db::Result::insertId() const throw(nodejs_db::Exception&) {
15  throw nodejs_db::Exception("Not implemented");
16 }
17 
18 uint16_t nodejs_db::Result::warningCount() const throw(nodejs_db::Exception&){
19  throw nodejs_db::Exception("Not implemented");
20 }
21 
22 nodejs_db::Result::~Result() {
23 }
24 
25 void nodejs_db::Result::release() throw() {
26 }