Updating documentation.
This commit is contained in:
parent
25fdac818c
commit
c2754af420
@ -56,6 +56,11 @@
|
|||||||
<h2><a name="history"></a>History</h2>
|
<h2><a name="history"></a>History</h2>
|
||||||
|
|
||||||
<dl class="history">
|
<dl class="history">
|
||||||
|
<dt><strong>2.0.2</strong> [??/??/????]</dt>
|
||||||
|
<dd>Improving tests. Also new method
|
||||||
|
<a href="manual.html#mysql_extensions">numrows</a>
|
||||||
|
added to MySQL driver.</dd>
|
||||||
|
|
||||||
<dt><strong>2.0.1</strong> [06/02/2005]</dt>
|
<dt><strong>2.0.1</strong> [06/02/2005]</dt>
|
||||||
<dd>Bug fixes to the ODBC driver.</dd>
|
<dd>Bug fixes to the ODBC driver.</dd>
|
||||||
|
|
||||||
@ -91,7 +96,7 @@
|
|||||||
<div id="about">
|
<div id="about">
|
||||||
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
||||||
<p><small>
|
<p><small>
|
||||||
$Id: history.html,v 1.6 2005/06/02 18:39:51 carregal Exp $
|
$Id: history.html,v 1.7 2006/01/25 20:25:10 tomas Exp $
|
||||||
</small></p>
|
</small></p>
|
||||||
</div> <!-- id="about" -->
|
</div> <!-- id="about" -->
|
||||||
|
|
||||||
|
@ -68,11 +68,11 @@ as Lua 5.0.
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2><a name="status"></a>Status</h2>
|
<h2><a name="status"></a>Status</h2>
|
||||||
<p>LuaSQL version 2.0.1 (for Lua 5.0) is now available for
|
<p>LuaSQL version 2.0.2 (for Lua 5.0) is now available for
|
||||||
<a href="#download">download</a>.
|
<a href="#download">download</a>.
|
||||||
</p>
|
</p>
|
||||||
<p>The PostgreSQL driver has been tested on Linux and MacOS X and is compatible
|
<p>The PostgreSQL driver has been tested on Linux and MacOS X and is compatible
|
||||||
with PostgreSQL 7.x.</p>
|
with PostgreSQL 7.x and 8.x.</p>
|
||||||
<p>The ODBC driver has been tested on Windows (SQLServer and Microsoft Access
|
<p>The ODBC driver has been tested on Windows (SQLServer and Microsoft Access
|
||||||
drivers).</p>
|
drivers).</p>
|
||||||
<p>The MySQL driver has been tested on Linux and is compatible with versions 4.0
|
<p>The MySQL driver has been tested on Linux and is compatible with versions 4.0
|
||||||
@ -101,7 +101,7 @@ and Tomás Guisasola as part of the
|
|||||||
<a href="http://www.keplerproject.org">Kepler Project</a>.
|
<a href="http://www.keplerproject.org">Kepler Project</a>.
|
||||||
The implementation is compatible with Lua 5.0 and was coded by
|
The implementation is compatible with Lua 5.0 and was coded by
|
||||||
Tomás Guisasola, Eduardo Quintão, Thiago Ponte, Fabio Mascarenhas and
|
Tomás Guisasola, Eduardo Quintão, Thiago Ponte, Fabio Mascarenhas and
|
||||||
Danilo Tuler, with many invaluable contributions by Michael Roth, Tiago Dionizio
|
Danilo Tuler, with many invaluable contributions by Michael Roth, Tiago Dionizio, Pedro Maia
|
||||||
and Leonardo Godinho.</p>
|
and Leonardo Godinho.</p>
|
||||||
|
|
||||||
<h4>LuaSQL 1.0</h4>
|
<h4>LuaSQL 1.0</h4>
|
||||||
@ -132,7 +132,7 @@ Comments are welcome!
|
|||||||
<div id="about">
|
<div id="about">
|
||||||
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
||||||
<p><small>
|
<p><small>
|
||||||
$Id: index.html,v 1.14 2005/06/01 22:03:54 carregal Exp $
|
$Id: index.html,v 1.15 2006/01/25 20:25:10 tomas Exp $
|
||||||
</small></p>
|
</small></p>
|
||||||
</div> <!-- id="about" -->
|
</div> <!-- id="about" -->
|
||||||
|
|
||||||
|
@ -329,6 +329,10 @@ the MySQL driver also offers these extra features:</p>
|
|||||||
that indicate the hostname and port to connect.
|
that indicate the hostname and port to connect.
|
||||||
See also: <a href="#environment_object">environment objects</a><br/>
|
See also: <a href="#environment_object">environment objects</a><br/>
|
||||||
Returns: a <a href="#connection_object">connection object</a></dd>
|
Returns: a <a href="#connection_object">connection object</a></dd>
|
||||||
|
|
||||||
|
<dt><strong><code>cur:numrows()</code></strong></dt>
|
||||||
|
<dd>See also: <a href="#cursor_object">cursor objects</a><br/>
|
||||||
|
Returns: the number of rows in the query result.</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<p>Note: This driver is compatible to version 4.0 and 4.1 (alpha) of
|
<p>Note: This driver is compatible to version 4.0 and 4.1 (alpha) of
|
||||||
@ -357,7 +361,7 @@ the Oracle driver also offers this extra feature:</p>
|
|||||||
<div id="about">
|
<div id="about">
|
||||||
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
||||||
<p><small>
|
<p><small>
|
||||||
$Id: manual.html,v 1.15 2005/06/01 21:59:06 carregal Exp $
|
$Id: manual.html,v 1.16 2006/01/25 20:25:10 tomas Exp $
|
||||||
</small></p>
|
</small></p>
|
||||||
</div> <!-- id="about" -->
|
</div> <!-- id="about" -->
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user