From 82361776837fe037f0292c3ac5ecaf7eea6b4668 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 7 May 2021 16:18:00 -0400 Subject: [PATCH] doc note --- postgres.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres.d b/postgres.d index 927449c..847b082 100644 --- a/postgres.d +++ b/postgres.d @@ -27,7 +27,7 @@ import std.exception; --- +/ class PostgreSql : Database { - /// dbname = name is probably the most common connection string + /// `dbname=your_database_name` is probably the most common connection string. See section "33.1.1.1. Keyword/Value Connection Strings" on https://www.postgresql.org/docs/10/libpq-connect.html this(string connectionString) { this.connectionString = connectionString; conn = PQconnectdb(toStringz(connectionString));