Home | History | Annotate | Download | only in history

Lines Matching refs:attach

639   // Can't attach within a transaction.
643 // Attach new DB.
645 // This block is needed because otherwise the attach statement is
647 sql::Statement attach(db_.GetUniqueStatement("ATTACH ? AS new_favicons"));
648 if (!attach) {
649 NOTREACHED() << "Unable to attach database.";
656 attach.BindString(0, new_db_file.value());
658 attach.BindString(0, WideToUTF8(new_db_file.value()));
661 if (!attach.Run()) {