位置: 编程技术 - 正文
推荐整理分享PHP:pg_lo_import()的用法_PostgreSQL函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4 >= 4.2.0, PHP 5)
pg_lo_import — 将文件导入为大型对象
说明 int pg_lo_import ([ resource $connection ], string $pathname [, mixed $object_id ] )pg_lo_import() creates a new large object in the database using a file on the filesystem as its data source.
要使用大型对象(lo)接口,需要将其放置在事务块中。
Note: 当启用安全模式时,PHP 会检查被操作的文件或目录是否与被执行的脚本有相同的 UID(所有者)。
Note:
本函数以前的名字为 pg_loimport()。
参数connection
PostgreSQL database connection resource. When connection is not present, the default connection is used. The default connection is the last connection made by pg_connect() or pg_pconnect().
pathname变量指明了要导入为大型对象的文件名。
object_idIf an object_id is given the function will try to create a large object with this id, else a free object id is assigned by the server. The parameter was added in PHP 5.3 and relies on functionality that first appeared in PostgreSQL 8.1.
返回值导入成功则返回新建的大型对象的 OID,如果出错则返回 FALSE。
更新日志版本 说明 5.3.0
The optional object_id was added.
4.2.0在 PHP 4.2.0 版本之前,本函数语法不一样,见如下定义: int pg_lo_import ( string $pathname [, resource $connection ] )
范例
Example #1 pg_lo_import() 例子
<?php$database=pg_connect("dbname=jacarta");pg_query($database,"begin");$oid=pg_lo_import($database,'/tmp/lob.dat');pg_query($database,"commit");?> 参见pg_lo_export() - 将大型对象导出到文件 pg_lo_open() - 打开一个大型对象
PHP:pg_last_notice()的用法_PostgreSQL函数 pg_last_notice(PHP4=4.0.6,PHP5)pg_last_notice返回PostgreSQL服务器最新一条公告信息说明stringpg_last_notice(resource$connection)pg_last_notice()返回由connection指定的PostgreSQL服
PHP:pg_insert()的用法_PostgreSQL函数 pg_insert(PHP4=4.3.0,PHP5)pg_insert将数组插入到表中说明mixedpg_insert(resource$connection,string$table_name,array$assoc_array[,int$options=PGSQL_DML_EXEC])pg_insert()将assoc_array数组中
PHP:pg_get_result()的用法_PostgreSQL函数 pg_get_result(PHP4=4.2.0,PHP5)pg_get_result取得异步查询结果说明resourcepg_get_result([resource$connection])pg_get_result()取得执行pg_send_query()而得到的查询结果资源。pg_send_
标签: PHP:pg_lo_import()的用法_PostgreSQL函数
本文链接地址:https://www.jiuchutong.com/biancheng/281478.html 转载请保留说明!友情链接: 武汉网站建设