码迷,mamicode.com
首页 > 数据库 > 详细

用Qt Creator 对 leveldb 进行简单的读写

时间:2014-09-28 18:43:24      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   文件   sp   

#include <iostream>
#include <string>
#include <leveldb/db.h>
#include <boost/lexical_cast.hpp>

using namespace std;

int main(int argc, char *const *argv)
{

    try
    {
        leveldb::DB* db;
        leveldb::Options options;
        options.create_if_missing = true;
        leveldb::Status status = leveldb::DB::Open(options, "./db", &db);

        cout << status.ok() << endl;

        for(int i=0; i<99999; i++)
        {
            string key = boost::lexical_cast<string>(i);
            string value = boost::lexical_cast<string>(i*i);
            db->Put(leveldb::WriteOptions(), key, value);
        }

        string key = "666";
        string value;

        db->Get(leveldb::ReadOptions(), key, &value);

        cout << value << endl;
        cout << 666*666 << endl;

        delete db;
    }
    catch(exception &e)
    {
        cout << e.what() << endl;
    }

    return 0;
}

代码没什么特色,因为Qt Creator在编译的时候会加上 -mmacosx-version-min=10.6 这样的参数,所以我们在编译libleveldb.a的时候也需要加上这个参数,否则在Qt下就会报错。

.pro文件需要加上这两行:

LIBS += -L/opt/local/lib/ -lleveldb

INCLUDEPATH += /opt/local/include

 

用Qt Creator 对 leveldb 进行简单的读写

标签:style   blog   color   io   os   ar   for   文件   sp   

原文地址:http://www.cnblogs.com/afxcn/p/3998374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!