You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/API/Classes.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -216,7 +216,7 @@ <h4>Declaration</h4>
216
216
<p>The result of successfully executing a <code><ahref="Classes/Statement.html">Statement</a></code>.</p>
217
217
<divclass="aside aside-note">
218
218
<pclass="aside-title">Note</p>
219
-
Do not confuse this <code>Cursor</code> class with the SQL cursors created by the <ahref="https://www.postgresql.org/docs/11/sql-declare.html">SQL DECLARE
219
+
Do not confuse this <code>Cursor</code> class with the SQL cursors created by the <ahref="https://www.postgresql.org/docs/12/sql-declare.html">SQL DECLARE
220
220
command</a>. The <code>Cursor</code> class exposes
221
221
the result of executing a <em>single</em> SQL command. A SQL cursor, on other other hand, exposes
222
222
a query’s result by <em>repeated</em> execution of the SQL <code>FETCH</code> command.
Copy file name to clipboardExpand all lines: Docs/API/Classes/Cursor.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ <h1>Cursor</h1>
55
55
<p>The result of successfully executing a <code><ahref="../Classes/Statement.html">Statement</a></code>.</p>
56
56
<divclass="aside aside-note">
57
57
<pclass="aside-title">Note</p>
58
-
Do not confuse this <code>Cursor</code> class with the SQL cursors created by the <ahref="https://www.postgresql.org/docs/11/sql-declare.html">SQL DECLARE
58
+
Do not confuse this <code>Cursor</code> class with the SQL cursors created by the <ahref="https://www.postgresql.org/docs/12/sql-declare.html">SQL DECLARE
59
59
command</a>. The <code>Cursor</code> class exposes
60
60
the result of executing a <em>single</em> SQL command. A SQL cursor, on other other hand, exposes
61
61
a query’s result by <em>repeated</em> execution of the SQL <code>FETCH</code> command.
Copy file name to clipboardExpand all lines: Docs/setting_up_a_postgres_database_for_testing.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,9 @@ After [installing Postgres](https://www.postgresql.org/download/), follow the st
9
9
In `postgresql.conf`, ensure:
10
10
11
11
ssl = on
12
+
password_encryption = scram-sha-256
12
13
13
-
If running Postgres on a different host than PostgresClientKit, confirm `postgressql.conf` also sets [`listen_addresses`](https://www.postgresql.org/docs/11/runtime-config-connection.html#RUNTIME-CONFIG-CONNECTION-SETTINGS) to the desired network interface.
14
+
If running Postgres on a different host than PostgresClientKit, confirm `postgressql.conf` also sets [`listen_addresses`](https://www.postgresql.org/docs/12/runtime-config-connection.html#RUNTIME-CONFIG-CONNECTION-SETTINGS) to the desired network interface.
Copy file name to clipboardExpand all lines: Docs/troubleshooting.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ ssl = on
46
46
47
47
## Authentication issues
48
48
49
-
Review the [`pg_hba.conf`](https://www.postgresql.org/docs/11/auth-pg-hba-conf.html) file for your Postgres server. PostgresClientKit supports the `trust`, `password`, and `md5` options for `auth-method`.
49
+
Review the [`pg_hba.conf`](https://www.postgresql.org/docs/11/auth-pg-hba-conf.html) file for your Postgres server. PostgresClientKit supports the `trust`, `password`, `md5`, and `scram-sha-256` options for `auth-method`.
0 commit comments