Home | History | Annotate | Download | only in webdata

Lines Matching full:autofill_profiles

893       "INSERT INTO autofill_profiles"
922 "FROM autofill_profiles "
961 "FROM autofill_profiles"));
1035 "UPDATE autofill_profiles "
1079 "DELETE FROM autofill_profiles WHERE guid = ?"));
1094 "DELETE FROM autofill_profiles"));
1260 "SELECT guid FROM autofill_profiles "
1277 "DELETE FROM autofill_profiles "
1481 if (!db_->DoesTableExist("autofill_profiles")) {
1482 if (!db_->Execute("CREATE TABLE autofill_profiles ( "
1644 db_->DoesColumnExist("autofill_profiles", "label")) {
1646 ") OR label IN (SELECT label FROM autofill_profiles WHERE " +
1653 if (db_->DoesColumnExist("autofill_profiles", "label")) {
1654 query = "DELETE FROM autofill_profiles WHERE " +
1667 // key into the |autofill_profiles| table.
1673 db_->DoesColumnExist("autofill_profiles", "unique_id"))) {
1678 "SELECT credit_cards.unique_id, autofill_profiles.unique_id "
1679 "FROM autofill_profiles, credit_cards "
1680 "WHERE credit_cards.billing_address = autofill_profiles.label";
1754 // Add date_modified to autofill_profiles.
1755 if (!db_->DoesColumnExist("autofill_profiles", "date_modified")) {
1756 if (!db_->Execute("ALTER TABLE autofill_profiles ADD COLUMN "
1762 "UPDATE autofill_profiles SET date_modified=?"));
1795 // fact that for a version 22 database the |autofill_profiles| table
1797 if (!db_->DoesColumnExist("autofill_profiles", "guid")) {
1798 if (!db_->Execute("ALTER TABLE autofill_profiles ADD COLUMN "
1806 "FROM autofill_profiles"));
1812 db_->GetUniqueStatement("UPDATE autofill_profiles "
1825 // fact that for a version 22 database the |autofill_profiles| table
1858 if (db_->DoesColumnExist("autofill_profiles", "unique_id")) {
1884 "FROM autofill_profiles")) {
1888 if (!db_->Execute("DROP TABLE autofill_profiles"))
1892 "ALTER TABLE autofill_profiles_temp RENAME TO autofill_profiles")) {
1928 // we need a migration. It is possible that the new |autofill_profiles|
1932 if (db_->DoesColumnExist("autofill_profiles", "first_name")) {
1953 "FROM autofill_profiles"));
2000 if (!db_->Execute("DROP TABLE autofill_profiles"))
2004 "ALTER TABLE autofill_profiles_temp RENAME TO autofill_profiles")) {
2040 // we need a migration. It is possible that the new |autofill_profiles|
2044 if (!db_->DoesColumnExist("autofill_profiles", "country_code")) {
2045 if (!db_->Execute("ALTER TABLE autofill_profiles ADD COLUMN "
2052 "FROM autofill_profiles"));
2059 db_->GetUniqueStatement("UPDATE autofill_profiles "
2083 "UPDATE autofill_profiles SET country_code=\"GB\" "
2092 "SELECT guid, date_modified FROM autofill_profiles"));
2154 "UPDATE autofill_profiles SET date_modified=? "