import QtQuick.tooling 1.2 // This file describes the plugin-supplied types contained in the library. // It is used for QML tooling purposes only. // // This file was auto-generated by: // 'qmlplugindump gfa.plugins.qml 1.0' Module { dependencies: ["QtQuick 2.7"] Component { name: "SqlDatabase" prototype: "QObject" exports: ["SqlDatabase 1.0"] exportMetaObjectRevisions: [0] Property { name: "hostName"; type: "string" } Property { name: "databaseName"; type: "string" } Property { name: "userName"; type: "string" } Property { name: "passWord"; type: "string" } Property { name: "driverName"; type: "string" } Property { name: "isOpen"; type: "bool"; isReadonly: true } Method { name: "open"; type: "bool" } Method { name: "close" } Method { name: "query" type: "SqlQuery*" Parameter { name: "sql"; type: "string" } } Method { name: "isDriverAvailable" type: "bool" Parameter { name: "driveName"; type: "string" } } } Component { name: "SqlQuery" prototype: "QObject" exports: ["SqlQuery 1.0"] isCreatable: false exportMetaObjectRevisions: [0] Method { name: "next"; type: "bool" } Method { name: "previous"; type: "bool" } Method { name: "value" type: "QVariant" Parameter { name: "index"; type: "int" } } Method { name: "value" type: "QVariant" Parameter { name: "name"; type: "string" } } Method { name: "isValid"; type: "bool" } Method { name: "isActive"; type: "bool" } Method { name: "size"; type: "int" } Method { name: "close" } } }