C ++ QT Creator 5.0 SQLite3_Open未定义参考

时间:2013-06-06 14:22:21

标签: c++ sqlite qt-creator

我是C ++广告的新手,试图链接到sqlite数据库。 我正在关注一个教程,我得到一个sqlite3_open错误Undefined Reference。 我做错了什么?

#include "database.h"
#include<stdio.h>
#include<sqlite3.h>
#include<stdlib.h>

database::database()
{
}

int database::test()
{
int retval;

// A prepered statement for fetching tables
sqlite3_stmt *stmt;

// Create a handle for database connection, create a pointer to sqlite3
sqlite3 *handle;

// try to create the database. If it doesnt exist, it would be created
// pass a pointer to the pointer to sqlite3, in short sqlite3**
retval = sqlite3_open("CC.sqlite",&handle);
// If connection failed, handle returns NULL
if(retval)
{
printf("Database connection failed\n");
return -1;
}
printf("Connection successful\n");
return 1;
}

.pro文件

#-------------------------------------------------
#
# Project created by QtCreator 2013-05-31T09:22:09
#
#-------------------------------------------------

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = CC_Herd_Manager
TEMPLATE = app


SOURCES += main.cpp\
    mainwindow.cpp \
animal.cpp \
email.cpp \
owner.cpp \
phone.cpp \
equipment.cpp \
../CC_Cpp/cc_number.cpp \
../CC_Cpp/cc_date.cpp \
../CC_Cpp/cc_timestamp.cpp \
../CC_Cpp/cc_address.cpp \
database.cpp

HEADERS  += mainwindow.h \
animal.h \
email.h \
owner.h \
phone.h \
equipment.h\
../CC_Cpp/cc_number.h \
../Cpp/CC_Cpp/cc_date.h \
../Cpp/CC_Cpp/cc_timestamp.h \
../Cpp/CC_Cpp/cc_address.h \
database.h

FORMS    += mainwindow.ui

OTHER_FILES += \
DB_Install

错误

/home/mongo/Cpp/CC_Herd_Manager/database.o:-1: In function `database::test()':
/home/mongo/Cpp/CC_Herd_Manager/database.cpp:23: error: undefined reference to     `sqlite3_open'
:-1: error: collect2: error: ld returned 1 exit status

1 个答案:

答案 0 :(得分:3)

如果你想再次链接系统的sqlite版本(这可能是最好的),你必须将以下行添加到.pro文件中:

LIBS += -lsqlite3

应该是它。

你也可以下载sqlite源码(他们称之为“amalgamation”)并将.c文件添加到你的项目中。如果这样做,您也应该使用下载的Header文件。但是因为你的代码中有系统的头文件,我假设你想使用系统的库版本,我建议这样做。