hi!
I try to use scule with nodejs (scule v0.0.8):
var collection = res.app.db.factoryCollection("scule+nodejs://test", {"path": "/temp"});
var test = {
randomId: 100
};
collection.save(test);
collection.commit();
//....
var result=collection.findAll();
Problems:
If the json file doesn't exists it's drop: "Error: ENOENT, open 'D:\temp\test.json'" message (the commit create the file but it's not recognize)
Every start override the saved json file (not readed back)
Hey Janos, apologies for not addressing your ticket earlier. I'll take a look at this either this week or next. Thanks for bringing it to my attention.
hi! I try to use scule with nodejs (scule v0.0.8):
Problems: