SqlStatementResult::fetchOne
(No version information available, might only be in Git)
SqlStatementResult::fetchOne — 単一の行を取得する
説明
結果セットから一行取得します。
警告
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
パラメータ
この関数にはパラメータはありません。
戻り値
結果を連想配列で返します。
結果がなかった場合は、null
が返されます。
例
例1 mysql_xdevapi\SqlStatementResult::fetchOne() の例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS dbtest")->execute();
$session->sql("CREATE DATABASE dbtest")->execute();
$session->sql("CREATE TABLE dbtest.workers(name text, age int, job text)")->execute();
$session->sql("INSERT INTO dbtest.workers values ('John', 42, 'bricklayer'), ('Sam', 33, 'carpenter')")->execute();
$schema = $session->getSchema("dbtest");
$table = $schema->getTable("workers");
$rows = $session->sql("SELECT * FROM dbtest.workers")->execute()->fetchOne();
print_r($rows);
?>
上の例の出力は、 たとえば以下のようになります。
Array ( [name] => John [age] => 42 [job] => bricklayer )
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google