Lines Matching defs:error
78 // Error callback called for error running a statement.
82 int error = SQLITE_OK;
84 &db(), base::Bind(&sql::CaptureErrorCallback, &error));
86 // Insert in the foo table the primary key. It is an error to insert
87 // something other than an number. This error causes the error callback
88 // handler to be called with SQLITE_MISMATCH as error code.
93 EXPECT_EQ(SQLITE_MISMATCH, error);
96 // Error ignorer works for error running a statement.