This commit is contained in:
Adam D. Ruppe 2021-05-07 16:18:00 -04:00
parent b4ef822ad1
commit 8236177683
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import std.exception;
--- ---
+/ +/
class PostgreSql : Database { 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(string connectionString) {
this.connectionString = connectionString; this.connectionString = connectionString;
conn = PQconnectdb(toStringz(connectionString)); conn = PQconnectdb(toStringz(connectionString));