--TEST-- Test bindValue method. --SKIPIF-- --FILE-- prepare("SELECT IntCol FROM $tbname WHERE BigIntCol = :bigint AND CharCol = :string"); $stmt->bindValue(':bigint', $bigint, PDO::PARAM_INT); $stmt->bindValue(':string', $string, PDO::PARAM_STR); $stmt->execute(); dropTable($db, $tbname); unset($stmt); unset($db); echo "Test Complete!\n"; } catch (PDOException $e) { var_dump($e); } ?> --EXPECT-- Test Complete!