php8.5
Home/ Manual/ mysql_xdevapi / result/ Result::__construct

Result::__construct

PHP function Edit on GitHub ✎

Result constructor

Description

mysql_xdevapi\Result::__construct()

An object that retrieves generated IDs, AUTO_INCREMENT values, and warnings, for a Result set.

Parameters Parameters

Examples

mysql_xdevapi\Result::__construct() example

php
<?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:

output
int(3)

Source: reference/mysql_xdevapi/mysql_xdevapi/result/construct.xml · from the official PHP manual (php/doc-en)