Fork me on GitHub
#sql
<
2017-07-04
>
pc12306:07:11

this may be more in the realm of jdbc (though i'm passing it through conman), but does anyone know how to escape parameters with question marks inside of a JDBC url? thanks!

Shantanu Kumar06:07:34

@pc123 Unless you embed a literal parameter in the SQL you need not escape the ? in param value.

Shantanu Kumar06:07:52

Sorry, misread the question by @pc123

pc12319:07:27

I ended up working around the issue by specifying the datasource in parameters passed to hikari. Thanks for the help though!