Reputation: 5960
Is there a prepared class for sqllite in java/android studio to accelerate development like Medoo in php?
Upvotes: 0
Views: 70
Reputation: 5960
After a couple of years, I decided to implement my own database wrapper! As i inspired the idea from Medoo project, I called it Jedoo.
It has plenty of methods to do things easilly, for example i bring insert
method.
long id = database.insert("users", new Object[][]{
{"username", "pwwuir"},
{"type": 4}
});
Upvotes: 0
Reputation: 149
There are many third party libraries available for android ORM which can help you to get rid of boring sql queries and save your time you can find a very detailed comparison of some good ORM libraries here: 5 best android ORMs
Upvotes: 1