|
|
||
|---|---|---|
| include | ||
| src | ||
| test | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| nut.pri | ||
README.md
Nut
Advanced, Powerful and easy to use ORM for Qt5
Features:
- Easy to use
- Automatically create and update database
- IDE auto complete support
- Table join detect
Sample code for reading:
auto q = FROM(db.posts())
WHERE(Post::id() == %1)
BIND(postId);
auto posts = q->toList();
// now posts is a QList<Post*> contain all posts in
// database that has id equal to postId variable