Skip to content
QtWS25 Last Chance
  • 0 Votes
    17 Posts
    7k Views
    mrjjM

    @SGaist
    is VS express not excotic enough ? ;)

  • 0 Votes
    8 Posts
    4k Views
    SGaistS

    Can you show how you setup and run your query ?

  • 0 Votes
    6 Posts
    7k Views
    kshegunovK

    @Kofr
    If the above snippet works, then you don't respect the SQL's type. You're trying to pass a string representation to Qt when it clearly expects a binary (BLOB is "Binary Large OBject"). So then the question:

    How to fix Qt implementation?

    comes back as: "How to fix your implementation".
    Anyway, I'd suggest passing the appropriate type to the driver. My thoughts are that something like this should be working:

    const char rawData[4] = { 0x00, 0x00, 0x00, 0x07 }; QByteArray id = QByteArray::fromRawData(rawData, 4); QSqlQuery query; if (!query.prepare(QStringLiteral("SELECT row FROM %1 WHERE id = :id").arg(tableName))) // Handle the error! query.bindValue(":id", id); // Pass binary data for columns that expect binary if (!query.exec()) // Handle error again!
  • 0 Votes
    6 Posts
    4k Views
    p3c0P

    @Cleiton-Bueno Yes. If the query string is correct it will work.

  • 0 Votes
    11 Posts
    3k Views
    mrjjM

    @_compiler

    Ok, i see, its a helper class.

    Well you need to open a db then.

    You dont need to do it in QueryBuilder.

    If you open a db in main , QSqlQuery
    will use this DB. You dont need pointer or reference.
    Its handled internally.

  • 0 Votes
    10 Posts
    8k Views
    kshegunovK

    @panosk

    and to be honest I had already started work on this

    You already have that in QSqlDatabase, you only need to keep track of the connections' names.

    Good luck!

  • QSqlQuery adds records twice

    Unsolved General and Desktop
    4
    0 Votes
    4 Posts
    925 Views
    mrjjM

    dont know. should work as before. just not inserting twice.

  • 0 Votes
    3 Posts
    2k Views
    cxamC

    @alex_malyu Thanks a lot

  • 0 Votes
    13 Posts
    4k Views
    SGaistS

    The plugin hasn't changed anything related to that between 5.5 and 5.6 so I wonder if it's a change in QVariant.

    By the way, why do you need that information ? You should be able to just convert to int without any problem.

  • Dynamic SELECT statement

    Unsolved General and Desktop
    2
    0 Votes
    2 Posts
    959 Views
    SGaistS

    Hi,

    Sounds like a job for a query builder. Each time you modify one of these variable, you rebuild the query using condition based on what you need. i.e.:

    QString query = "SELECT * FROM "; if (condition) { query += "WHERE foo=\"" + parameterValue + "\""; //etc. }

    Hope it helps

  • 0 Votes
    10 Posts
    3k Views
    R

    Done :)

  • 0 Votes
    4 Posts
    3k Views
    SGaistS

    Adapted from the documentation example: model->setFilter("should_alarm=1");

  • 0 Votes
    5 Posts
    4k Views
    AlbertoA

    At the end it was a typo. I was trying to insert a value into a column called Localización by using:

    guardar_s.prepare("INSERT INTO Solicitudes_Trabajo (Localizacion)

    The problem is in the accent mark.

    So if anyone gets this error, watch out the typos.

    Thanks @clochydd !

  • 0 Votes
    5 Posts
    3k Views
    AlbertoA

    Solved.
    I tried a lot of things to solve the problem. Some of them included calling next before accessing the result as @SGaist said, but it continued saying:

    QSqlQuery::value: not positioned on a valid record

    At last I created a new project with a new database and it worked properly with this code:

    hospital=QSqlDatabase::addDatabase("QSQLITE"); hospital.setDatabaseName("C:/Sqlite3/Hospital.sqlite"); if(hospital.open()){ qDebug()<<"4.Se ha conectado a la base de datos Hospital"; }else{ qDebug()<<"4.ERROR. No se ha conectado a la base de datos Hospital"; } QSqlQuery mostrar; mostrar.prepare("SELECT*FROM Partes WHERE N_Parte=:ID"); mostrar.bindValue(":ID",ui->lineEditN_Parte->text()); if(mostrar.exec()) { qDebug()<<"5.Los datos del parte se han mostrado correctamente"; }else{ qDebug()<<"5.ERROR. Los datos del parte no se han mostrado correctamente"; qDebug()<<"5.ERROR:"<<mostrar.lastError(); } mostrar.next(); ui->tableWidget->setRowCount(15); QStringList Campos; Campos<<"Fecha de Emisión"<<"Unidad Hospitalaria"; ui->tableWidget->setVerticalHeaderLabels(Campos); ui->tableWidget->insertColumn(0); ui->tableWidget->setColumnCount(1); ui->tableWidget->setItem(0, 0, new QTableWidgetItem(mostrar.value(1).toByteArray().constData())); ui->tableWidget->setItem(2, 0, new QTableWidgetItem(mostrar.value(2).toByteArray().constData()));

    So I guess the problem was in the database, maybe in the columns, maybe in the rows, maybe in the values or maybe in the name of each of them.

    The important thing is that the code I post in this reply works perfectly, so if anyone has a similar problem I hope it helps.

    Thank you very much!

  • 0 Votes
    4 Posts
    5k Views
    AlbertoA

    Resuelto.
    Intenté muchas cosas para solucionar el problem, algunas incluian la utilización de next() que me faltaba en el código de mi respuesta anterior pero continuaba saliendo el error:

    QSqlQuery::value: not positioned on a valid record

    Al final creé un nuevo proyecto con una base de atos nuevas y funciona correctamente con este código:

    hospital=QSqlDatabase::addDatabase("QSQLITE"); hospital.setDatabaseName("C:/Sqlite3/Hospital.sqlite"); if(hospital.open()){ qDebug()<<"4.Se ha conectado a la base de datos Hospital"; }else{ qDebug()<<"4.ERROR. No se ha conectado a la base de datos Hospital"; } QSqlQuery mostrar; mostrar.prepare("SELECT*FROM Partes WHERE N_Parte=:ID"); mostrar.bindValue(":ID",ui->lineEditN_Parte->text()); if(mostrar.exec()) { qDebug()<<"5.Los datos del parte se han mostrado correctamente"; }else{ qDebug()<<"5.ERROR. Los datos del parte no se han mostrado correctamente"; qDebug()<<"5.ERROR:"<<mostrar.lastError(); } mostrar.next(); ui->tableWidget->setRowCount(15); QStringList Campos; Campos<<"Fecha de Emisión"<<"Unidad Hospitalaria"; ui->tableWidget->setVerticalHeaderLabels(Campos); ui->tableWidget->insertColumn(0); ui->tableWidget->setColumnCount(1); ui->tableWidget->setItem(0, 0, new QTableWidgetItem(mostrar.value(1).toByteArray().constData())); ui->tableWidget->setItem(2, 0, new QTableWidgetItem(mostrar.value(2).toByteArray().constData()));

    Así que supongo que el problema estaba en la base de datos anterior, quizás en las columnas, quizás en las filas, quizás en los valores o quizás en el nombre de cada uno de estos elementos.
    Lo importante es que el código que adjunto en esta respuesta funciona correctamente, de modo que si alguien tiene un problema parecido espero que esto le ayude.

    Muchas gracias!

  • 0 Votes
    13 Posts
    4k Views
    SGaistS

    Thanks for sharing your solution !

    Since you have it working now, please update the thread title prepending [solved] so other forum users may know a solution has been found :)

  • 0 Votes
    1 Posts
    947 Views
    No one has replied
  • 0 Votes
    0 Posts
    400 Views
    No one has replied
  • 0 Votes
    7 Posts
    5k Views
    C

    @p3c0 Thank you for your help

    I have realized that

    If query execution is a failure, than lastQuery() returns a string with either placeHolders or placeHolders replaced with quos. Making the user thinking something with binding is wrong. If query is succesful, lastQuery() returns either placeHolders replaced with quos or actual values.

    I am going to further test things out and see if something may be improved with bindValue() and make a request based on that.

  • 0 Votes
    9 Posts
    3k Views
    B

    at funtion gerarRelatorio i swap the qDeleteAll on line down(original position). and it worked.

    qDebug()<<"Documentos processados para a Tabela de Relatorio"; acessodb::setDataUltimoRelatorio(idEmpresa,idCliente); qDeleteAll(listaDocumentos); listaDocumentos.clear(); delete modelo; return true;

    I now will upload to my test server, and see what happens.
    i doesn't care any more about what is causing the problem, i just hope that is solved.