lua对sqlite数据库操作封装

DB = {}
db_e = require "luasql.sqlite3"


function open_db( ... )
    -- body
    env = assert(db_e.sqlite3())
    db =assert(env:connect("test.db"))
end

function DB.query(sql)
    -- body
    open_db()
    local res = assert(db:execute(sql))
    local tb = {}
    local t = {}
    local i = 1
    while(nil ~= res:fetch(t, 'a')) do
        tb[i] = {}
        tb[i] = t
        t = {}  --must
    end
    res:close()
    close_db()
    return tb    --tb每个元素都是一个table
end

function DB.exec(sql)                                          
        -- body       
        open_db()     
        assert(db:execute(sql))
        close_db()            
end


function close_db( ... )
    -- body
    db:close()
    env:close()
end

return DB


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值