mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00

-- Provided by anonymous #26427 () git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@331177 c90b9560-bf6c-de11-be94-00142212c4b1
70 lines
2.2 KiB
XML
70 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
|
|
<reference xml:id="ref.pgsql" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>PostgreSQL &Functions;</title>
|
|
|
|
<partintro>
|
|
<section xml:id="pgsql.notes">
|
|
&reftitle.notes;
|
|
<note>
|
|
<para>
|
|
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.
|
|
</para>
|
|
</note>
|
|
<note>
|
|
<para>
|
|
Most PostgreSQL functions accept <parameter>connection</parameter> as
|
|
the optional first parameter. If it is not provided, the last opened
|
|
connection is used. If it doesn't exist, functions return &false;.
|
|
</para>
|
|
</note>
|
|
<note>
|
|
<para>
|
|
PostgreSQL automatically folds all identifiers (e.g. table/column names)
|
|
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
|
|
queryable form. See the <link xlink:href="&url.pgsql.manual;">PostgreSQL Documentation</link>
|
|
for full details.
|
|
</para>
|
|
</note>
|
|
</section>
|
|
</partintro>
|
|
|
|
&reference.pgsql.entities.functions;
|
|
|
|
</reference>
|
|
|
|
<!-- 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:"~/.phpdoc/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
|
|
-->
|