luasql/doc/us/index.html

144 lines
4.8 KiB
HTML
Raw Normal View History

2005-03-14 14:38:40 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2007-08-27 21:46:04 +00:00
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
2005-03-07 03:00:43 +00:00
<title>LuaSQL: Database connectivity for the Lua programming language</title>
<link rel="stylesheet" href="doc.css" type="text/css"/>
2005-03-14 14:38:40 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
2005-03-07 03:00:43 +00:00
<body>
2004-11-23 12:01:48 +00:00
2005-03-12 00:26:45 +00:00
<div id="container">
2005-03-15 12:23:48 +00:00
2005-03-15 01:57:01 +00:00
<div id="product">
2017-09-18 18:10:23 -03:00
<div id="product_logo">
2005-03-14 14:38:40 +00:00
<img alt="LuaSQL logo" src="luasql.png"/>
2017-09-18 18:10:23 -03:00
</div>
<div id="product_name"><big><strong>LuaSQL</strong></big></div>
2005-03-15 12:52:33 +00:00
<div id="product_description">Database connectivity for the Lua programming language</div>
2005-03-12 00:26:45 +00:00
</div> <!-- id="product" -->
2005-03-14 14:38:40 +00:00
<div id="main">
2005-03-12 00:26:45 +00:00
<div id="navigation">
2005-03-14 14:38:40 +00:00
<h1>LuaSQL</h1>
2005-03-12 00:26:45 +00:00
<ul>
2005-03-14 14:38:40 +00:00
<li><strong>Home</strong>
2005-03-12 00:26:45 +00:00
<ul>
2005-03-14 14:38:40 +00:00
<li><a href="index.html#overview">Overview</a></li>
2005-03-22 22:47:24 +00:00
<li><a href="index.html#status">Status</a></li>
2005-03-14 14:38:40 +00:00
<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>
2005-03-12 00:26:45 +00:00
</ul>
</li>
<li><a href="manual.html">Manual</a>
</li>
<li><a href="examples.html">Examples</a></li>
<li><a href="history.html">History</a></li>
2014-12-11 14:26:28 -02:00
<li><a href="http://github.com/keplerproject/luasql/">Project</a>
<ul>
2014-12-11 14:26:28 -02:00
<li><a href="http://github.com/keplerproject/luasql/issues">Issues</a></li>
</ul>
</li>
2005-03-12 00:26:45 +00:00
<li><a href="license.html">License</a></li>
</ul>
</div> <!-- id="navigation" -->
<div id="content">
2006-04-26 22:41:52 +00:00
2005-03-11 20:10:49 +00:00
<h2><a name="overview"></a>Overview</h2>
2006-04-26 22:41:52 +00:00
2004-11-23 12:01:48 +00:00
<p>
LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua program to:
2005-03-14 14:38:40 +00:00
</p>
2006-04-26 22:41:52 +00:00
<ul>
2008-05-30 19:49:41 +00:00
<li> Connect to ODBC, ADO, Oracle, MySQL, SQLite, Firebird and PostgreSQL databases;</li>
2004-11-23 12:01:48 +00:00
<li> Execute arbitrary SQL statements;</li>
<li> Retrieve results in a row-by-row cursor fashion.</li>
2004-11-22 18:26:45 +00:00
</ul>
2005-03-11 16:59:07 +00:00
<p>
2004-11-23 12:01:48 +00:00
LuaSQL is free software and uses the same <a href="license.html">license</a>
2007-08-27 19:29:10 +00:00
as Lua 5.1.
2005-03-11 16:59:07 +00:00
</p>
2004-11-23 12:01:48 +00:00
2005-03-22 22:47:24 +00:00
<h2><a name="status"></a>Status</h2>
2006-04-26 22:41:52 +00:00
<p>
2017-02-23 15:41:46 -03:00
LuaSQL version 2.3.5 (for Lua 5.X) is now available for <a href="#download">download</a>.
2007-08-27 19:29:10 +00:00
For more details on the features list please check the product
<a href="history.html">history</a>.
2005-03-12 00:26:45 +00:00
</p>
2006-04-26 22:41:52 +00:00
2005-03-11 16:59:07 +00:00
<h2><a name="download"></a>Download</h2>
<p>
2014-12-11 14:26:28 -02:00
LuaSQL can be installed via <a href="http://luarocks.org">LuaRocks</a>, using the
driver for your database of choice:
2017-09-18 18:10:23 -03:00
<pre class="example">
2014-12-11 14:26:28 -02:00
luarocks install luasql-sqlite3
luarocks install luasql-postgres
luarocks install luasql-mysql
luarocks install luasql-sqlite
luarocks install luasql-odbc
</pre>
Source code for LuaSQL can be downloaded from its <a href=
"http://github.com/keplerproject/luasql">GitHub</a> repository.
2005-03-11 16:59:07 +00:00
</p>
2005-03-11 16:59:07 +00:00
<h2><a name="credits"></a>Credits</h2>
2007-08-27 19:29:10 +00:00
<h4>LuaSQL 2.x</h4>
2004-11-23 12:01:48 +00:00
<p>
2017-02-23 15:41:46 -03:00
Version 2.3.5 incorporates some bug corrections and small improvements (thanks to IR4T4 and tomatolog).
This version works with Lua versions 5.1, 5.2 and 5.3.
</p>
<p>
2013-09-25 20:50:27 -03:00
Version 2.3 is just an adaptation of the code to work with Lua 5.0, 5.1 and 5.2.
</p>
<p>
2014-12-11 14:26:28 -02:00
Version 2.2 started a distributed development, with all project discussions happenign through the <a href="https://groups.google.com/forum/#!forum/kepler-project">Kepler's mailing list</a>.
2008-05-30 19:49:41 +00:00
New developers: Hisham Muhammad, Ignacio Burgue&ntilde;o, Luis Eduardo Jason Santos, Marc Nijdam, Mauricio Bomfim and Scott Morgan.
<p>
2007-08-27 19:29:10 +00:00
Version 2.1 and 2.0 were redesigned by Roberto Ierusalimschy, Andr&eacute; Carregal
2004-11-23 12:01:48 +00:00
and Tom&aacute;s Guisasola as part of the
<a href="http://www.keplerproject.org">Kepler Project</a>.
2007-08-27 19:29:10 +00:00
The implementation was coded by
Tom&aacute;s Guisasola, Eduardo Quint&atilde;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>
2006-04-26 22:41:52 +00:00
<p>LuaSQL was originally designed by Pedro Miller Rabinovitch and Roberto Ierusalimschy.
2004-11-23 12:01:48 +00:00
The first implementation was compatible with Lua 4.0a.
Many modifications were made but not distributed by Diego Nehab (ODBC),
2006-04-26 22:41:52 +00:00
Carlos Cassino, Tom&aacute;s Guisasola and Eduardo Quint&atilde;o (PostgreSQL).</p>
<p>LuaSQL development was sponsored by
<a href="http://www.fabricadigital.com.br">F&aacute;brica Digital</a>, FINEP and CNPq.</p>
2005-03-11 16:59:07 +00:00
<h2><a name="contact"></a>Contact us</h2>
2006-04-26 22:41:52 +00:00
<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
2014-12-11 14:26:28 -02:00
<a href="https://groups.google.com/forum/#!forum/kepler-project">mailing list</a>.</p>
2004-11-23 12:01:48 +00:00
2005-03-12 00:26:45 +00:00
</div> <!-- id="content" -->
2005-03-14 14:38:40 +00:00
</div> <!-- id="main" -->
2005-03-12 00:26:45 +00:00
<div id="about">
2007-10-30 01:10:49 +00:00
<p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
<p><small>$Id: index.html,v 1.27 2008/06/11 00:26:13 jasonsantos Exp $</small></p>
2005-03-12 00:26:45 +00:00
</div> <!-- id="about" -->
</div> <!-- id="container" -->
2004-11-22 18:26:45 +00:00
2004-11-23 12:01:48 +00:00
</body>
</html>