MysqlndUhPreparedStatement::execute
Executes a prepared Query
&reftitle.description;
public boolMysqlndUhPreparedStatement::execute
mysqlnd_prepared_statementstatement
Executes a prepared Query.
&reftitle.parameters;
statement
Mysqlnd prepared statement handle. Do not modify!
Resource of type Mysqlnd Prepared Statement (internal only - you must not modify it!).
&reftitle.returnvalues;
Returns &true; on success.
Otherwise, returns &false;
&reftitle.examples;
MysqlndUhPreparedStatement::execute example
prepare("SELECT 'Labskaus' AS _msg FROM DUAL");
$stmt->execute();
$msg = NULL;
$stmt->bind_result($msg);
$stmt->fetch();
var_dump($msg);
?>
]]>
&example.outputs;
&reftitle.seealso;
mysqlnd_uh_set_statement_proxy
mysqli_stmt_execute