How to concatenate password with mysql:// protocol in Rebol? -
i have password contains "]" rebol doesn't accept mysql://user:password
how concatenate string mysql:// ?
you can use block form open port:
my-database: open [ scheme: 'mysql host: "localhost" user: "user" pass: "pass" path: "/dbpath" ]
you can examine output decode-url
function see how rebol turns url port specification:
probe decode-url foo://bar:baz@foobar.qux:999/quux
Comments
Post a Comment