Van egy Tablam a mysql -ben azt szeretnem kiolvasni belole az adatokat
a Tabal neve Test es van benne egy Jani valtozo
eddig eljutottam :
handler = mysql_connect(\"1.2.3.4.5.6\", \"Name\", \"password\", \"Name\") -- Csatlakozik a MySQL - hez .
if ( not handler ) then -- A csatlakozas sikertelen .
outputConsole(\"Unable to connect to MySQL !\")
else
mysql_close(handler) -- Bezarja a csatlakozast
outputConsole(\"Connected to MySQL !\").
end
local result = mysql_query(handler, \"SELECT Test FROM Jani WHERE id=\'1\' \")
if (result) then
local row = mysql_fetch_row(result)
local lengths = mysql_fetch_lengths(result)
outputConsole(\"The length of \" .. row[1] .. \" is \" .. lengths[1])
mysql_free_result(result)
end