SQLite3Result::numColumns
(PHP 5 >= 5.3.0, PHP 7)
SQLite3Result::numColumns — Returns the number of columns in the result set
Описание
public int SQLite3Result::numColumns
( void
)
Returns the number of columns in the result set.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns the number of columns in the result set.
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с базами данных
- Расширения для работы с базами данных отдельных производителей
- SQLite3
- Функция SQLite3Result::columnName() - Returns the name of the nth column
- Функция SQLite3Result::columnType() - Returns the type of the nth column
- Функция SQLite3Result::fetchArray() - Fetches a result row as an associative or numerically indexed array or both
- Функция SQLite3Result::finalize() - Closes the result set
- Функция SQLite3Result::numColumns() - Returns the number of columns in the result set
- Функция SQLite3Result::reset() - Resets the result set back to the first row
Коментарии
Here is an example:
<?php
$query = "SELECT * FROM 't1' ";
$result = $db->query($query) or die("Error in query: <span style='color:red;'>$query</span>");
$num_columns = $result->numColumns();
?>
[Edited by: googleguy@php.net]