Nut icon indicating copy to clipboard operation
Nut copied to clipboard

Advanced, Powerful and easy to use ORM for Qt

Results 15 Nut issues
Sort by recently updated
recently updated
newest added

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)....

bug
enhancement

Add support for nosql

enhancement
help wanted
question
todo

**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: ![image](https://user-images.githubusercontent.com/7277811/153528596-c9ff90a2-7f25-4362-a9c5-0fd0ad66768c.png) the...

bug
enhancement

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...

bug
enhancement

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...

enhancement
help wanted
question
todo

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...

bug
enhancement

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...

bug
enhancement

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...