Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does Chrome save its SQLite database to?

Google Chrome stores internal data such as browser history in a SQLite database; where is this saved to?

like image 920
vivianaranha Avatar asked Jan 20 '12 04:01

vivianaranha


People also ask

Where is SQLite database saved?

The Android SDK provides dedicated APIs that allow developers to use SQLite databases in their applications. The SQLite files are generally stored on the internal storage under /data/data/<packageName>/databases.

Does Chrome use SQLite?

uses SQLite in their Android cell-phone operating system, and in the Chrome Web Browser. Intuit apparently uses SQLite in QuickBooks and in TurboTax to judge from some error reports from users seen here and here.


1 Answers

Windows Vista or later:

C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\databases  

Windows XP:

C:\Documents and Settings\%USERNAME%\Application Support\Google\Chrome\Default\databases 

Windows 10:

C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\History 

Mac OS X (and macOS—sub-path changes between versions but are all under this main path):

~/Library/Application Support/Google/Chrome/* 

Linux:

~/.config/google-chrome/Default/databases 
like image 149
Dan Avatar answered Sep 24 '22 04:09

Dan