PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

cubrid_num_cols - Return the number of columns in the result set | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

cubrid_num_cols

(PECL CUBRID >= 8.3.0)

cubrid_num_colsReturn the number of columns in the result set

説明

int cubrid_num_cols ( resource $result )

The cubrid_num_cols() function is used to get the number of columns from the query result. It can only be used when the query executed is a select statement.

パラメータ

result

Result.

返り値

Number of columns, when process is successful.

FALSE, if SQL statement is not SELECT.

例1 cubrid_num_cols() example

<?php
$conn 
cubrid_connect("localhost"33000"demodb""dba");

$req cubrid_execute($conn"SELECT * FROM code");

$row_num cubrid_num_rows($req);
$col_num cubrid_num_cols($req);

printf("Row Num: %d\nColumn Num: %d\n"$row_num$col_num);

cubrid_disconnect($conn);
?>

上の例の出力は以下となります。

Row Num: 6
Column Num: 2

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「cubrid_num_cols - Return the number of columns in the result set」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | cubrid_num_cols - Return the number of columns in the result set」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: