Home | History | Annotate | Download | only in sql

Lines Matching defs:error

18   virtual int OnError(int error, sql::Connection* connection,
20 error_ = error;
23 return error;
26 int error() const { return error_; }
49 // returns an error code.
54 // If any error happened the original sql statement can be found in
56 EXPECT_EQ(SQLITE_OK, error_handler_->error());
62 int sqlite_error() const { return error_handler_->error(); }
117 // Insert in the foo table the primary key. It is an error to insert
118 // something other than an number. This error causes the error callback
119 // handler to be called with SQLITE_MISMATCH as error code.