PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.3Mb
HTML Download (TGZ)
- 242.9Kb
HTML Download (Zip)
- 250.5Kb
Copyright 1997-2021 the PHP Documentation Group.
Result::__construct
Result constructor
Description
private mysql_xdevapi\Result::__construct();
An object that retrieves generated IDs, AUTO_INCREMENT values, and warnings, for a Result set.
Parameters
This function has no parameters.
Examples
Example 5.85 mysql_xdevapi\Result::__construct
example
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$session->sql("
CREATE TABLE addressbook.names
(id INT NOT NULL AUTO_INCREMENT, name VARCHAR(30), age INT, PRIMARY KEY (id))
")->execute();
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
$result = $table->insert("name", "age")->values(["Suzanne", 31],["Julie", 43])->execute();
$result = $table->insert("name", "age")->values(["Suki", 34])->execute();
$ai = $result->getAutoIncrementValue();
var_dump($ai);
?>
The above example will output:
int(3)