Firefox Bookmarks SQLite structure - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T17:29:59Zhttp://stackoverflow.com/feeds/question/464516http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure1Firefox Bookmarks SQLite structureToby Mills2009-01-21T09:06:42Z2009-11-27T01:12:08Z
<p>Hi,</p>
<p>I am trying to write a Firefox 3 add-on which will enable me to easily re-tag bookmarks. For example I have some bookmarks tagged "development" and some tagged "Development" and I would like a way to easily update all the "delelopment" tags to "Development". Unfortunately I can not find an add-on to do this so I thought I would create my own. </p>
<p>Having not developed an add-on before I've managed to grasp the basics and discovered that FireFox stores all bookmarks in an SQLite database called Places.sqlite. Within that database there is a table called moz_bookmarks which contains all the bookmarks, tags and folders within the bookmarks directory. The structure of the bookmark folders and their child bookmarks is represented using a foreign key id which points to the parent folder's id in the same table which again recursses upwards to that parent folder's Id until it hits the bookmarks root. </p>
<p>However, where I become stuck is how the tags you apply in firefox are related to the bookmarks. Each tag has a type = 2 and parent ID = 4. However I can see no correlation between this and an actual bookmarks that use the tag. If I add a bookmark in firefox to no particular folder but give it 2 or 3 tags then it's parent folder ID is 5 which corresponds to "unfiled" but I can see no further correlation to the tags associated with it. </p>
<p>I have found this <a href="http://www.forensicswiki.org/index.php?title=Mozilla_Firefox_3_History_File_Format" rel="nofollow">Wiki page on the structure</a> but it does not really help.</p>
<p>It's driving me nuts :( Please help...</p>
http://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure/475213#4752131Answer by Leftblank for Firefox Bookmarks SQLite structureLeftblank2009-01-24T00:39:51Z2009-01-24T00:39:51Z<p>I can't quite help you with the how-to, however, perhaps the extension 'SQLite Manager' will help you at least for the part where you're trying to figure out what to do. The plugin is a general manager, but it contains the default databases used by Firefox as standard option as well.</p>
<p>Using that extension it should be relatively straightforward to rename the keywords you like. If you're just looking for a way to fix it, this could work, if you still prefer to write your own tool, perhaps this one can at least help with the queries ;).</p>
http://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure/740183#7401832Answer by MartinStettner for Firefox Bookmarks SQLite structureMartinStettner2009-04-11T14:30:45Z2009-04-11T14:30:45Z<p>You probably already found out yourself, but tags are applied as follows:</p>
<p>The central place for all URLS in the database is <code>moz_places</code>. The table <code>moz_bookmarks</code> refers to it by the foreign key column <code>fk</code>. </p>
<p>If you tag a bookmark, there are multiple entries in <code>moz_bookmarks</code>, all having the same reference <code>fk</code>: The first is the bookmark itself (having the title in the <code>title</code> column) For each tag, there's an additional entriy in <code>moz_bookmarks</code> having the same foreign key <code>fk</code> and refering to the tag in the <code>parent</code> coumn (which points to the <code>moz_bookmarks</code> row for the tag).</p>
<p>If you have a bookmark '<a href="http://stackoverflow.com" rel="nofollow">http://stackoverflow.com</a>' titled 'Stackoverflow' with tags 'programming' and 'info', you will get:</p>
<pre><code>moz_places
----------
id url (some more)
3636 http://stackoverflow.com
moz_bookmarks
-------------
id type fk parent title (other columns omitted...)
332 1 3636 5 Stackoverflow (parent=5 -> unfiled folder)
333 2 (NULL) 4 programming (programming tag, parent=4 -> tags folder)
334 1 3636 333 (NULL) (link to 'programming' tag)
335 2 (NULL) 4 info (info tag, parent=4 see above)
336 1 3636 335 (NULL) (link to 'info' tag)
</code></pre>
<p>Hope this helps...</p>
http://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure/1806353#18063530Answer by Janus for Firefox Bookmarks SQLite structureJanus2009-11-27T01:12:08Z2009-11-27T01:12:08Z<p>I can't help much either -- found your question looking for the same kind of answers...</p>
<p>What I have managed to find is the relevant (?) Mozilla documentation. The bookmark system is called Places, and the the database tables are described at <code>developer.mozilla.org/en/The_Places_database</code> (sorry newbie here -- so no more hyperlinks allowed). </p>
<p>You can find the schema at <a href="https://people.mozilla.org/~dietrich/places-erd.png" rel="nofollow">https://people.mozilla.org/~dietrich/places-erd.png</a></p>