sql >> データベース >  >> RDS >> PostgreSQL

PostgreSQL接続文字列/URLの形式は何ですか?

    それぞれの言語にLibpqバインディングを使用する場合、そのドキュメントによると、URIは次のように形成されます。

    postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]
    

    これが同じドキュメントの例です

    postgresql://
    postgresql://localhost
    postgresql://localhost:5432
    postgresql://localhost/mydb
    postgresql://[email protected]
    postgresql://user:[email protected]
    postgresql://[email protected]/otherdb?connect_timeout=10&application_name=myapp
    postgresql://localhost/mydb?user=other&password=secret
    


    1. MySQLでタイムスタンプを日時に変換する方法は?

    2. PostgreSQLを使用している場合、役割が存在せず、データベースを作成できません

    3. postgresqlにnanosecでタイムスタンプを保存する最もエレガントな方法は何ですか?

    4. MySQLは一意の制約のnull値を無視しますか?