Hi. Well you need to install luasql, and work only with lua 5.0 or major.<br><br>You need a ODBC connection to MySQL.<br><br>And there is an lua script example:<br>============================================================<br>
#!/usr/local/bin/lua<br>require &quot;luasql.mysql&quot;<br><br>env = assert (luasql.mysql())<br>con = assert (env:connect(&quot;DB&quot;,&quot;user&quot;,&quot;password&quot;,&quot;localhost))<br>cur = assert (con:execute&quot;SELECT id, name FROM test&quot;)<br>
row = cur:fetch ({}, &quot;a&quot;) <br>while row do<br>&nbsp; print(string.format(&quot;Id: %s, Name: %s&quot;, <a href="http://row.id">row.id</a>, <a href="http://row.name">row.name</a>))<br>&nbsp; -- reusing the table of results<br>
&nbsp; row = cur:fetch (row, &quot;a&quot;)<br>end <br><br><br><br>cur:close()<br>con:close()<br>env:close() <br>==========================================================<br><br>regards<br>javar<br>