Home | History | Annotate | Download | only in tools

Lines Matching refs:database

14   """Serializes the autofill_profiles table from the specified database."""
17 print "Usage: python serialize_profiles.py <path/to/database>"
20 database = sys.argv[1]
21 if not os.path.isfile(database):
22 print "Cannot read database at \"%s\"" % database
27 connection = sqlite3.connect(database, 0)
32 database)
49 database)
61 print "Failed to read the autofill_profiles table from \"%s\"" % database
74 database)