RowResult::__construct

(没有版本信息可用,可能只在 Git 中)

RowResult::__constructRowResult 构造函数

描述

private mysql_xdevapi\RowResult::__construct()

表示从查询数据库获得的结果集。

参数

此函数没有参数。

示例

示例 #1 mysql_xdevapi\RowResult::__construct() 示例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

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

$row = $table->select('name', 'age')->where('age > 18')->execute()->fetchAll();

print_r($row);

上面的示例将输出类似于以下内容

Array
(
    [0] => Array
        (
            [name] => John
            [age] => 42
        )
    [1] => Array
        (
            [name] => Sam
            [age] => 33
        )
)
添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top