blob: 685c3b253a464a6fb4d8b3281b828639a2741082 [file] [log] [blame]
<?php
$db = ezcDbInstance::get();
$q = $db->createSelectQuery();
$q->select( '*' )->from( 'quotes' );
$stmt = $q->prepare();
$stmt->execute();
?>