We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider db to be a valid connection and table to be a valid table
db
table
echo "a" discard db.get_value sql "SELECT 1 FROM table WHERE false" echo "b"
a row number 0 is out of range 0..-1 b
a
The above error happens if a program calls PQgetvalue(), PQgetlength(), or PQgetisnull() with a row number of -1 and if there were no rows in the result. https://www.postgresql.org/message-id/014c01c57be2$60b97780$3202a8c0@pi
$ nim -v Nim Compiler Version 1.0.99 [Windows: amd64]
The text was updated successfully, but these errors were encountered:
In what universe is dumping stuff to the terminal a viable error reporting strategy? I thought Postge is a piece of quality... :-(
Sorry, something went wrong.
No branches or pull requests
Example
Consider
db
to be a valid connection andtable
to be a valid tableCurrent Output
Expected Output
Possible Solution
Additional Information
The text was updated successfully, but these errors were encountered: