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