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