PHP SQlite数据库相关函数概览

开发 后端
PHP SQlite数据库的相关还是可以分为很多种,比如:sqlite_array_query;sqlite_busy_timeout;sqlite_close;sqlite_column等等。

PHP SQlite数据库对于拥有相当经验的PHP程序员来说是不会陌生的,但是要想完全掌握PHP SQlite数据库的相关函数的应用也不是一件易事。下面我们就为大家总结了一些PHP SQlite数据库的相关函数。#t#

PHP SQlite数据库之sqlite_array_query —— 发送一条 SQL 查询,并返回一个数组。

sqlite_busy_timeout —— 设置超时时间(busy timeout duration),或者频繁的用户失去权限(disable busy handlers)。

sqlite_changes —— 返回被***的SQL 查询(changed by the most recent SQL statement)改变的行数。

sqlite_close —— 关闭一个打开的SQLite数据库。

sqlite_column —— 在当前的行中取得一列(a column from the current row of a result set)。

sqlite_create_aggregate —— Register an aggregating UDF for use in SQL statements。

sqlite_create_function —— Registers a "regular" User Defined Function for use in SQL statements。

sqlite_current —— 在返回的数组中取得当前的行(the current row from a result set as an array)。

sqlite_error_string —— 返回错误代码的原始描述(the textual description of an error code)。

sqlite_escape_string —— 释放一个用于查询的字符串(Escapes a string for use as a query parameter)。

sqlite_fetch_array —— 取得下一行并设置成一个数组(the next row from a result set as an array)。

sqlite_fetch_single —— 取得***列并设置成一个字符串(Fetches the first column of a result set as a string)。

sqlite_fetch_string —— sqlite_fetch_single()的别名。

sqlite_field_name —— 取得结果中指定字段的字段名。

sqlite_has_more —— 返回是否有更多可用的行(whether or not more rows are available)。

sqlite_last_error —— 返回数据库的***的错误代码(the error code of the last error for a database)。

sqlite_last_insert_rowid —— 返回***插入的行的行号(the most recently inserted row)。

sqlite_libencoding —— 返回SQLite库(SQLite library)的编码(encoding)。

PHP SQlite数据库之sqlite_libversion —— 返回SQLite库(SQLite library)的版本。

sqlite_next —— 返回下一行的行号。

sqlite_num_fields —— 取得结果集中字段的数目。

sqlite_num_rows —— 取得结果集中行的数目。

sqlite_open —— 打开一个SQLite数据库。如果文件不存在则尝试创建之。

sqlite_popen —— 用***连接的方式打开一个SQLite数据库。如果文件不存在则尝试创建之。

sqlite_query —— 发送一条 SQL 查询,并返回一个结果句柄(a result handle)。

sqlite_rewind —— 倒回***行(Seek to the first row number)。

sqlite_seek —— 在缓存结果中查找特定的行号(Seek to a particular row number of a buffered result set)。

sqlite_udf_decode_binary —— Decode binary data passed as parameters to an UDF。

sqlite_udf_encode_binary —— Encode binary data before returning it from an UDF。

PHP SQlite数据库之sqlite_unbuffered_query —— 发送一条 SQL 查询,并不获取和缓存结果的行。

责任编辑:曹凯 来源: 百度博客
相关推荐

2009-12-08 19:34:26

PHP拼写检查函数库

2009-12-08 11:10:20

PHP GD库函数

2009-11-25 09:56:06

PHP数组处理函数

2009-12-07 14:44:27

PHP文件函数

2023-12-20 12:49:05

索引数据检索数据库

2009-11-30 17:54:56

PHP连接Sql数据库

2009-12-07 16:44:45

PHP图形处理函数

2017-07-12 09:20:42

SQLite数据库移植

2011-07-20 12:34:49

SQLite数据库约束

2019-08-15 07:00:54

SQLite数据库内存数据库

2011-08-04 18:00:47

SQLite数据库批量数据

2024-10-28 16:31:03

2011-08-02 16:16:08

iPhone开发 SQLite 数据库

2009-12-03 15:40:41

PHP获取数据库表信息

2009-11-27 10:32:35

2011-07-05 10:16:16

Qt 数据库 SQLite

2011-08-24 13:49:45

Access数据库转化

2009-12-11 17:33:56

PHP5常用函数

2018-07-13 09:20:30

SQLite数据库存储

2009-12-03 15:31:30

PHP获取显示数据库数
点赞
收藏

51CTO技术栈公众号