• 技术文章 >数据库 >PostgreSQL

    php如何连接postgresql

    yangyang2020-04-11 15:13:29原创4045

    PHP中可以使用pg_connect函数连接postgresql数据库。

    pg_connect() 打开一个由 connection_string 所指定的 PostgreSQL 数据库的连接。如果成功则返回连接资源,如果不能连接则返回 FALSE。connection_string 应该是用引号引起来的字符串。

    语法:

    pg_connect ( string $connection_string ) : resource

    pg_connect() 返回其它 PostgreSQL 函数所需要的资源。

    pg_connect() 打开一个由 connection_string 所指定的 PostgreSQL 数据库的连接。如果成功则返回连接资源,如果不能连接则返回 FALSE。connection_string 应该是用引号引起来的字符串。

    示例:

    <?php
    $dbconn = pg_connect("dbname=mary");
    //connect to a database named "mary"
    $dbconn2 = pg_connect("host=localhost port=5432 dbname=mary");
    // connect to a database named "mary" on "localhost" at port "5432"
    $dbconn3 = pg_connect("host=sheep port=5432 dbname=mary user=lamb password=foo");
    //connect to a database named "mary" on the host "sheep" with a username and password
    
    $conn_string = "host=sheep port=5432 dbname=test user=lamb password=bar";
    $dbconn4 = pg_connect($conn_string);
    //connect to a database named "test" on the host "sheep" with a username and password
    ?>

    推荐:PostgreSQL教程

    专题推荐:postgresql php
    上一篇:postgresql10和11的区别 下一篇:postgresql能支持多大的数据库

    相关文章推荐

    • postgresql不生成日志文件(pg_log)怎么解决• postgresql中怎么查看函数

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网