Lines Matching refs:query
35 void ExecOrDie(sqlite3* dbhandle, const char *query) {
37 statement.prepare(dbhandle, query);
39 LOG(FATAL) << query << "\n" << sqlite3_errmsg(dbhandle);
293 SQLStatement query;
294 query.prepare(dbhandle.get(),
297 query.bind_string(0, signin);
298 query.bind_string(1, primary_email);
299 int query_result = query.step();
301 int32 count = query.column_int(0);
302 query.reset();
335 SQLStatement query;
336 query.prepare(dbhandle.get(),
338 query.bind_string(0, *signin);
339 int query_result = query.step();
341 query.column_string(0, &result);
395 SQLStatement query;
396 query.prepare(dbhandle.get(),
399 query.bind_string(0, email);
400 query.bind_string(1, PASSWORD_HASH);
401 query.bind_string(2, SALT);
402 int query_result = query.step();
406 string key(query.column_string(0));
408 salt = query.column_string(1);
410 hash = query.column_int(1);
411 query_result = query.step();
447 SQLStatement query;
448 query.prepare(dbhandle.get(), "SELECT email FROM cookies");
449 if (SQLITE_ROW == query.step()) {
450 *username = query.column_string(0);