1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00
Files
archived-php-src/ext/pdo_sqlite/tests/prepare.inc
T
Marcus Boerger 74b1cee57f - Show warnings
2005-02-21 18:54:45 +00:00

11 lines
147 B
PHP
Executable File

<?php
require_once('connection.inc');
$SQL = array();
$DB = new pdo($CONNECTION);
$DB->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_WARNING);
?>