Escaping comma in java
Posted
by
prasanna
on Stack Overflow
See other posts from Stack Overflow
or by prasanna
Published on 2011-01-17T12:44:38Z
Indexed on
2011/01/17
12:53 UTC
Read the original article
Hit count: 202
I have a string which is fed into the query as IN clause,which looks like this ('ACT','INACT') which is one of the parameters to a function inside a package.when a call is made to the function from java, it looks like this call package.function(1,2,3,('ACT','INACT'),4,5). When the package is called,i get error as wrong type of arguments. It is taking the values inside brackets as different values delimited by strings
© Stack Overflow or respective owner