2010-03-29 16:25:51 +00:00
|
|
|
<?xml version='1.0' encoding="utf-8"?>
|
2009-07-11 08:37:21 +00:00
|
|
|
<!-- $Revision$ -->
|
2005-09-04 19:39:32 +00:00
|
|
|
<!-- Membership: bundled, external, pecl -->
|
2007-06-14 02:34:50 +00:00
|
|
|
<!-- State: experimental -->
|
2005-09-04 19:39:32 +00:00
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<reference xml:id="ref.pdo-firebird" xmlns="http://docbook.org/ns/docbook">
|
2005-08-12 02:03:50 +00:00
|
|
|
<title>Firebird/Interbase Functions (PDO_FIREBIRD)</title>
|
2005-08-20 23:14:57 +00:00
|
|
|
<titleabbrev>Firebird/Interbase (PDO)</titleabbrev>
|
2005-08-12 02:03:50 +00:00
|
|
|
<partintro>
|
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<section xml:id="pdo-firebird.intro">
|
2005-08-12 02:03:50 +00:00
|
|
|
&reftitle.intro;
|
|
|
|
<para>
|
|
|
|
&warn.experimental;
|
2005-09-20 08:21:37 +00:00
|
|
|
PDO_FIREBIRD is a driver that implements the PHP Data Objects (PDO)
|
|
|
|
interface to enable access from PHP to Firebird and Interbase databases.
|
2005-08-12 02:03:50 +00:00
|
|
|
</para>
|
|
|
|
</section>
|
2011-01-26 22:48:38 +00:00
|
|
|
&reference.pdo-firebird.configure;
|
2008-12-10 01:21:35 +00:00
|
|
|
&reference.pdo-firebird.constants;
|
2005-08-12 02:03:50 +00:00
|
|
|
</partintro>
|
|
|
|
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="ref.pdo-firebird.connection">
|
2005-08-12 02:03:50 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>PDO_FIREBIRD DSN</refname>
|
|
|
|
<refpurpose>Connecting to Firebird and Interbase databases</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<para>
|
|
|
|
The PDO_FIREBIRD Data Source Name (DSN) is composed of the following elements:
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term>DSN prefix</term>
|
|
|
|
<listitem>
|
2005-08-12 03:31:18 +00:00
|
|
|
<para>
|
|
|
|
The DSN prefix is <userinput>firebird:</userinput>.
|
|
|
|
</para>
|
2005-08-12 02:03:50 +00:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
2009-04-07 10:22:41 +00:00
|
|
|
<term><constant>dbname</constant></term>
|
2005-08-12 02:03:50 +00:00
|
|
|
<listitem>
|
2005-08-12 03:31:18 +00:00
|
|
|
<para>
|
|
|
|
The name of the database.
|
|
|
|
</para>
|
2005-08-12 02:03:50 +00:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
2009-04-07 10:22:41 +00:00
|
|
|
<term><constant>charset</constant></term>
|
2005-08-12 02:03:50 +00:00
|
|
|
<listitem>
|
2005-08-12 03:31:18 +00:00
|
|
|
<para>
|
2009-04-07 10:22:41 +00:00
|
|
|
The character set.
|
2005-08-12 03:31:18 +00:00
|
|
|
</para>
|
2005-08-12 02:03:50 +00:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
2009-04-07 10:22:41 +00:00
|
|
|
<term><constant>role</constant></term>
|
2005-08-12 02:03:50 +00:00
|
|
|
<listitem>
|
2005-08-12 03:31:18 +00:00
|
|
|
<para>
|
2009-04-07 10:22:41 +00:00
|
|
|
The SQL role name.
|
2005-08-12 03:31:18 +00:00
|
|
|
</para>
|
2005-08-12 02:03:50 +00:00
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
2005-09-20 08:21:37 +00:00
|
|
|
<title>PDO_FIREBIRD DSN examples</title>
|
2005-08-12 02:03:50 +00:00
|
|
|
<para>
|
|
|
|
The following example shows a PDO_FIREBIRD DSN for connecting to
|
|
|
|
Firebird and Interbase databases:
|
|
|
|
<programlisting><![CDATA[
|
2009-04-07 10:22:41 +00:00
|
|
|
firebird:dbname=DATABASE.GDE
|
2005-08-12 02:03:50 +00:00
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</para>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
</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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2005-08-12 02:03:50 +00:00
|
|
|
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
|
|
|
|
-->
|