0

I want to be able to make a backup of the data in my application, and potentially share this backup between Android devices. I am using Couchbase. I have found many resources regarding exporting an SQLite database to XML, but none for Couchbase.

Does anyone know how to do this?

Paddy
  • 1,195
  • 9
  • 16
Christina
  • 57
  • 2
  • 8

1 Answers1

2

You can use this command to export couch-base to SQLlight.

> cbbackup http://<host>:8091 <backup_folder> -u <user> -p <pass> -b <bucket> 
Neil
  • 5,919
  • 15
  • 58
  • 85