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: POSTGRESQL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ This section covers connecting to a PostgreSQL database instance.
25
25
2.**Handle Missing Variables**: If a command fails with an error message containing a placeholder like `${POSTGRES_HOST}`, it signifies a missing environment variable. Inform the user which variable is missing and instruct them to set it.
26
26
27
27
3.**Handle Permission Errors**: If an operation fails due to permission, it is
28
-
likely that the user do not have the correct privileges on the PostgreSQL
28
+
likely that the user does not have the correct privileges on the PostgreSQL
29
29
database. Database-level permissions (e.g., `SELECT`, `INSERT`) are required
30
30
to execute queries.
31
31
@@ -53,7 +53,7 @@ Users may have set project environment variables:
53
53
*`POSTGRES_USER`: The username for authentication.
54
54
*`POSTGRES_PASSWORD`: The password for authentication.
55
55
56
-
Instead of prompting the user for these values for specific tool calls, prompt the user to verify reuse a specific value.
56
+
Instead of prompting the user for these values for specific tool calls, prompt the user to verify and reuse a specific value.
57
57
Make sure to not use the environment variable name like `POSTGRES_HOST`, `${POSTGRES_HOST}`, or `$POSTGRES_HOST`. The value can be found by using command: `echo $POSTGRES_HOST`.
58
58
59
59
## Use Full Table Name Format "DATABASE_NAME.SCHEMA_NAME.TABLE_NAME"
0 commit comments