vote up 5 vote down star
1

Firefox 3 stores the bookmarks in a sqlite database. There are several hacked sqlite java libraries available. Is there a way to hack the sqlite database in java(not using libraries) to read bookmarks reliably? Does someone know how the sqlite DB is stored and access programmatically (from java)?

flag

6 Answers

vote up 4 vote down

You need the SQLite JDBC driver (this page explains how to run queries on a SQLite database using that driver from within Java).

link|flag
vote up 2 vote down

I don't know why you need NOT to use a JDBC driver, but there's another possible "solution" depending on your software requirements. In FF3, type in the address bar about:config

Alter the value of property: browser.bookmarks.autoExportHTML to true.

This will export your bookmarks in an HTML whenever you close FF. You can then read the HTML. It may or may not solve your problem....

link|flag
Although is definitely a good alternative. You only get what Firefox exports. If you connect to the database, you can get everything you like. – daub815 Dec 14 '08 at 1:13
vote up 1 vote down

This may sound moronic but are there any solutions without using JDBC driver?

link|flag
vote up 0 vote down

I am aware of autoexport option. That needs user intervention there no documented way to set it programatically.

JDBC require JNI nonsense which is a pain for cross platform portability in my case

link|flag
vote up 0 vote down

I'm on the same boat, it looks like older versions of FireFox used to store it in a file. I need to crack this.

link|flag
vote up 0 vote down

Look http://sqljet.com/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.