SQLite3::version
SQLite3Stmt::bindParam
SQLite3
PHP Manual
SQLite3Stmt クラス
導入
クラスの説明。
クラス概要
SQLite3Stmt
SQLite3Stmt
{
/* メソッド */
public
bool
SQLite3Stmt::bindParam
(
int
$param_number
,
mixed
&$param
[,
int
$type
] )
public
bool
SQLite3Stmt::bindValue
(
int
$param_number
,
mixed
$param
[,
int
$type
] )
public
bool
SQLite3Stmt::clear
(
void
)
public
bool
SQLite3Stmt::close
(
void
)
public
SQLite3_result
SQLite3Stmt::execute
(
void
)
public
int
SQLite3Stmt::paramCount
(
void
)
public
bool
SQLite3Stmt::reset
(
void
)
}
目次
SQLite3Stmt::bindParam
— パラメータを変数にバインドする
SQLite3Stmt::bindValue
— パラメータの値を変数にバインドする
SQLite3Stmt::clear
— 現在バインドされているすべてのパラメータをクリアする
SQLite3Stmt::close
— プリペアドステートメントを閉じる
SQLite3Stmt::execute
— プリペアドステートメントを実行し、結果セットオブジェクトを返す
SQLite3Stmt::paramCount
— プリペアドステートメント内のパラメータの数を返す
SQLite3Stmt::reset
— プリペアドステートメントをリセットする
SQLite3::version
SQLite3Stmt::bindParam
SQLite3
PHP Manual