mirror of
https://github.com/php/presentations.git
synced 2026-04-30 02:33:25 +02:00
23 lines
697 B
XML
23 lines
697 B
XML
<slide title="PDO">
|
|
<break lines="2"/>
|
|
<image filename="wez.jpg" marginright="1em" align="right"/>
|
|
|
|
<break lines="1" />
|
|
<blurb fontsize="4em" marginleft="0.5em">
|
|
A lightweight, consistent interface for writing database extensions and accessing databases in PHP
|
|
</blurb>
|
|
<example fontsize="1.3em" marginleft="2em" marginright="23em"><![CDATA[<?php
|
|
$dbh = new PDO('odbc:sample', 'db2inst1', 'ibmdb2');
|
|
|
|
$cnt = $dbh->exec("DELETE FROM fruit WHERE colour = 'red'");
|
|
|
|
echo "Deleted $cnt rows.";
|
|
?>]]></example>
|
|
|
|
<break lines="8" />
|
|
|
|
<example fontsize="2.5em" examplebackground="#ffaabb" marginleft="20em">PDO: PHP Data Objects
|
|
Date: Friday, September 16th, 2005
|
|
Time: 14:45 - 16:15</example>
|
|
</slide>
|