mirror of
https://github.com/luapower/mysql.git
synced 2025-01-01 14:00:27 +01:00
unimportant
This commit is contained in:
parent
76e705417a
commit
5e21ce7abb
@ -3,6 +3,8 @@
|
|||||||
--Written by Cosmin Apreutesei. Public domain.
|
--Written by Cosmin Apreutesei. Public domain.
|
||||||
--Original code by Yichun Zhang (agentzh). BSD license.
|
--Original code by Yichun Zhang (agentzh). BSD license.
|
||||||
|
|
||||||
|
if not ... then require'mysql_client_test'; return end
|
||||||
|
|
||||||
local ffi = require'ffi'
|
local ffi = require'ffi'
|
||||||
local bit = require'bit'
|
local bit = require'bit'
|
||||||
local sha1 = require'sha1'.sha1
|
local sha1 = require'sha1'.sha1
|
||||||
|
@ -69,10 +69,11 @@ sock.run(function()
|
|||||||
local v = col[k]
|
local v = col[k]
|
||||||
v = isnum(v) and fmt('%0.17g', v) or v
|
v = isnum(v) and fmt('%0.17g', v) or v
|
||||||
v = istab(v) and pp.format(v) or v
|
v = istab(v) and pp.format(v) or v
|
||||||
add(t, fmt('%20s', repl(v, nil, '')))
|
add(t, fmt('%-20s', repl(v, nil, '')))
|
||||||
end
|
end
|
||||||
print(cat(t))
|
print(cat(t))
|
||||||
end
|
end
|
||||||
|
print()
|
||||||
end
|
end
|
||||||
|
|
||||||
--pp(conn:query'select * from val where val = 1')
|
--pp(conn:query'select * from val where val = 1')
|
||||||
@ -96,40 +97,8 @@ sock.run(function()
|
|||||||
})
|
})
|
||||||
assert(stmt:free())
|
assert(stmt:free())
|
||||||
|
|
||||||
local spp = require'sqlpp'.new()
|
conn:close()
|
||||||
require'sqlpp_mysql'
|
|
||||||
spp.import'mysql'
|
|
||||||
|
|
||||||
local cn = spp.connect(conn)
|
|
||||||
|
|
||||||
local rows, cols = cn:query({get_table_defs=1}, 'select * from test')
|
|
||||||
print()
|
|
||||||
pr(cols, {
|
|
||||||
'name',
|
|
||||||
'mysql_type',
|
|
||||||
'mysql_display_type',
|
|
||||||
'size',
|
|
||||||
'display_width',
|
|
||||||
'mysql_charset',
|
|
||||||
'mysql_collation',
|
|
||||||
'type',
|
|
||||||
'min',
|
|
||||||
'max',
|
|
||||||
'digits',
|
|
||||||
'decimals',
|
|
||||||
'has_time',
|
|
||||||
'padded',
|
|
||||||
'enum_values',
|
|
||||||
'default',
|
|
||||||
'mysql_default',
|
|
||||||
'mysql_display_charset',
|
|
||||||
'mysql_display_collation',
|
|
||||||
'mysql_buffer_type',
|
|
||||||
})
|
|
||||||
|
|
||||||
pp(rows)
|
|
||||||
|
|
||||||
cn:close()
|
|
||||||
assert(conn:closed())
|
assert(conn:closed())
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user