Update pdo_065_construct_persistent.phpt

This commit is contained in:
v-kaywon 2017-03-20 12:42:31 -07:00 committed by GitHub
parent d289754362
commit 20198804bb

View file

@ -13,8 +13,7 @@ try{
$attr = array(PDO::ATTR_PERSISTENT => true);
$conn = new PDO( $dsn, $username, $password, $attr);
//free the statement and connection
$stmt=null;
//free the connection
$conn=null;
}
catch( PDOException $e ) {
@ -33,6 +32,9 @@ try{
if ($result['c1'] == 1 && $result['c2'] == 'column2') {
echo "Test successfully";
}
//free the statement and connection
$stmt = null;
$conn = null;
}
catch( PDOException $e ) {
var_dump( $e);