I've been working with MySQL on a semi-sophisticated level for a while now.
I was doing some more research on it, when I came across this http://bobby-tables.com/java.html.
I am now wondering if it is unsafe to not use the methods such as .setInt() which replace the "?" characters in the prepared statement strings with variables.
The project I am currently working on can not use those methods, so I manually put my variables into the queries. Is this somehow unsafe? And if so, is there a way to fix it without using those methods?
Thanks!