views:

316

answers:

2

I currently use a flat-file to store data in a Firefox Extension, but think this is inadequate.

Which lightweight databases are commonly used within Firefox extensions?

+5  A: 

SQLite is built in to recent versions of Firefox for use as a data-storage mechanism. More information, and examples of how to use the FF wrapper API, can be found on MDC.

Shog9
+1  A: 

sqlite, used be ff itself

SilentGhost