(No version information available, might only be in Git)
Table::insert — Insert table rows
Creates a new TableInsert object.
columns
The columns to insert data into. Can be an array with one or more values, or a string.
...
Additional columns definitions.
A TableInsert object.
Example #1 mysql_xdevapi\Table::insert() example
<?php
$table->insert("name", "age")->values(["Sakila", 128],["Sakila", 512])->execute();
?>