Questions related to QtSQl Module, a collection of Qt classes that work with various relational database management systems.

learn more… | top users | synonyms

0
votes
0answers
20 views

QtSql: passing QList of QVariant via placeholder

Is it possible to pass a value list via a placeholder? If so, which QSql drivers do support this? I found scalar value examples in the Qt doc only. Example: INSERT INTO Table VALUES (:1, :2, :3); ...
1
vote
1answer
97 views

Qt MySQL -----— Cannot open include file: 'mysql.h':

Im making a GUI application in Qt, it will be a front end to a database basically however i haven't even got to the point of doing anything yet because my database connection just keeps failing ...
0
votes
0answers
53 views

Calculating Average; Cursor Iteration

I have been struggling with this Average calculation (code below). Although it is getting a moving average at the moment it should essentially be getting the average of the @AVG parameter that I ...
0
votes
0answers
157 views

Unable to build ODBC qsqldriver in qt 5.0.1 MAC 10.8.x using clang 64bit

I tried the following link for building ODBC driver in windows, it worked just fine, now when i tried the instructions for MAC 10.8.X mountain lion, i get the below error: - qmake ...
0
votes
0answers
37 views

qtsql qoci select performance

I've got a question performance of Qtsql module, exactly QOCI interface. Simple application which only connect and selects data, works way too slow (about 5 times) in comparison with other tools ...
0
votes
0answers
43 views

Qt Compile oracle driver error

I've doing qt sql programming. Still, I need to compile a oci driver. I edit the oci.pro file like the below. Then I used qmake and make to compile. But there's an error occurred when linking which ...
0
votes
2answers
183 views

Qt SQL - Configuring Connection to Database

I have given up on trying to configure the MYSQL driver for the Qt 5.0 library, I am going to use the only driver currently available to me - "QSQLITE". I have been trying to get this working for ...
0
votes
2answers
307 views

Qt MySQL cant load plugin driver (QLibrary, QPluginLoader successfuly loaded, QSqlDatabase::drivers() return empty!)

I have succesffuly compiled the MySQL drivers, but I cannot force Qt to load them. What should be said in the beginning Iv got ODBC and SQLite drivers with the package (after installing Qt) and they ...
1
vote
2answers
211 views

QtConcurrent threading is slow!! What am I doing wrong?

Why is my qtconcurrent::run() call just as slow as calling the member function through the object?? (Ex: QtConcurrent::run(&db, &DBConnect::loadPhoneNumbers) is just as slow as calling ...
0
votes
1answer
152 views

why is my transaction not rolling back? Qt Mysql odbc driver

I'm using Qt 4.8.3 and MySQL ODBC 3.51 Driver. When my transaction fails because of a duplicate unique Id in the second table the insert in the first table is not rolled back. Can anyone spot the ...
-2
votes
1answer
283 views

Introduction to SQL for C++ programmer [closed]

I'm a C++ programmer who wants to expand his knowledge into SQL language because I'm dealing with QtSQL module and would like to understand it better. I would like to find a gentle introduction to ...
0
votes
0answers
170 views

Qt value: not positioned on a valid record

db = QSqlDatabase::addDatabase("QSQLITE"); db.setDatabaseName("newphonenumber"); query = new QSqlQuery(db); db.open(); query->exec("select name from phone_numbers"); while (query->next()) { ...
0
votes
1answer
74 views

How to use a variable as an int inside a query to a mssql db using qt?

I have built a quick app I'm trying to make to learn how I could implement dynamic fitment or category options list to a list of products(I.E. Make, Model, Year Search). I thought I found a simple way ...
0
votes
4answers
373 views

How do i use alias in where clause? [duplicate]

Possible Duplicate: Referring to a Column Alias in a WHERE Clause SELECT Trade.TradeId, Isnull(Securities.SecurityType,'Other') SecurityType, TableName, CASE WHEN ...
0
votes
3answers
132 views

Do I need an SQL server to work with Qt's QtSql library?

I am a beginner with Qt, so my question might be a bit basic. My intention is to work with an ODBC database located in my hard drive. I have tried to open it with this code: QSqlDatabase db = ...
1
vote
1answer
199 views

PyQt4: Display progress bar while qtsql table is being loaded

Is it possible to get the number of records in a table after QtSql.QSqlTableModel.setTable(tableName) and before QtSql.QSqlTableModel.select()? Qt documentation about setTable function says: Sets ...
0
votes
0answers
40 views

QT How server can send QSqlQueryMode result to client

How server can send QSqlQueryMode result to client for exp. this->model = new QSqlQueryModel(); model->setQuery("Select * from phone_table"); Client->write(modal) thanks ;-))
0
votes
2answers
123 views

