Result::getAutoIncrementValue

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

Result::getAutoIncrementValueGet autoincremented value

Descripción

public mysql_xdevapi\Result::getAutoIncrementValue(): int

Get the last AUTO_INCREMENT value (last insert id).

Parámetros

Esta función no tiene parámetros.

Valores devueltos

The last AUTO_INCREMENT value.

Ejemplos

Ejemplo #1 mysql_xdevapi\Result::getAutoIncrementValue() 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);
?>

El resultado del ejemplo sería:

int(3)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top