微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SQLite database management tool

The EAVCapture device needs to record its runtime log information. So for easy operation,

I choose the sqlite. It's suitable for the embedded device.

The default database file should be created automatically when the application starts at the first time.

I use the following sql statement to detect if the file is exist.

this->m_database=QsqlDatabase::addDatabase("QsqlITE");
this->m_database.setDatabaseName("EAV.db");
if(!this->m_database.open())
{
qDebug()<<"open sqlite database Failed!";
return;
}
//create table.
QsqlQuery tsqlQuery(this->m_database);
if(!tsqlQuery.exec("SELECT COUNT(*) FROM devlog"))
{
//if select is Failed,then create the table.
qDebug()<<"start to initial database";
if(!tsqlQuery.exec("CREATE TABLE devlog (CreateTime DATETIME,LogLevel INT,LogMessage BLOB)"))
{
qDebug()<<"create table failes!";
return;
}else{
qDebug()<<"create table success!";
}
}else{
qDebug()<<"database is already exists!";
}


If the file is exist,the sql statement "select count(*) from devlog" should return zero or positive value,

otherwise the exec() function will fails and return false. I can use its return value to kNow if it is exist.

by zhangshaoyan at May 24,2015 night.


And codes show how to insert a log message:

QString tCreateTime=QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss");
QString tsqlStatement=QString("INSERT INTO [devlog] ([CreateTime],[LogLevel],[LogMessage]) VALUES ('%1',%2,'%3')").arg(tCreateTime).arg(logLevel).arg(logMessage);
QsqlQuery tsqlQuery;
if(!tsqlQuery.exec(tsqlStatement))
{
return -1;
}
return 0;

原文地址:https://www.jb51.cc/sqlite/199611.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