SQLite3
SQLite3_result::columnName
SQLite3
PHP Manual
The SQLite3_result class
Introduction
Description of the class.
Class synopsis
SQLite3_result
SQLite3_result
{
/* Methods */
public
string
SQLite3_result::columnName
(
int
$column_number
)
public
string
SQLite3_result::columnType
(
int
$column_number
)
public
array
SQLite3_result::fetchArray
([
int
$mode
] )
public
bool
SQLite3_result::finalize
(
void
)
public
int
SQLite3_result::numColumns
(
void
)
public
bool
SQLite3_result::reset
(
void
)
}
Table of Contents
SQLite3_result::columnName
— Returns the name of the nth column
SQLite3_result::columnType
— Returns the type of the nth column
SQLite3_result::fetchArray
— Fetches a result row as an associative or numerically indexed array or both
SQLite3_result::finalize
— Closes the result set
SQLite3_result::numColumns
— Returns the number of columns in the result set
SQLite3_result::reset
— Resets the result set back to the first row
SQLite3
SQLite3_result::columnName
SQLite3
PHP Manual