位置: 编程技术 - 正文
推荐整理分享PHP:pg_free_result()的用法_PostgreSQL函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4 >= 4.2.0, PHP 5)
pg_free_result — 释放查询结果占用的内存
说明 bool pg_free_result ( resource $result )pg_free_result() 仅在当你担心脚本执行时占用了过多内存时调用。脚本执行完毕后所有的查询结果占用的内存都会被自动释放。不过如果你确认在脚本中不会再用到查询结果了,你可以用 result 作为参数调用 pg_free_result() 来释放有关的内存。成功时返回 TRUE, 或者在失败时返回 FALSE。
Note:
本函数以前的名字为 pg_freeresult()。
参见 pg_query()。
参数result
PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute() (among others).
返回值成功时返回 TRUE, 或者在失败时返回 FALSE。
范例
Example #1 pg_free_result() example
<?php$db=pg_connect("dbname=usersuser=me")||die();$res=pg_query($db,"SELECT1UNIONALLSELECT2");$val=pg_fetch_result($res,1,0);echo"Firstfieldinthesecondrowis:",$val,"n";pg_free_result($res);?>以上例程会输出:
参见pg_query() - 执行查询 pg_query_params() - Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text. pg_execute() - Sends a request to execute a prepared statement with given parameters, and waits for the result.
PHP:pg_flush()的用法_PostgreSQL函数 pg_flush(PHP5=5.6.0)pg_flushFlushoutboundquerydataontheconnection说明mixedpg_flush(resource$connection)pg_flush()flushesanyoutboundquerydatawaitingtobesentontheconnection.参数connectionPostgreSQLd
PHP:pg_field_type()的用法_PostgreSQL函数 pg_field_type(PHP4=4.2.0,PHP5)pg_field_type返回相应字段的类型名称说明stringpg_field_type(resource$result,int$field_number)pg_field_type()以字符串返回PostgreSQLresult资源中指定f
PHP:pg_field_table()的用法_PostgreSQL函数 pg_field_table(PHP5=5.2.0)pg_field_tableReturnsthenameoroidofthetablesfield说明mixedpg_field_table(resource$result,int$field_number[,bool$oid_only=false])pg_field_table()returnsthenameofthetablethat
标签: PHP:pg_free_result()的用法_PostgreSQL函数
本文链接地址:https://www.jiuchutong.com/biancheng/281486.html 转载请保留说明!友情链接: 武汉网站建设