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
|`node.psql(query, ...)`| Runs query via `psql` command and returns tuple `(error code, stdout, stderr)`. |
67
-
|`node.safe_psql(query, ...)`| Same as `psql()` except that it returns only `stdout`. If an error occures during the execution, an exception will be thrown. |
67
+
|`node.safe_psql(query, ...)`| Same as `psql()` except that it returns only `stdout`. If an error occurs during the execution, an exception will be thrown. |
68
68
|`node.execute(query, ...)`| Connects to PostgreSQL using `psycopg2` or `pg8000` (depends on which one is installed in your system) and returns two-dimensional array with data. |
69
69
|`node.connect(dbname, ...)`| Returns connection wrapper (`NodeConnection`) capable of running several queries within a single transaction. |
0 commit comments