Guest User

Untitled

a guest
Apr 5th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. void MainWindow::on_loginButton_clicked() {
  2. QString userName = ui->userLineEdit->text();
  3. QString userPassword = ui->passwordLineEdit->text();
  4.  
  5. QSqlQuery q;
  6. q.exec("SELECT name FROM users.name WHERE name = 'javier'");
  7.  
  8. QString nombre = q.value(0).toString();
  9. qDebug() << nombre;
Add Comment
Please, Sign In to add comment