0
votes
Preventing SQL injection without prepared statements (JDBC)
Prepared Statements dont care about client or server side
Use them and drop any sql string concatenation, there is not a single reason to not use Prepared Statements
…
1
vote
How to validate sql query syntax?
dont think there is any (easy) way to validate sql
Sql syntax is complex and allows for alot of different ways to enter a statement.
Think you best shot would be to just execute the …
