This file is indexed.

/usr/share/doc/cl-sql/html/drop-view-from-class.html is in cl-sql 6.5.0-1.

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
<?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>DROP-VIEW-FROM-CLASS</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-ooddl.html" title="Object Oriented Data Definition Language (OODDL)" /><link rel="prev" href="def-view-class.html" title="DEF-VIEW-CLASS" /><link rel="next" href="list-classes.html" title="LIST-CLASSES" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">DROP-VIEW-FROM-CLASS</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="def-view-class.html">Prev</a> </td><th width="60%" align="center">Object Oriented Data Definition Language (OODDL)</th><td width="20%" align="right"> <a accesskey="n" href="list-classes.html">Next</a></td></tr></table><hr /></div><div class="refentry"><a id="drop-view-from-class"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>DROP-VIEW-FROM-CLASS — Delete table from SQL database.<strong>Function</strong></p></div><div class="refsect1"><a id="idp63978768"></a><h2>Syntax</h2><pre class="synopsis">
      <code class="function">drop-view-from-class</code> <em class="replaceable"><code>view-class-name</code></em> &amp;key <em class="replaceable"><code>database</code></em> =&gt; <span class="returnvalue"></span></pre></div><div class="refsect1"><a id="idp63982288"></a><h2>Arguments and Values</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>view-class-name</code></em></span></dt><dd><p>
	      The name of the <a class="glossterm" href="glossary.html#gloss-view-class"><em class="glossterm">View
	      Class</em></a>.
	    </p></dd><dt><span class="term"><em class="parameter"><code>database</code></em></span></dt><dd><p>
              <a class="glossterm" href="glossary.html#gloss-database-object"><em class="glossterm">database
              object</em></a>. This will default to the value of
              <span class="symbol">*default-database*</span>.
	    </p></dd></dl></div></div><div class="refsect1"><a id="idp63989904"></a><h2>Description</h2><p>Removes a table defined by the <a class="glossterm" href="glossary.html#gloss-view-class"><em class="glossterm">View Class</em></a>
      <em class="parameter"><code>view-class-name</code></em> from
      <em class="parameter"><code>database</code></em> which defaults to
      <em class="parameter"><code>*default-database*</code></em>.
      </p></div><div class="refsect1"><a id="idp63994160"></a><h2>Examples</h2><pre class="screen">
(list-tables)
=&gt; ("FOO" "BAR")
(drop-view-from-class 'foo)
=&gt;
(list-tables)
=&gt; ("BAR")
      </pre></div><div class="refsect1"><a id="idp63995856"></a><h2>Side Effects</h2><p>
	Deletes a table from the SQL database.
      </p></div><div class="refsect1"><a id="idp63997168"></a><h2>Affected by</h2><p>
	Whether the specified table exists in the SQL database.
      </p></div><div class="refsect1"><a id="idp63998480"></a><h2>Exceptional Situations</h2><p>
	A condition may be signalled if the table does not exist in
	the SQL database or if the SQL connection does not have
	sufficient permissions to delete tables.
      </p></div><div class="refsect1"><a id="idp63999968"></a><h2>See Also</h2><p>
	</p><table border="0" summary="Simple list" class="simplelist"><tr><td><a class="link" href="create-view-from-class.html" title="CREATE-VIEW-FROM-CLASS"><code class="function">create-view-from-class</code></a></td></tr><tr><td><a class="link" href="def-view-class.html" title="DEF-VIEW-CLASS"><code class="function">def-view-class</code></a></td></tr></table><p>
      </p></div><div class="refsect1"><a id="idp64004528"></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="def-view-class.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ref-ooddl.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="list-classes.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">DEF-VIEW-CLASS </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> LIST-CLASSES</td></tr></table></div></body></html>