On Thursday, November 22, 2012 11:59:48 AM UTC-8, Vaggelis Typaldos wrote: > what's wrong with this connection string? > > oracle://SCHEMA_FAKE:aaa###[email protected]:1521/SIDDB > > Note that if you use a password without hashes, like in the following > case, everything works fine. > oracle://SCHEMA_FAKE:[email protected]:1521/SIDDB > > I think it fails in the sequel side >
You need to URL-encode the password, then it should work. If it doesn't work like that, try: oracle://[email protected]:1521/SIDDB?password=aaa###bbbccc Again, you need to make sure the password is URL-encoded. FYI, # characters are URL encoded as %23 Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/sequel-talk/-/LKnG8xJg7FUJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
