php8.5
Home/ Manual/ mysql_xdevapi / tableinsert/ TableInsert::__construct

TableInsert::__construct

PHP function Edit on GitHub ✎

TableInsert constructor

Description

mysql_xdevapi\TableInsert::__construct()

Initiated by using the insert() method.

Parameters Parameters

Examples

mysql_xdevapi\TableInsert::__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(name text, age int)")->execute();
$session->sql("INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)")->execute();

$schema = $session->getSchema("addressbook");
$table  = $schema->getTable("names");

$table
  ->insert("name", "age")
  ->values(["Suzanne", 31],["Julie", 43])
  ->execute();
?>

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