Home | History | Annotate | Download | only in history

Lines Matching refs:db_

32   db_.set_page_size(4096);
36 db_.set_cache_size(64);
40 db_.set_exclusive_locking();
42 if (!db_.Open(file_name))
45 sql::Transaction transaction(&db_);
47 db_.Close();
52 if (!meta_table_.Init(&db_, kCurrentVersionNumber,
54 db_.Close();
61 db_.Close();
68 db_.Close();
76 db_.BeginTransaction();
80 db_.CommitTransaction();
84 return db_;