We have moved to a new Sailfish OS Forum. Please start new discussions there.
1 | initial version | posted 2019-10-19 21:03:14 +0200 |
hi all, i am trying to write a test for the db backend of my app. i am playing around with typescript also :) can some body help me and tell me which database i can use for faking the one on the smartphone ? is sqlite3 the one ? i am on windows btw. thanks !
2 | No.2 Revision |
hi all, i am trying to write a test for the db backend of my app. i am playing around with typescript also :) can some body help me and tell me which database i can use for faking the one on the smartphone ? is sqlite3 the one ? i am on windows btw. thanks !
EDIT: thanks for the anwer. it is good to know that it is sqlite3.
my problem now or actually that was the starting point for my initial question: the interface differs between sailfish os and windows/node. on sailfish i have db.transaction and trans.executeSql, in node i have db.run and db.each i am using node.js and took this package: npm install sqlite3 --save
3 | No.3 Revision |
hi all, i am trying to write a test for the db backend of my app. i am playing around with typescript also :) can some body help me and tell me which database i can use for faking the one on the smartphone ? is sqlite3 the one ? i am on windows btw. thanks !
EDIT: thanks for the anwer. it is good to know that it is sqlite3.
my problem now or actually that was the starting point for my initial question: the interface differs between sailfish os and windows/node. on sailfish i have db.transaction and trans.executeSql, in node i have db.run and db.each i am using node.js and took this package: npm install sqlite3 --save