Nut
Nut copied to clipboard
Advanced, Powerful and easy to use ORM for Qt
Unstable updating of fields equal to false in release. I have tested tst_benchmark with a little sophisticated code. Tested MySql, SQLite3 in kubuntu, win11 (mscvc 2019, VS 2022 and mingw64)....
**Describe the bug** I have tested tst_basic sample with Qt console application in vs2019, but nothing create in database just __change_logs table created. the output in console window:  the...
Added a `Row` property to each table object to being able to pass a QVariant encapsulated `Row` through the QObject::setProperty in the Query::toList method.
Hello, I am trying to store an image in a sqlite database. I generate a QByteArray from pixmap. The resultant byte array has 10000 elements in it. Then I create...
Hi, I see that Nut::Row sharedpointers have fields related to their foreign keys. But they are always null. I want to be able to access those objects directly from the...
class IDatabase : public Nut::Database { Q_OBJECT NUT_DB_VERSION(1) NUT_DECLARE_TABLE(Network, a) NUT_DECLARE_TABLE(Network, b) NUT_DECLARE_TABLE(Network, c) NUT_DECLARE_TABLE(Network, d) }; It seems that if tables have the same table struct, a()、b()、c() will always...
change private parameters initial sequence.
hi, it's log always crash when reopen the database. Databse is new Error executing sql command `CREATE TABLE __change_logs (id INTEGER PRIMARY KEY AUTOINCREMENT, data TEXT, version INT)`, table __change_logs...
In current state join can make between two table(master to child and vice versa) with related properties. There are limitations like: * Can not be more than one relation between...