2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2008-05-30 17:25:13 +00:00
|
|
|
<!-- $Revision: 1.33 $ -->
|
2005-09-04 19:39:32 +00:00
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<reference xml:id="ref.pgsql" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2007-12-23 04:15:57 +00:00
|
|
|
<title>PostgreSQL &Functions;</title>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2005-03-08 00:06:33 +00:00
|
|
|
<partintro>
|
2007-06-20 22:25:43 +00:00
|
|
|
<section xml:id="pgsql.notes">
|
2005-09-05 04:07:19 +00:00
|
|
|
&reftitle.notes;
|
|
|
|
<note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
2005-09-05 04:07:19 +00:00
|
|
|
Not all functions are supported by all builds. It depends on your
|
|
|
|
libpq (The PostgreSQL C client library) version and how libpq is
|
|
|
|
compiled. If PHP PostgreSQL extensions are missing, then it is because
|
|
|
|
your libpq version does not support them.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
2005-09-05 04:07:19 +00:00
|
|
|
</note>
|
|
|
|
<note>
|
2005-03-08 00:06:33 +00:00
|
|
|
<para>
|
2005-09-05 04:07:19 +00:00
|
|
|
Most PostgreSQL functions accept <parameter>connection</parameter> as
|
|
|
|
the first optional parameter. If it is not provided, the last opened
|
|
|
|
connection is used. If it doesn't exist, functions return &false;.
|
2005-03-08 00:06:33 +00:00
|
|
|
</para>
|
2005-09-05 04:07:19 +00:00
|
|
|
</note>
|
2005-03-08 00:06:33 +00:00
|
|
|
<note>
|
2002-08-07 10:01:28 +00:00
|
|
|
<para>
|
2005-03-08 00:06:33 +00:00
|
|
|
PostgreSQL automatically folds all identifiers (e.g. table/column names)
|
2005-09-05 04:07:19 +00:00
|
|
|
to lower-case values at object creation time and at query time.
|
|
|
|
To force the use of mixed or upper case identifiers, you must escape
|
|
|
|
the identifier using double quotes ("").
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
PostgreSQL does not have special commands for fetching database schema
|
|
|
|
information (eg. all the tables in the current database). Instead, there
|
|
|
|
is a standard schema named <literal>information_schema</literal> in
|
|
|
|
PostgreSQL 7.4 and above containing
|
|
|
|
system views with all the necessary information, in an easily
|
2007-06-20 22:25:43 +00:00
|
|
|
queryable form. See the <link xlink:href="&url.pgsql.manual;">PostgreSQL Documentation</link>
|
2005-09-05 04:07:19 +00:00
|
|
|
for full details.
|
2002-08-07 10:01:28 +00:00
|
|
|
</para>
|
2005-03-08 00:06:33 +00:00
|
|
|
</note>
|
|
|
|
</section>
|
|
|
|
</partintro>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2007-12-10 17:06:11 +00:00
|
|
|
&reference.pgsql.entities.functions;
|
2002-04-15 00:12:54 +00:00
|
|
|
|
2005-03-08 00:06:33 +00:00
|
|
|
</reference>
|
|
|
|
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|