Hello, I'm building my framework, using this piece of code:
MySQL.Async.fetchAll( 'SELECT * FROM items', { },
function( res )
Utils.Logger.Debug( Utils.Misc.DumpTable( res[1] ) )
if res[1] ~= nil then
for k, v in pairs( res[1] ) do
Utils.Logger.Debug( ( 'Adding %s (%s) to the item list!' ):format( v, k ) )
end
end
end )
Hello, I'm building my framework, using this piece of code:
Image
Which doesn't make sense, table should be: