SqlModels: QSqlTableModel's that are created entirely from QML
-
The problem I see with that property as string is that you can change the database type but you can't give settings like user name and password.
-
@SGaist Ahh, good catch. I can easily add in some more Q_PROPERTY's to allow users to edit those settings, user name and password are just something I don't use, so they weren't initially included. The QSqlDatabase isn't formed until the Component.onCompleted signal is emitted, so any of the database features can be added in.
-
Rather than have a property per QSqlDatabase property, I'd go with a small class that contains them so you can re-use it easily for all database backends. That will also make the QML code clearer.
-
@SGaist That is exactly what I did! There is a new grouped property called "sqlDatabase". All the database settings are housed in a Database class. Defining the settings looks like:
SqlModel { id: sqlModel; sqlDatabase { userName: "Fred" password: "123ABC" numericalPrecisionPolicy: Database.HighPrecision port: 192 // Anything except INT_MIN connectionName: "FRED_DB" // ... } }
-
Nice ! What about dbSettings or dbParameters ? It might make it clearer that you are not instantiating a database but just providing information to set things up.
-
You're welcome !
Did you consider to submit your work for inclusion in Qt ?
-
Good !
Take a look at the Gerrit introduction wiki page to get started.
The module that looks the most suitable (to me) is QtDeclarative. You'll have to refactor your code a bit to follow Qt's coding style guide and naming convention.