(没有版本信息可用,可能只在 Git 中)
CollectionAdd::execute — 执行语句
execute 方法用于将 CRUD 操作请求发送到 MySQL 服务器。
此函数没有参数。
一个 Result 对象,可用于验证操作状态,例如受影响的行数。
示例 #1 mysql_xdevapi\CollectionAdd::execute() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$schema = $session->getSchema("addressbook");
$create = $schema->createCollection("people");
$collection = $schema->getCollection("people");
// 添加两个文档
$collection
->add('{"name": "Fred", "age": 21, "job": "Construction"}')
->execute();
$collection
->add('{"name": "Wilma", "age": 23, "job": "Teacher"}')
->execute();
// 使用单个 JSON 对象添加两个文档
$result = $collection
->add(
'{"name": "Bernie",
"jobs": [{"title":"Cat Herder","Salary":42000}, {"title":"Father","Salary":0}],
"hobbies": ["Sports","Making cupcakes"]}',
'{"name": "Jane",
"jobs": [{"title":"Scientist","Salary":18000}, {"title":"Mother","Salary":0}],
"hobbies": ["Walking","Making pies"]}')
->execute();
// 从上一次 add() 获取生成的 ID 列表
$ids = $result->getGeneratedIds();
print_r($ids);
?>
以上示例将输出类似以下内容
Array ( [0] => 00005b6b53610000000000000056 [1] => 00005b6b53610000000000000057 )