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
At present jet doesn't support passwords with spaces in them.
I was able to workaround the issue by doing a sql-injection like attack:
err := postgres.Generate("./gen/db", postgres.DBConnection{ Host: "localhost", Port: 5432, User: "dbuser", SslMode: "disable", Password: "null password='password with spaces'", DBName: "mydb", })
The text was updated successfully, but these errors were encountered:
Hi @ewollesen. Thanks for the reporting the issue. Regarding the workaround, this should also work:
Password: "'password with spaces'",
Sorry, something went wrong.
Fixed with v2.6.0 release.
No branches or pull requests
At present jet doesn't support passwords with spaces in them.
I was able to workaround the issue by doing a sql-injection like attack:
The text was updated successfully, but these errors were encountered: