Amir Forsati
Amir Forsati

Reputation: 5960

Is there an easy to use class for sqllite database management for java

Is there a prepared class for sqllite in java/android studio to accelerate development like Medoo in php?

Upvotes: 0

Views: 70

Answers (3)

Amir Forsati
Amir Forsati

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

Satya
Satya

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

Valentun
Valentun

Reputation: 1711

You can use ORM database libraries. It is some of them:

GreenDao

Room

And so on.

Upvotes: 2

Related Questions