SQLite3::version
SQLite3_stmt::bindParam
SQLite3
PHP Manual
The SQLite3_stmt class
導入
Description of the class.
クラス概要
SQLite3_stmt
class
SQLite3_stmt
{
/* Methods */
public
bool
bindParam
(
int
$param_number
,
mixed
&$param
[,
int
$type
] )
public
bool
bindValue
(
int
$param_number
,
mixed
$param
[,
int
$type
] )
public
bool
clear
(
void
)
public
bool
close
(
void
)
public
SQLite3_result
execute
(
void
)
public
int
paramCount
(
void
)
public
bool
reset
(
void
)
}
目次
SQLite3_stmt::bindParam
— Binds a parameter to a statement variable
SQLite3_stmt::bindValue
— Binds the value of a parameter to a statement variable
SQLite3_stmt::clear
— Clears all current bound parameters
SQLite3_stmt::close
— Closes the prepared statement
SQLite3_stmt::execute
— Executes a prepared statement and returns a result set object
SQLite3_stmt::paramCount
— Returns the number of parameters within the prepared statement
SQLite3_stmt::reset
— Resets the prepared statement
SQLite3::version
SQLite3_stmt::bindParam
SQLite3
PHP Manual