David Alm
David Alm
Is the attachment part of the Post schema? If so, I think you have to create the Post first so that it has an :id. WIthout an :id field, the...
Hi Luca, Thank you for your reply and I apologize for my delay in responding. I still trying to choose between CouchDb and CouchBase. I don't really need the real-time...
Hello Luca, I have decided to use your fluttercouch approach and Couchbase-Lite 1.4.4 (which will sync with couchdb). [1.4.4 code is here](https://github.com/couchbase/couchbase-lite-android/releases), and they released an update in October, which...
Sure. Just point me in the right direction. I forked the repository. Should I delete that? On Thu, Dec 13, 2018 at 5:13 PM Luca Christille wrote: > Hello David,...
I haven't done anything since I forked it. I'll watch for the 1.4.4 addition and then start testing too. I'll fork that one, I guess.
I finally got it to build for cb-lite 1.4.4. Replication is commented out. Will try to save/retrieve docs later. DA
I have `saveDocumentWithId` and `getDocumentWithId` working locally on Android for 1.4.4. Code is rough, but works. Don't hesitate to criticize if you see bad style. https://github.com/sensiblearts/fluttercouch/tree/master/android/src/main/java/it/oltrenuovefrontiere/fluttercouch Replication is commented out,...
Well, I sat down this morning to take a look at how to retrieve a subset of documents, and I realize there is a major **obstacle** to keeping the codebase...
Hi Luca, I have basic CRUD working smoothly. (Also, CB 1.4.4 documentation is [here](https://docs.couchbase.com/couchbase-lite/1.4/java.html#manager).) The only Dart file that I modified was fluttercouch.dart, where you will see a (perhaps) reusable...
I have couchbase lite 1.4.4 working with CouchDb 2.3: CRUD works, and push & pull sync to CouchDb works. It was a "quick and dirty" extension of your code, but...