用LuaSql串連Mysql

來源:互聯網
上載者:User

問題描述:畢業設計中用到了Luasql來Mysql資料庫,Lua用的是用源碼自己編譯的,測試代碼類似於下面:

-- load driverrequire "luasql.mysql"-- create environment objectenv = assert (luasql.mysql())-- connect to data sourcecon = assert (env:connect("database", "usr", "password", "192.168.xx.xxx", 3306))-- reset our tableres = con:execute"DROP TABLE people"               --建立新表peopleres = assert (con:execute[[CREATE TABLE people(                  name varchar(50),    email varchar(50))]])-- add a few elementslist = {{ name="Jose das Couves", email="jose@couves.com", },{ name="Manoel Joaquim", email="manoel.joaquim@cafundo.com", },{ name="Maria das Dores", email="maria@dores.com", },}for i, p in pairs (list) do                                            --加入資料到people表res = assert (con:execute(string.format([[    INSERT INTO people                                             VALUES ('%s', '%s')]], p.name, p.email)))end-- retrieve a cursorcur = assert (con:execute"SELECT name, email from people")    --擷取資料-- print all rowsrow = cur:fetch ({}, "a") -- the rows will be indexed by field names    --顯示出來while row doprint(string.format("Name: %s, E-mail: %s", row.name, row.email))row = cur:fetch (row, "a") -- reusing the table of resultsend-- close everythingcur:close()con:close()env:close()

通過類似上面的方法串連,程式會在

row = cur:fetch ({}, "a")

傳入參數為 “a”的時候crash掉,百度了N久找不到原因。後來在一個CMUD的論壇上看了可能的問題,

解決方案:

Lua5.1 的DLL檔案有兩個,一個是 Lua5.1.DLL,一個是Lua51.DLL,

用源碼編譯Lua的時候,編譯出來的有問題,

用官方編譯出來的Lib以靜態庫的形式連結就沒有問題了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.