PDOStatement->columnCount()
(no version information, might be only in CVS)
PDOStatement->columnCount() --
結果セット中のカラム数を返す
例
例 1. カラム数を数える
この例は、結果セットがある場合とない場合で、
PDOStatement->columnCount()
がどのように動作するかを例示しています。
<?php $dbh = new PDO('odbc:sample', 'db2inst1', 'ibmdb2');
$sth = $dbh->prepare("SELECT name, colour FROM fruit");
/* (存在しない) 結果セットにあるカラム数を数える */ $colcount = $sth->columnCount(); print("Before execute(), result set has $colcount columns (should be 0)\n");
$sth->execute();
/* 結果セットにあるカラム数を数える */ $colcount = $sth->columnCount(); print("After execute(), result set has $colcount columns (should be 2)\n");
?>
|
上の例の出力は以下となります。 Before execute(), result set has 0 columns (should be 0)
After execute(), result set has 2 columns (should be 2) |
|