• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • 位置: php 中文手册 -> php 绑定的扩展库

    sqlite3数据库类

    这些函数的行为受php.ini中的设置影响。

    SQLite3 配置选项
    名字默认可修改范围更新日志
    sqlite3.extension_dirNULLPHP_INI_SYSTEM

    这是配置指令的简短说明。

    sqlite3.extension_dirstring

    指向存放可加载的 SQLite 扩展的目录路径。

    SQLite3类

    实现与 SQLite 3 数据库对接的类。

    SQLite3 
    {
    	/* 方法 */
    	public busyTimeout ( int $msecs ) : bool
    	public changes ( void ) : int
    	public close ( void ) : bool
    	public __construct ( string $filename [, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE [, string $encryption_key = "" ]] )
    	public createAggregate ( string $name , mixed $step_callback , mixed $final_callback [, int $argument_count = -1 ] ) : bool
    	public createCollation ( string $name , callable $callback ) : bool
    	public createFunction ( string $name , mixed $callback [, int $argument_count = -1 [, int $flags = 0 ]] ) : bool
    	enableExceptions ([ bool $enableExceptions = FALSE ] ) : bool
    	public static escapeString ( string $value ) : string
    	public exec ( string $query ) : bool
    	public lastErrorCode ( void ) : int
    	public lastErrorMsg ( void ) : string
    	public lastInsertRowID ( void ) : int
    	public loadExtension ( string $shared_library ) : bool
    	public open ( string $filename [, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE [, string $encryption_key = "" ]] ) : void
    	public openBlob ( string $table , string $column , int $rowid [, string $dbname = "main" [, int $flags = SQLITE3_OPEN_READONLY ]] ) : resource
    	public prepare ( string $query ) : SQLite3Stmt
    	public query ( string $query ) : SQLite3Result
    	public querySingle ( string $query [, bool $entire_row = FALSE ] ) : mixed
    	public static version ( void ) : array
    }
    

    SQLite3Stmt类

    处理 SQLite 3 扩展语句模板的类。

    SQLite3Stmt
    {
    	/* 方法 */
    	public bindParam ( mixed $sql_param , mixed &$param [, int $type ] ) : bool
    	public bindValue ( mixed $sql_param , mixed $value [, int $type ] ) : bool
    	public clear ( void ) : bool
    	public close ( void ) : bool
    	public execute ( void ) : SQLite3Result
    	public getSQL ([ bool $expanded = FALSE ] ) : string
    	public paramCount ( void ) : int
    	public readOnly ( void ) : bool
    	public reset ( void ) : bool
    }
    

    SQLite3Result 类

    处理 SQLite 3 扩展返回结果集的类。

    SQLite3Result
    {
    	/* 方法 */
    	public columnName ( int $column_number ) : string
    	public columnType ( int $column_number ) : int
    	public fetchArray ([ int $mode = SQLITE3_BOTH ] ) : array
    	public finalize ( void ) : bool
    	public numColumns ( void ) : int
    	public reset ( void ) : bool
    }