-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathbook.xml
More file actions
78 lines (71 loc) · 2.82 KB
/
book.xml
File metadata and controls
78 lines (71 loc) · 2.82 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
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: daf4cc624df3c21d472149725feb377b1beedb04 Maintainer: takagi Status: ready -->
<!-- CREDITS: hirokawa,shimooka -->
<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>
<literal>PHP Data Objects</literal> (<acronym>PDO</acronym>) 拡張モジュールは、
PHP の中からデータベースにアクセスするための軽量で高性能な
インターフェイスを定義します。
PDO インターフェイスを実装する各データベースドライバは、
正規表現関数のようなデータベース固有の機能を提供することができます。
PDO 拡張モジュールによりそのデータベースの全てのデータベース関数を
実行できるわけではないことに注意してください。
データベースサーバーにアクセスするには、
<link linkend="pdo.drivers">データベース固有の PDO ドライバ</link>
を使用する必要があります。
</para>
<para>
PDO は、<emphasis>データアクセス</emphasis>の抽象化レイヤを提供します。
つまり、使用しているデータベースが何であるかにかかわらず、同じ
関数を使用してクエリの発行やデータの取得が行えるということです。
PDO は、<emphasis>データベース</emphasis>の抽象化を行うのでは
<emphasis>ありません</emphasis>。つまり、SQL を書き直したり
存在しない機能をエミュレートしたりはしないということです。
もしそのような機能が必要なら、全体を網羅する (full-blown)
別の抽象化レイヤを使用すべきです。
</para>
<para>
PDO は PHP 本体にバンドルされています。
</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.pdoexception;
&reference.pdo.pdorow;
&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
-->