-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathbook.xml
More file actions
80 lines (71 loc) · 2.47 KB
/
book.xml
File metadata and controls
80 lines (71 loc) · 2.47 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: daf4cc624df3c21d472149725feb377b1beedb04 Maintainer: fa Status: ready -->
<!-- Reviewed: yes -->
<!-- Rev-Revision: 8a058e9acded067eaa1bd445ed6943158e7311df Reviewer: samesch -->
<book xml:id="book.pdo" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="bundled" ?>
<title>PHP Data Objects</title>
<titleabbrev>PDO</titleabbrev>
<!-- {{{ preface -->
<preface xml:id="intro.pdo">
&reftitle.intro;
<para>
Die Erweiterung PHP Data Objects (<acronym>PDO</acronym>) stellt eine
leichte, konsistente Schnittstelle bereit, um mit PHP auf Datenbanken
zuzugreifen. Jeder Datenbanktreiber, der die PDO-Schnittstelle
implementiert, kann spezifische Features als reguläre Funktionen der
Erweiterung bereitstellen. Es ist zu beachten, dass keine Funktion einer
Datenbank mit PDO allein benutzt werden kann; um auf eine Datenbank
zugreifen zu können, muss ein
<link linkend="pdo.drivers">datenbankspezifischer PDO-Treiber</link>
benutzt werden.
</para>
<para>
PDO bietet eine Abstraktionsschicht für den
<emphasis>Datenzugriff</emphasis>, das bedeutet, dass unahängig von der
verwendeten Datenbank dieselben Funktionen verwendet werden können, um
Abfragen zu erstellen und Daten zu lesen. PDO bietet
<emphasis>keine</emphasis> Abstraktion für
<emphasis>Datenbanken</emphasis>. Es schreibt keine SQL-Abfragen um oder
emuliert fehlende Features. Wenn diese Funktionalität benötigt wird, muss
eine komplette Abstraktionsschicht verwendet werden.
</para>
<para>
PDO wird mit PHP ausgeliefert.
</para>
</preface>
<!-- }}} -->
&reference.pdo.setup;
&reference.pdo.constants;
&reference.pdo.connections;
&reference.pdo.transactions;
&reference.pdo.prepared-statements;
&reference.pdo.error-handling;
&reference.pdo.lobs;
&reference.pdo.pdo;
&reference.pdo.pdostatement;
&reference.pdo.pdorow;
&reference.pdo.pdoexception;
&reference.pdo.drivers;
</book>
<!-- 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
-->