RowResult::getColumnsCount

(No version information available, might only be in Git)

RowResult::getColumnsCountカラムの数を取得する

説明

public mysql_xdevapi\RowResult::getColumnsCount(): int

結果セットに存在するカラムの数を取得します。

パラメータ

この関数にはパラメータはありません。

戻り値

カラムの数を返します。カラムが存在しない場合は 0 を返します。

変更履歴

バージョン 説明
8.0.14 メソッド名が getColumnCount() から getColumnsCount() に変わりました。

例1 mysql_xdevapi\RowResult::getColumnsCount() の例

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

$session->sql("DROP DATABASE addressbook")->execute();
$session->sql("CREATE DATABASE foo")->execute();
$session->sql("CREATE TABLE foo.test_table(x int)")->execute();
$session->sql("INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)")->execute();

$sql $session->sql("SELECT * from addressbook.names")->execute();

echo 
$sql->getColumnsCount();

上の例の出力は、 たとえば以下のようになります。

2
関連キーワード:  カラム, 取得, RowResult, , getColumnsCount, xdevapi, パラメータ, 存在, セット, getColumnCount