array
NULL
Execute the prepared statement.
<?php$connection = new pq\Connection;$statement = $connection->prepare("st1", "SELECT int4(\$1)");$result = $statement->exec([123]);?>