Answers for "escaping characters in hibernate queries"

C
0

escaping characters in hibernate queries

best solution for me was to use char(ASCII number)
for example: char(39) is '
query example: select * from table replace (column, char(36), " ")="value"

replace with space or anything, and compare it as such.

hope this helps!!!! <3
Posted by: Guest on October-30-2021

Code answers related to "C"

Browse Popular Code Answers by Language