Having trouble escaping all the quotes in my function
(basic usage of it -> if i find a string do nothing, if its not a string add \" in the begin and end)
It's heavily used in my case, therefore I created this version:
object StringUtil{ implicit class StringImprovements(s: String) { def quoted = "\""+s+"\"" } } val myStatement = s"INSERT INTO ${tableName.quoted} ..."