PDA

View Full Version : How to retrieve mozilla cookies using c++ code?



avipachar
9th January 2012, 07:13
I am developing an app in VC++ which need to access Mozilla cookies. I know little bit that mozilla now stores the cookies in SQLite DB. what all header files or libraries I require and how to access the mozilla cookies?
Is there any other way using QT.

ChrisW67
9th January 2012, 07:26
Locate the Firefox/Thunderbird cookie database, open the Sqlite cookies database using Qt, read the data contained within (there's only one table). Almost every SQL example shipped with Qt creates/reads an Sqlite database. What's the problem?