In my project I have to create insert statements based on the tables passed. So I have two options 1)Write preparedstatement and run it in batch 2)Create insert into table values(..),(..),(..)
I want to know the reasons to prefer (1) over (2) if I use Matcher.quoteReplacement() to escape the values
Thanks in advance