Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 3c81c2ef4f93f62199f9086acbf02ded > files > 14

ezcomponents-Database-1.4.7-3.mga4.noarch.rpm

<?php

$db = ezcDbInstance::get();

$q = $db->createSelectQuery();
$e = $q->expr; // fetch the expression object
$q->select( '*' )->from( 'quotes' )
    ->where( $e->eq( 'author', $q->bindValue( 'Robert Foster' ) ) )
    ->orderBy( 'quote' )
    ->limit( 10, 0 );

$stmt = $q->prepare();
$stmt->execute();

?>