You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From .lp page it is not possible to show characters in unicode.
I added unicode characters using sqlite3 console application.
<database value input - manually>
sqlite> insert into test ('1', '한글');
when I try to show this row the characters are broken.
<.lp code>
stmt = db:prepare('SELECT * FROM test;')
while stmt:step() == sqlite3.ROW do
local v = stmt:get_values()
mg.write(v[1] .. ' ' .. v[2] .. ' ' .. v[3] .. ' '.. v[4] .. ' ' .. v[5] .. ' ' .. v[6] .. ' ' .. v[7] ..'<br>')
end
<result in browser>
1234 �ѱ���
* Additionally sqlite in Lua pages cannot save cannot save unicode characters
properly.
Original issue reported on code.google.com by [email protected] on 23 Aug 2013 at 1:13
The text was updated successfully, but these errors were encountered:
I converted all characters into UTF-8 format-based characters whenever I store
string data into sqllight database. (ex> Insert into test values ('%3%1%d%a'))
Original issue reported on code.google.com by
[email protected]
on 23 Aug 2013 at 1:13The text was updated successfully, but these errors were encountered: