/usr/share/doc/cl-sql/html/status.html is in cl-sql 6.7.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>STATUS</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /><link rel="home" href="index.html" title="CLSQL Users' Guide" /><link rel="up" href="ref-connect.html" title="Connection and Initialisation" /><link rel="prev" href="reconnect.html" title="RECONNECT" /><link rel="next" href="create-database.html" title="CREATE-DATABASE" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">STATUS</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="reconnect.html">Prev</a> </td><th width="60%" align="center">Connection and Initialisation</th><td width="20%" align="right"> <a accesskey="n" href="create-database.html">Next</a></td></tr></table><hr /></div><div class="refentry"><a id="status"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>STATUS — Print information about connected databases.<strong>Function</strong></p></div><div class="refsect1"><a id="idp73918928"></a><h2>Syntax</h2><pre class="synopsis">
<code class="function">status</code> &optional <em class="parameter"><code>full</code></em> => <span class="returnvalue"></span></pre></div><div class="refsect1"><a id="idp73921696"></a><h2>Arguments and Values</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>full</code></em></span></dt><dd><p>A boolean indicating whether to print additional
table information. The default value is <code class="constant">NIL</code>.
</p></dd></dl></div></div><div class="refsect1"><a id="idp73925264"></a><h2>Description</h2><p>Prints information about the currently connected databases
to <span class="symbol">*STANDARD-OUTPUT*</span>. The argument
<em class="parameter"><code>full</code></em> is <code class="constant">NIL</code> by default and a value of t
means that more detailed information about each database is
printed.
</p></div><div class="refsect1"><a id="idp73928016"></a><h2>Examples</h2><pre class="screen">
(status)
CLSQL STATUS: 2004-06-13 15:07:39
--------------------------------------------------------
DATABASE TYPE RECORDING
--------------------------------------------------------
localhost/test/petrov mysql nil
localhost/test/petrov postgresql nil
localhost/test/petrov postgresql-socket nil
test/petrov odbc nil
* :memory: sqlite nil
--------------------------------------------------------
(status t)
CLSQL STATUS: 2004-06-13 15:08:08
-------------------------------------------------------------------------------
DATABASE TYPE RECORDING POOLED TABLES VIEWS
-------------------------------------------------------------------------------
localhost/test/petrov mysql nil nil 7 0
localhost/test/petrov postgresql nil nil 7 0
localhost/test/petrov postgresql-socket nil nil 7 0
test/petrov odbc nil nil 7 0
* :memory: sqlite nil nil 0 0
-------------------------------------------------------------------------------
</pre></div><div class="refsect1"><a id="idp73930768"></a><h2>Side Effects</h2><p>
None.
</p></div><div class="refsect1"><a id="idp73931920"></a><h2>Affected by</h2><p>
None.
</p></div><div class="refsect1"><a id="idp73933072"></a><h2>Exceptional Situations</h2><p>
None.
</p></div><div class="refsect1"><a id="idp73934224"></a><h2>See Also</h2><p>
</p><table border="0" summary="Simple list" class="simplelist"><tr><td><a class="link" href="connected-databases.html" title="CONNECTED-DATABASES"><code class="function">connected-databases</code></a></td></tr><tr><td><a class="link" href="connect.html" title="CONNECT"><code class="function">connect</code></a></td></tr><tr><td><a class="link" href="disconnect.html" title="DISCONNECT"><code class="function">disconnect</code></a></td></tr><tr><td><a class="link" href="connect-if-exists.html" title="*CONNECT-IF-EXISTS*"><code class="function">*connect-if-exists*</code></a></td></tr><tr><td><a class="link" href="find-database.html" title="FIND-DATABASE"><code class="function">find-database</code></a></td></tr></table><p>
</p></div><div class="refsect1"><a id="idp73941600"></a><h2>Notes</h2><p>
None.
</p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="reconnect.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ref-connect.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="create-database.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">RECONNECT </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> CREATE-DATABASE</td></tr></table></div></body></html>
|