Session::executeSql

(No version information available, might only be in Git)

Session::executeSqlExecute an SQL statement

说锟斤拷

public mysql_xdevapi\Session::executeSql ( string $statement ) : Object

Execute 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");