Skip to content

Commit

Permalink
Correct error "not implemented" on insert 2/2
Browse files Browse the repository at this point in the history
  • Loading branch information
tojocky committed Nov 22, 2011
1 parent 375a3e6 commit 6d3fe0b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/result.cc
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,16 @@ uint64_t node_db_oracle::Result::affectedCount() const throw() {
return this->statement->getUpdateCount();
}

uint64_t node_db_oracle::Result::insertId() const throw(node_db::Exception&) {
//TODO:
return 0;
}

uint16_t node_db_oracle::Result::warningCount() const throw(node_db::Exception&) {
//TODO:
return 0;
}

uint16_t node_db_oracle::Result::columnCount() const throw() {
return this->totalColumns;
}
Expand Down

0 comments on commit 6d3fe0b

Please sign in to comment.