PHP

SQLite3Stmt (class)

The SQLite3Stmt class

介绍

(PHP 5 >= 5.3.0, PHP 7)

处理SQLite 3扩展的预处理语句的类。

类别简介

SQLite3Stmt {

/* Methods */

public bool bindParam ( mixed $sql_param , mixed &$param [, int $type ] )

public bool bindValue ( mixed $sql_param , mixed $value [, int $type ] )

public bool clear ( void )

public bool close ( void )

public SQLite3Result execute ( void )

public int paramCount ( void )

public bool readOnly ( void )

public bool reset ( void )

}

目录

  • SQLite3Stmt::bindParam - 将参数绑定到语句变量

  • SQLite3Stmt::bindValue - 将参数的值绑定到语句变量

  • SQLite3Stmt::clear - 清除所有当前的绑定参数

SQLite3Stmt::close - 关闭准备好的语句

  • SQLite3Stmt::execute - 执行预准备语句并返回结果集对象

  • SQLite3Stmt::paramCount - 返回准备语句中的参数数目

  • SQLite3Stmt::readOnly() - 返回一个语句是否肯定只读

  • SQLite3Stmt::reset - 重置准备好的语句

← SQLite3::version

SQLite3Stmt::bindParam →