Qt中使用第三方的資料庫(Sqlite)儲存並讀取檔案本體

來源:互聯網
上載者:User

    在網上找了一下關於如何在資料庫中隱藏檔本體(一般是關於image)的內容,但是發現大多數的做法都是隱藏檔相應的路徑,需要該檔案的時候通過路徑查詢,感覺那樣的做法的話,檔案只是在一種抽象的方式被儲存在了資料庫中,本體並沒有被儲存,這樣做可能是出於效率和資料庫大小的考慮(本人對資料庫知道的不多)。因為前段時間對QT比較感興趣,然後發現其中可以使用第三方的資料庫,於是嘗試了下。

 

(1)建立資料庫連接

bool MyDatabase::CreateConnection()

{

db = QSqlDatabase::addDatabase("QSQLITE");

db.setDatabaseName("mydb.db");

if (!db.open()) {

qDebug()<<" can't open database >>>>>> mydb.db";

exit(-1);

}

return true;

}

使用第三方資料庫Sqlite,資料庫名字為mydb.db,而後就是開啟資料庫了。

 

(2)建立儲存說需要的表

bool MyDatabase::CreateTable()

{

QStringList tableList = db.tables();

 

QSqlQuery query(db);

if(!tableList.contains("files"))

{

QString createTable = "create table files (id integer primary key,"

"filename varchar(128) unique, filecontent blob)";

if(!query.exec(createTable))

{

qDebug()<<query.lastError();

exit(-1);

}

}

return true;

}

查看是否存在相關的表,不存在,則通過"create table files (id integer primary key,filename varchar(128) unique, filecontent blob)";建立files表。

 

(3)隱藏檔名為

bool MyDatabase::StoreFile(QString FileName)

{

QSqlQuery query(db);

 

QFile File(FileName);

if(File.open(QIODevice::ReadOnly)){

QByteArray &tdata = File.readAll();

QByteArray data = qCompress(tdata,9);

query.prepare("INSERT INTO files (id,filename,filecontent)"

"VALUES(NULL,:filename,:filecontent)");

query.bindValue(":filename", FileName);

query.bindValue(":filecontent", data);

 

if(!query.exec())

{

qDebug()<<query.lastError();

return false;

}

}

else

{

return false;

}

return true;

}

基本思想就是把名為FileName的檔案裝換成為QByteArray,然後使用第三方的zlib進行最高等級的壓縮,然後儲存

 

(4)從資料庫中

bool MyDatabase::GetFile(QString FileName)

{

QSqlQuery query(db);

query.prepare("select filecontent from files");

query.exec();

query.next();

QByteArray tdata = query.value(0).toByteArray();

QByteArray data = qUncompress(tdata);

 

QFile File(FileName);

if(File.open(QIODevice::WriteOnly))

{

File.write(data);

File.close();

}

else

{

return false;

}

 

return true;

}

因為僅僅是嘗試,所以只需讀取一個並把它命名為FileName。基本思想是把儲存在資料庫中的內容轉化為QByteArray,然後解壓,寫入到檔案中。

 

本例僅是示範,希望對大家能夠有所協助。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.