first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

Firefox 3.x: Using the SQLite Databases to Get Bookmark Data

This is a sample SQLite query to get all bookmark data in a folder with ID 69826:

select * from moz_places where id
    in(select fk from moz_bookmarks where parent=69826);

These tables are in the places.sqlite file.

mod date: 2010-02-26T05:08:42.000Z