QT 조작 sqlite 데이터베이스 (1) ----- 네트워크 일반 코드
#include <QtCore/QCoreApplication>
#include <QtSql>
#include <QTextCodec>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
QSqlDatabase dbconn=QSqlDatabase::addDatabase("QSQLITE"); //
dbconn.setDatabaseName("mytest.db"); // mytest.db
if(!dbconn.open())
{
qDebug()<<"fdsfds";
}
QSqlQuery query;// QSL
query.exec("create table student(id varchar,name varchar)"); // student ,id , name
query.exec(QObject::tr("insert into student values(1,'aaa')"));
query.exec(QObject::tr("insert into student values(2,'bbb')"));
query.exec(QObject::tr("insert into student values(3,'ccc')"));
query.exec(QObject::tr("insert into student values(3,'ddd')"));
query.exec(QObject::tr("insert into student values(4,'eee')"));
query.exec(QObject::tr("insert into student values(5,'fff')"));
query.exec(QObject::tr("insert into student values(6,'ggg')"));
query.exec(QObject::tr("select id,name from student where id>=1"));
query.exec("select id,name from student where id>=1");
while(query.next())//query.next() ,
{
int ele0=query.value(0).toInt();//query.value(0) id , int
QString ele1=query.value(1).toString();
qDebug()<<ele0<<ele1;//
}
query.exec(QObject::tr("drop student"));
return a.exec();
}
만약에 위의 방식이 좋지 않다면 사용 과정에서 불편한 점이 많고 많은 문제에 부딪힐 수 있다. 나는 아래의 소절에서 이 사고방식을 수정하고 일반적인 소프트웨어 개발 방식에 따라 다시 실현할 것이다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SQLite의 query로 망설임이것은 내가 처음 안드로이드 응용 프로그램 개발에서 망설이고, 그 후 해결 된 방법을 비망록으로 철자하고 있습니다. java에서 SQLite를 이용한 애플리케이션을 작성하는 동안 EditText에 입력된 item이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.