分享
 
 
 

SQLite资料翻译

王朝mssql·作者佚名  2008-05-18
窄屏简体版  字體: |||超大  

翻译:523065@163.com

首次翻译时间:2004年5月5日

再次翻译时间:...................

版本:0.1

翻译手记:

这是我的第一编翻译作品。有许多地方不会翻译,唯有参考其他人的作品^_^。

但体会很深。原来自己的英语水平是那么的低!!做翻译是多么辛苦……

同时也收获不少。至少打字的速度提高了不少。

在这里我要感谢那做翻译的无私奉献的人们,同时我也希望我自己会做得越来越好!!

(PS:由于水平有限,有翻译不对的地方请指出来。)

SQLite

介绍

这是嵌入式SQL数据库引擎SQLite(SQLite Embeddable SQL Database Engine)的一个扩展。SQLite是一个实现嵌入式SQL数据库引擎的 C语言库(C library)。用SQLite连接的程序可以使用SQL数据库,但不需要运行一个单独的关系型数据库管理系统进程(separate RDBMS process)。

SQLite不是一个用于连接到大型数据库服务器(big database server)的客户端库(client library)。SQLite是一个服务器。SQLite直接读写(reads and writes directly)在硬盘上的数据库文件。

注:更多关于SQLite的资料请查看SQLite的网站(http://sqlite.org/)。

安装

请阅读在安装包里的 INSTALL 文件。或者使用PEAR installer with "pear install sqlite"。SQLite已经内置了,你不需要安装任何附加的软件(additional software)。

Windows users可以下载SQLite扩展DLL(php_sqlite.dl)。

需求

为了可以使用那些函数,你必须编译带上SQLite支持PHP(compile PHP with SQLite support),或者在你的php.ini加载SQLite扩展。

资源类型

有两个在SQLite界面(the SQLite Interface)可用的资源。第一个是数据库连接(the database connection),第二是计算结果设置(the result set)。

预定义常量

函数sqlite_fetch_array()和sqlite_current()使用一个常量表示不同的返回类型。下面的常量(表格 1.)已经被定义:

表格 1. SQLite 常量

常量名 意义

SQLITE_ASSOC Columns are returned into the array having the fieldname as the array index.

SQLITE_BOTH Columns are returned into the array having both a numerical index and the fieldname as the array index.

SQLITE_NUM Columns are returned into the array having a numerical index to the fields. This index starts with 0, the first field in the result.

运行时配置

这些函数的行为受到全局配置文件 php.ini 的影响。

表格 2. SQLite Configuration Options

Name Default Changeable

sqlite.assoc_case 0 PHP_INI_ALL

For further details and definition of the PHP_INI_* constants see ini_set().

以下是该配置选项的简要解释。

sqlite.assoc_case int

Whether to use mixed case (0), upper case (1) or lower case (2) hash indexes.

This option is primarily useful when you need compatibility with other database systems, where the names of the columns are always returned as uppercase or lowercase, regardless of the case of the actual field names in the database schema.

The SQLite library returns the column names in their natural case (that matches the case you used in your schema). When sqlite.assoc_case is set to 0 the natural case will be preserved. When it is set to 1 or 2, PHP will apply case folding on the hash keys to upper- or lower-case the keys, respectively.

Use of this option incurs a slight performance penalty, but is MUCH faster than performing the case folding yourself using PHP script.

目录

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)。

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。

sqlite_unbuffered_query —— 发送一条 SQL 查询,并不获取和缓存结果的行。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有