Replies: 2 comments 3 replies
-
Try |
Beta Was this translation helpful? Give feedback.
0 replies
-
Unencryption shows |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm having trouble connecting to a Supabase database. Because of their setup, they have some convoluted
username
andpasswords
.`"postgres://#{ [ENV['SUPABASE_UN'] }:#{ [ENV['SUPABASE_PW'] }@aws-0-ca-central-1.pooler.supabase.com:5432/postgres"'
Username has a period in it, and password has a '<' in it. I tried using
URI.encode_www_form_component
but that still didn't take.Just inserting the encrypted username and unencrypted password says it's a
bad URI
:/Users/rich/.rbenv/versions/3.2.2/lib/ruby/gems/3.2.0/gems/uri-1.0.2/lib/uri/rfc3986_parser.rb:130:in
split': bad URI (is not URI?):...`Is there any other way I can reconfigure this connector in
Sequel
?Cheers
Beta Was this translation helpful? Give feedback.
All reactions