QT sql programming

include "mythread.h mythread::mythread(int ID, QObject *parent) : QThread(parent) { this->socketDescriptor = ID; db = QSqlDatabase::addDatabase("QODBC"); db.setHostName("127.0.0.1"); ...
1
vote
1answer
106 views

QtSql create mysql database

Is there a way to connect to the database server without specifying a database? I would like to be able to create a database if it's missing - but the QtSql drivers require some database to connect ...
0
votes
1answer
236 views

PyQt4: Display QtSql database in QTreeWidget

How would you display the contents of a QtSql table using a QTreeWidget? There isn't quite enough information around this particular subject...
0
votes
0answers
48 views

View used as a selection stack, using Drag & Drop

I have two TableViews. For now, one is connected to a SQLTableModel. I would like the user to be able to drag some rows and drop them into the second view which would work as a temporary stack. In the ...
1
vote
1answer
158 views

SQLite remove database error

I have widget which connects to database: Widget::Widget(QWidget *parent) { QString databaseName = "name"; QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE"); ...
0
votes
0answers
645 views

Most efficient way to iterate through a QSqlQuery result set?

I'm querying a remote MSSQL Server database using QODBC and I have a result set returned but it appears as though it sends a query to SQL Server for each record one by one. This is really slow for ...
0
votes
0answers
205 views

Qt-MySQL connection issue

I'm trying to connect to a MySQL database -on localhost XAMPP- via Qt and I have written the connection code as following: QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL"); ...
1
vote
0answers
405 views

QT SDK MySQL nmake error

I'm trying to build the QMYSQL plugin for the QT SDK and upon executing qmake (ran successfully) -using the MySQL win32 files I had placed into C:- I tried to run nmake and got the following errors: ...
2
votes
1answer
367 views

Qt sql query failed

query->prepare("INSERT INTO businessweek (id, source, date, headline, body) VALUES (NULL, ?, ?, ?, ?)"); query->bindValue(1, "source"); query->bindValue(2, "date"); query->bindValue(3, ...
1
vote
1answer
323 views

Trying to extract values from a PyQt4 QSqlQuery

I keep getting an error saying my value is not positioned on a valid record. I've executed my query successfully in MySQL, but I think I'm overlooking something in my code. query = ...
0
votes
0answers
79 views

Invalid QSqlRecord after performing another query to DB

Here is the code: QSqlQuery q1(db_connection), q2(db_connection); q1.exec("SELECT * from users"); while(q1.next()) { q2.exec("delete from table1"); if (!q2.isValid()) qDebug() ...
-2
votes
1answer
321 views

How to install QMYSQL plugin

As the question says, how to install QMYSQL plugin? I'm using Ubuntu 11.10, QtSDK 4.8
1
vote
1answer
147 views

how get the row state of a row in QSqlTableModel?

I have a QSqlRelationalTableModel. I am using OnManualSubmit for my edit strategy. I have called setTable and insertRow. Later, how do I know programmatically which rows have been added or edited ...
0
votes
1answer
388 views

read QTableview selected row QSQLITE database

I show the data of a table (table1) in a QTableView. When the user selects a row, I want to read the data from this highlighted line. How can I do it easily? For example will this read the whole ...
0
votes
1answer
520 views

Qt database error due to QSqlQuery object scope

#include <QtGui> #include <QtSql> #include <QApplication> class ABC { public: QSqlDatabase db; QSqlQuery memberQuery; ABC() { db = ...
0
votes
1answer
173 views

Qt query execution error

bool MainWindow::initDb() { db = QSqlDatabase::addDatabase("QSQLITE"); // defined on class header as QSqldatabase db db.setDatabaseName("data.db"); if (!db.open()) { ...
1
vote
1answer
688 views

Qt QList<QString> serialization for database

I have a QList list. I want to insert it on the database. I didn't find any serializer method after some googling. If there any method / idea to serialize the list data for database?
1
vote
2answers
1k views

QtSql multiple query execution

... query.exec("insert into person values(104, 'Roberto', 'Robitaille')"); query.exec("insert into person values(105, 'Maria', 'Papadopoulos')"); ... Can these be bind in a single query.exec() ? ...
2
votes
2answers
185 views

QtSql cannot execute a query

#include <QtGui> #include <QtSql> #include <QDebug> int main(int argc, char* argv[]) { QApplication app(argc, argv); QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE"); ...
2
votes
1answer
863 views

QSqlQuery::exec: database not open, PyQt

i'm trying to output data from sqlite database. I did it like in PyQt's examples, but it does not work. It seems that the database is opened, but the code is giving errors, that it does not. Could you ...
1
vote
1answer
210 views

Fetch Oracle output of dbms_output.put_line with QtSql

Is it possible to fetch raw DB output of an Oracle DB within a QSqlQuery, e.g. by something like this: QSqlQuery sqlQuery; sqlQuery.prepare("exec dmbs_output.put_line('hello world');"); ...
1
vote
2answers
361 views

Qt and databases save and open them

I have an app that handles multiple databases which the users edits and i would also like it to open them from a specified path (like i get the path using QFileDialog). Also I saw that it saves the ...
1
vote
1answer
168 views

qtsql: Query inserts malformed UTF-8 text to MySQL

I want to connect to my MySQL database and insert some UTF8 strings. But when I do the insert query, some text like سسسسسسسسسسسسسسسس is inserted into my table. This is my code: s = ...
1
vote
1answer
1k views

How to load ODBC in qt

I'm very new to Qt and C++ I'm trying to connect to an ODBC db, but I'm getting the following output QSqlDatabase: QODBC driver not loaded QSqlDatabase: available drivers: QSQLITE How do I load ...
0
votes
1answer
93 views

Qt Database issue with scope_identity()

I am trying to debug the scope_Identity() call in qt. To elaborate on that scope_identity supposed to return the sessions last inserted data ID, but this call does not work accordingly in Qt database ...
0
votes
1answer
201 views

How to include the qtsql module?

I am new to Qt and C++ (coming from the PHP world) and am stuck on something that is probably pretty obvious: including non-core Qt modules. I (understandably) get the compile error that QSqlDatabase ...
10
votes
2answers
5k views

What is the correct way of QSqlDatabase & QSqlQuery?

I got confused with the manual , should i work like this: { QSqlDatabase db = QSqlDatabase::addDatabase (...); QSqlQuery query (db); query.exec (...); } QSqlDatabase::removeDatabase (...); As ...
4
votes
1answer
813 views

QSql module and multithreaded application

I'm troubled by how the Sql module works with multithreaded application in Qt. http://doc.qt.nokia.com/stable/threads-modules.html#threads-and-the-sql-module clearly states that "A ...
1
vote
1answer
1k views

parameter count mismatch in parameterized query

I am using quite a lot of parameterized queries in my code for performance reasons. In short, some of them work, some don't. I initialize the query during construction of my database wrapper like ...
1
vote
1answer
362 views

Qt Database content view / manipulation as list view

I have a database, which tables should viewed in a widget. Seems simple, but I can't decide what to du or use. Each row of the table should be viewed as one list view item, for instance, imagine ...
2
votes
1answer
513 views

Qt: Example of QAbstractItemModel implementation using QtSql (to use with QTreeView)

I'm looking for an example implementation of QAbstractItemModel to use with QTreeView. The model should load data from QSqlQuery and should do it in a "lazy" way. In other words I only want to load ...
1
vote
1answer
2k views

QSql connect and read from Database example? - Driver not loaded

I've recently started found the need to change from the __mysql module to PyQt's QSql but have nooo idea whatsoever where to start. All I want to do (for now) is read from a database and print the ...
1
vote
1answer
485 views

Problem with QIBASE (firebird + Ubuntu)

Good morning. I've tried to compile QIBASE driver to access FireBird database using sqlbrowser from %QTDIR/demos. But after i filled all fields in sqlbrowser and pushed OK button the program crashed ...

1 2