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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<sect1 xml:id="internals2.pdo.prerequisites" xmlns="http://docbook.org/ns/docbook">
<title>Prerequisites</title>
<para>
The following is list of prerequisites and assumptions needed for writing
a PDO database driver:
</para>
<orderedlist>
<listitem>
<para>
A working target database, examples, demos, etc. working as per vendor
specifications;
</para>
</listitem>
<listitem>
<para>A working development environment:</para>
<orderedlist>
<listitem>
<para>Linux: standard development tools, gcc, ld, make, autoconf, automake, etc., versions dependent on distribution;</para>
</listitem>
<listitem>
<para>Other Unix: standard development tools supplied by vendor plus the GNU development tool set; </para>
</listitem>
<listitem>
<para>Win32: Visual Studio compiler suite;</para>
</listitem>
</orderedlist>
</listitem>
<listitem>
<para>A working PHP environment version 5.0.3 or higher with a working PEAR extension version 1.3.5 or higher;</para>
</listitem>
<listitem>
<para>A working PDO environment (can be installed using 'sudo pecl install PDO'), including the headers which will be needed to access the PDO type definitions and function declarations;</para>
</listitem>
<listitem>
<para>A good working knowledge of the C programming language;</para>
</listitem>
<listitem>
<para>A good working knowledge of the way to write a PHP extension;
<emphasis>George Schlossnagle's</emphasis> <emphasis
role="strong">Advanced PHP Programming</emphasis> (published by
Developer's Library, chapters 21 and 22) is recommended;</para>
</listitem>
<listitem>
<para>
Finally, a familiarity with the Zend API that forms the heart of PHP, in
particular paying attention to the memory management aspects.
</para>
</listitem>
</orderedlist>
</sect1>
<!-- 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
-->
|