Places.sqlite: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(Removed extra pair of square brackets in URLs, renamed "Related pages" and "Links" and moved to bottom to follow convention)
(places.sqlite replaces bookmarks.html and history.dat in Firefox 3; it's also used for history only in SeaMonkey2)
Line 1: Line 1:
{{profile-file|filename=places.sqlite}}
{{profile-file|filename=places.sqlite}}
The file "places.sqlite" stores the annotations, bookmarks, favourite icons, input history, keywords, browsing history (a record of visited pages) in Firefox 3.
The file "places.sqlite" stores the annotations, bookmarks, favorite icons, input history, keywords, and browsing history (a record of visited pages).
 
Places.sqlite is used in Firefox 3.0 instead of the older [[bookmarks.html]] and [[history.dat]] files (the older file are left in the profile folder for backward compatibility).  Starting in SeaMonkey 2,  places.sqlite is used to store browsing history (but not bookmarks). [https://bugzilla.mozilla.org/show_bug.cgi?id=382187]


==Editing==
==Editing==
You can edit this file using [http://www.sqlite.org/ sqlite], however, you must close Firefox first in order to get a lock on the file.  NOTE: Firefox opens the places.sqlite with a lock that prevents the user from updating the file when firefox is open.  More information on sqlite locking can be found at [http://www.sqlite.org/lockingv3.html SQLLite Locking]
You can edit this file using [http://www.sqlite.org/ sqlite], however, you must close Firefox first in order to get a lock on the file.  NOTE: Firefox opens the places.sqlite with a lock that prevents the user from updating the file when Firefox is open.  More information on sqlite locking can be found at [http://www.sqlite.org/lockingv3.html SQLLite Locking]


You can selectively edit or delete records using sql syntax.  For example, to delete records of places you have visited, you can issue the following statement:
You can selectively edit or delete records using sql syntax.  For example, to delete records of places you have visited, you can issue the following statement:
Line 35: Line 37:


==See also==
==See also==
:* [[Locked_or_damaged_places.sqlite| Locked or Damaged places.sqlite]]
* [[Locked or damaged places.sqlite]]


==External links==
==External links==
:* [https://developer.mozilla.org/en/The_Places_database Places Database]
* [https://developer.mozilla.org/en/The_Places_database Places Database]


[[Category:Profile contents (Firefox)]]
[[Category:Profile contents (Firefox)]]
[[Category:Profile contents (Mozilla Suite)]]
[[Category:Profile contents (Mozilla Suite)]]

Revision as of 02:19, 10 April 2009

The file "places.sqlite" stores the annotations, bookmarks, favorite icons, input history, keywords, and browsing history (a record of visited pages).

Places.sqlite is used in Firefox 3.0 instead of the older bookmarks.html and history.dat files (the older file are left in the profile folder for backward compatibility). Starting in SeaMonkey 2, places.sqlite is used to store browsing history (but not bookmarks). [1]

Editing

You can edit this file using sqlite, however, you must close Firefox first in order to get a lock on the file. NOTE: Firefox opens the places.sqlite with a lock that prevents the user from updating the file when Firefox is open. More information on sqlite locking can be found at SQLLite Locking

You can selectively edit or delete records using sql syntax. For example, to delete records of places you have visited, you can issue the following statement:

sqlite3 places.sqlite "delete from moz_places where url like '%REPLACE_ME%';"

where REPLACE_ME is the text in the URL you wish to delete.

To selectively deleted your input history you can use the following statement:

sqlite3 places.sqlite "delete from moz_inputhistory where input like '%REPLACE_ME%';"

Moving

This file can be moved to a different profile.

Deleting

If you suspect that the file is corrupted, deleting "places.sqlite" will delete your browsing history, and a new, empty file will be created automatically.

Technical Information

The places.sqlite includes a number of tables as follows:

  • moz_anno_attributes - Annotation Attributes
  • moz_annos - Annotations
  • moz_bookmarks - Bookmarks
  • moz_bookmarks_roots - Bookmark roots i.e. places, menu, toolbar, tags, unfiled
  • moz_favicons - Favourite icons - including URL of icon
  • moz_historyvisits - A history of the number of times a site has been visited
  • moz_inputhistory - A history of URLS typed by the user
  • moz_items_annos - Item annotations
  • moz_keywords - Keywords
  • moz_places - Places/Sites visited - referenced by moz_historyvisits

An ERD Diagram is available.

See also

External links