> On May 8, 2015, at 6:03 AM, Rustam Yuzmukhametov <[email protected]> > wrote: > > When I used sqlite data storage I opened cblite database file using any > sqlite database navigator. > Is it possible to open forestdb database file?
Yes — fopen( ) ;-) It’s a very new file format so there aren’t any friendly tools yet. There’s a very simple database dump tool in the forestdb repo that you can build, but it pretty much just dumps out keys and binary data. The actual values stored in a Couchbase Lite database are in a binary format that’s not going to be easy to decipher. There is a Couchbase Lite Viewer app <https://github.com/couchbaselabs/CouchbaseLiteViewer> for Mac OS that might be more like what you’re looking for. If you build it yourself, linking against CBL 1.1, it’ll be able to open ForestDB-based databases. —Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/37B53B04-AC3C-4E10-82CD-BB244DB2FD38%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
