139 lines
4.9 KiB
HTML
Executable File
139 lines
4.9 KiB
HTML
Executable File
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<title>LuaSQL: Database connectivity for the Lua programming language</title>
|
|
<link rel="stylesheet" href="http://www.keplerproject.org/doc.css" type="text/css"/>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
<div id="product">
|
|
<div id="product_logo"><a href="http://www.keplerproject.org">
|
|
<img alt="LuaSQL logo" src="luasql.png"/>
|
|
</a></div>
|
|
<div id="product_name"><big><strong>LuaSQL</strong></big></div>
|
|
<div id="product_description">Database connectivity for the Lua programming language</div>
|
|
</div> <!-- id="product" -->
|
|
|
|
<div id="main">
|
|
|
|
<div id="navigation">
|
|
<h1>LuaSQL</h1>
|
|
<ul>
|
|
<li><strong>Home</strong>
|
|
<ul>
|
|
<li><a href="index.html#overview">Overview</a></li>
|
|
<li><a href="index.html#status">Status</a></li>
|
|
<li><a href="index.html#download">Download</a></li>
|
|
<li><a href="index.html#credits">Credits</a></li>
|
|
<li><a href="index.html#contact">Contact us</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="manual.html">Manual</a>
|
|
<ul>
|
|
<li><a href="manual.html#introduction">Introduction</a></li>
|
|
<li><a href="manual.html#compiling">Compiling</a></li>
|
|
<li><a href="manual.html#installation">Installation</a></li>
|
|
<li><a href="manual.html#errors">Error handling</a></li>
|
|
<li><a href="manual.html#drivers">Drivers</a></li>
|
|
<li><a href="manual.html#environment_object">Environment</a></li>
|
|
<li><a href="manual.html#connection_object">Connection</a></li>
|
|
<li><a href="manual.html#cursor_object">Cursor</a></li>
|
|
<li><a href="manual.html#postgres_extensions">PostgreSQL</a></li>
|
|
<li><a href="manual.html#mysql_extensions">MySQL</a></li>
|
|
<li><a href="manual.html#oracle_extensions">Oracle</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="examples.html">Examples</a></li>
|
|
<li><a href="history.html">History</a></li>
|
|
<li><a href="http://luaforge.net/projects/luasql/">Project</a>
|
|
<ul>
|
|
<li><a href="http://luaforge.net/tracker/?group_id=12">Bug Tracker</a></li>
|
|
<li><a href="http://luaforge.net/scm/?group_id=12">CVS</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="license.html">License</a></li>
|
|
</ul>
|
|
</div> <!-- id="navigation" -->
|
|
|
|
<div id="content">
|
|
|
|
<h2><a name="overview"></a>Overview</h2>
|
|
|
|
<p>
|
|
LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua program to:
|
|
</p>
|
|
|
|
<ul>
|
|
<li> Connect to ODBC, ADO, Oracle, MySQL, SQLite and PostgreSQL databases;</li>
|
|
<li> Execute arbitrary SQL statements;</li>
|
|
<li> Retrieve results in a row-by-row cursor fashion.</li>
|
|
</ul>
|
|
|
|
<p>
|
|
LuaSQL is free software and uses the same <a href="license.html">license</a>
|
|
as Lua 5.1.
|
|
</p>
|
|
|
|
<h2><a name="status"></a>Status</h2>
|
|
|
|
<p>
|
|
LuaSQL version 2.1.1 (for Lua 5.1) is now available for <a href="#download">download</a>.
|
|
For more details on the features list please check the product
|
|
<a href="history.html">history</a>.
|
|
</p>
|
|
|
|
<h2><a name="download"></a>Download</h2>
|
|
<p>
|
|
Source code for LuaSQL can be downloaded from the <a href=
|
|
"http://luaforge.net/project/showfiles.php?group_id=12">LuaForge</a> page. If you are using
|
|
<a href="http://luaforge.net/projects/luabinaries/">LuaBinaries</a> a Windows binary
|
|
version of LuaSQL can be found at the same LuaForge page.
|
|
</p>
|
|
|
|
<h2><a name="credits"></a>Credits</h2>
|
|
|
|
<h4>LuaSQL 2.x</h4>
|
|
<p>
|
|
Version 2.1 and 2.0 were redesigned by Roberto Ierusalimschy, André Carregal
|
|
and Tomás Guisasola as part of the
|
|
<a href="http://www.keplerproject.org">Kepler Project</a>.
|
|
The implementation was coded by
|
|
Tomás Guisasola, Eduardo Quintão, Thiago Ponte, Fabio Mascarenhas and
|
|
Danilo Tuler, with many contributions from Michael Broughton, Tiago Dionizio, Leonardo Godinho, Pedro Maia, Klaus Ripke, Michael Roth and others.</p>
|
|
|
|
<h4>LuaSQL 1.0</h4>
|
|
|
|
<p>LuaSQL was originally designed by Pedro Miller Rabinovitch and Roberto Ierusalimschy.
|
|
The first implementation was compatible with Lua 4.0a.
|
|
Many modifications were made but not distributed by Diego Nehab (ODBC),
|
|
Carlos Cassino, Tomás Guisasola and Eduardo Quintão (PostgreSQL).</p>
|
|
|
|
<p>LuaSQL development was sponsored by
|
|
<a href="http://www.fabricadigital.com.br">Fábrica Digital</a>, FINEP and CNPq.</p>
|
|
|
|
<h2><a name="contact"></a>Contact us</h2>
|
|
|
|
<p>For more information please <a href="mailto:info-NO-SPAM-THANKS@keplerproject.org">contact us</a>.
|
|
Comments are welcome!</p>
|
|
|
|
<p>You can also reach other Kepler developers and users on the Kepler Project
|
|
<a href="http://luaforge.net/mail/?group_id=104">mailing list</a>.</p>
|
|
|
|
</div> <!-- id="content" -->
|
|
|
|
</div> <!-- id="main" -->
|
|
|
|
<div id="about">
|
|
<p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
|
|
<p><small>$Id: index.html,v 1.25 2007/10/30 01:10:49 carregal Exp $</small></p>
|
|
</div> <!-- id="about" -->
|
|
|
|
</div> <!-- id="container" -->
|
|
|
|
</body>
|
|
</html>
|