I have a .cblite (couchbase-lite) database which I would like to view on a Windows 8.1 machine. I currently see 3 approaches
I am a bit lost how to continue here - can anyone give me some pointers of how to do this?
Is it .cblite
or .cblite2
? Couchbase Lite moved to the .cblite2
format in 1.2. If you have a .cblite
file then it is simply an SQLite file with another extension and you can view it with any SQLite editor. .cblite2
is a directory with either db.sqlite3
or db.forest.X
inside depending on the storage engine used. You can view the former with an SQLite editor, but the latter is a bit more complicated. If you want to write an editor, then the actual querying will not be hard (you can just use an all documents query). The bulk of the work will just be hooking up that information to display.