(No version information available, might only be in Git)
Session::executeSql — Execute an SQL statement
$statement
) : ObjectExecute an SQL statement, similar to executing the sql() and execute() methods.
statement
SQL statement to execute
An SqlStatementResult object on success, or throws an Exception if the SQL statement fails.
Example #1 mysql_xdevapi\Session::executeSql() example
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->executeSql("CREATE DATABASE addressbook");