位置: 编程技术 - 正文
推荐整理分享PHP:pg_connect()的用法_PostgreSQL函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
pg_connect — 打开一个 PostgreSQL 连接
说明 resource pg_connect ( string $connection_string )pg_connect() 返回其它 PostgreSQL 函数所需要的资源。
pg_connect() 打开一个由 connection_string 所指定的 PostgreSQL 数据库的连接。如果成功则返回连接资源,如果不能连接则返回 FALSE。connection_string 应该是用引号引起来的字符串。
Example #1 使用 pg_connect()
<?php$dbconn=pg_connect("dbname=mary");//connecttoadatabasenamed"mary"$dbconn2=pg_connect("host=localhostport=dbname=mary");//connecttoadatabasenamed"mary"on"localhost"atport""$dbconn3=pg_connect("host=sheepport=dbname=maryuser=lambpassword=foo");//connecttoadatabasenamed"mary"onthehost"sheep"withausernameandpassword$conn_string="host=sheepport=dbname=testuser=lambpassword=bar";$dbconn4=pg_connect($conn_string);//connecttoadatabasenamed"test"onthehost"sheep"withausernameandpassword?> connection_string 所包括的参数有 host,port,tty, options,dbname, user 和 password。如果用同样的 connection_string 再次调用 pg_connect(),不会建立新连接,而是返回前面已经打开的连接资源。如果使用不同的连接字符串,则可以和同一个数据库建立多个连接。
旧的多参数语法 $conn = pg_connect("host", "port", "options", "tty", "dbname") 已经不提倡使用。
参见 pg_pconnect(),pg_close(),pg_host(),pg_port(), pg_tty(),pg_options() 和 pg_dbname()。
PHP:pg_connection_busy()的用法_PostgreSQL函数 pg_connection_busy(PHP4=4.2.0,PHP5)pg_connection_busy获知连接是否为忙说明boolpg_connection_busy(resource$connection)pg_connection_busy()在此连接状态为忙的时候返回TRUE。如果
PHP:pg_connect_poll()的用法_PostgreSQL函数 pg_connect_poll(PHP5=5.6.0)pg_connect_pollPollthestatusofanin-progressasynchronousPostgreSQLconnectionattempt.说明intpg_connect_poll([resource$connection])pg_connect_poll()pollsthestatusofaPostgreSQ
PHP:pg_close()的用法_PostgreSQL函数 pg_close(PHP4,PHP5)pg_close关闭一个PostgreSQL连接说明boolpg_close([resource$connection])pg_close()关闭由所给资源connection指定的到PostgreSQL数据库的非持久连接。Note:使用
标签: PHP:pg_connect()的用法_PostgreSQL函数
本文链接地址:https://www.jiuchutong.com/biancheng/281518.html 转载请保留说明!友情链接: 武汉网站建设