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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>31.30.sql_languages</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="information-schema.html" title="Chapter31.The Information Schema">
<link rel="prev" href="infoschema-sql-implementation-info.html" title="31.29.sql_implementation_info">
<link rel="next" href="infoschema-sql-packages.html" title="31.31.sql_packages">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="sect1" lang="en">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="infoschema-sql-languages"></a>31.30.<code class="literal">sql_languages</code></h2></div></div></div>
<p> The table <code class="literal">sql_languages</code> contains one row for
each SQL language binding that is supported by
<span class="productname">PostgreSQL</span>.
<span class="productname">PostgreSQL</span> supports direct SQL and
embedded SQL in C; that is all you will learn from this table.
</p>
<div class="table">
<a name="id700882"></a><p class="title"><b>Table31.28.<code class="literal">sql_languages</code> Columns</b></p>
<div class="table-contents"><table summary="sql_languages Columns" border="1">
<colgroup>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>Name</th>
<th>Data Type</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr>
<td><code class="literal">sql_language_source</code></td>
<td><code class="type">character_data</code></td>
<td> The name of the source of the language definition; always
<code class="literal">ISO 9075</code>, that is, the SQL standard
</td>
</tr>
<tr>
<td><code class="literal">sql_language_year</code></td>
<td><code class="type">character_data</code></td>
<td> The year the standard referenced in
<code class="literal">sql_language_source</code> was approved; currently
<code class="literal">2003</code>
</td>
</tr>
<tr>
<td><code class="literal">sql_language_conformance</code></td>
<td><code class="type">character_data</code></td>
<td> The standard conformance level for the language binding. For
ISO 9075:2003 this is always <code class="literal">CORE</code>.
</td>
</tr>
<tr>
<td><code class="literal">sql_language_integrity</code></td>
<td><code class="type">character_data</code></td>
<td>Always null (This value is relevant to an earlier version of the SQL standard.)</td>
</tr>
<tr>
<td><code class="literal">sql_language_implementation</code></td>
<td><code class="type">character_data</code></td>
<td>Always null</td>
</tr>
<tr>
<td><code class="literal">sql_language_binding_style</code></td>
<td><code class="type">character_data</code></td>
<td> The language binding style, either <code class="literal">DIRECT</code> or
<code class="literal">EMBEDDED</code>
</td>
</tr>
<tr>
<td><code class="literal">sql_language_programming_language</code></td>
<td><code class="type">character_data</code></td>
<td> The programming language, if the binding style is
<code class="literal">EMBEDDED</code>, else null. <span class="productname">PostgreSQL</span> only
supports the language C.
</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break">
</div></body>
</html>
|