>데이터 베이스 >MySQL 튜토리얼 >qt5-QT使用 mysql时出现问题,求大神看下

qt5-QT使用 mysql时出现问题,求大神看下

WBOY
WBOY원래의
2016-06-06 09:41:13948검색

mysqlqt5

我的系统:win7 64bit
QT版本:QT5.4 vs2013的编译器
MySQL5.6安装正常
我是初学者,想试验一下mysql的使用,用main函数调用以下代码时出现:
Starting C:\Qt\Qt5.4.1\QTprojects\build-Mysql_test-Desktop_Qt_5_4_1_MSVC2013_64bit-Debug\debug\Mysql_test.exe...
build error!haha
C:\Qt\Qt5.4.1\QTprojects\build-Mysql_test-Desktop_Qt_5_4_1_MSVC2013_64bit-Debug\debug\Mysql_test.exe exited with code 0

代码如下:
#ifndef CONNECTDATABASE_H
#define CONNECTDATABASE_H

#include
#include
#include
#include
#include
#include
bool connectiondatabase()
{
QSqlDatabase db(QSqlDatabase::addDatabase("QMYSQL"));
db.setHostName("localhost");
db.setDatabaseName("Student");
db.setUserName("root");
db.setPassword("123456");
if(db.open())
{
qDebug() }
else
{
qDebug() return false;
}
QSqlQuery query;

<code>query.exec(QObject::tr("create table student(sno varchar(10) not null primary key,sname "                       "varchar(20) not null,scalss varchar(10) not null"));query.exec(QObject::tr("insert into student(sno,sname,sclass) values('2009001','lilei',"                       "'0901')"));query.exec(QObject::tr("insert into student(sno,sname,sclass) values('2009002','lucy',"                       "'0902')"));query.exec(QObject::tr("insert into student(sno,sname,sclass) values('2009003','mike',"                       "'0903')"));query.exec("select * from student");qDebug()</code>

}

#endif // CONNECTDATABASE_H

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.