In order to mitigate SQL injection, untrusted input should be prevented from being interpreted as
part of a SQL command. The best way to do this is with the programming technique known as
‘Query Parameterization’. In this case, the SQL statements are sent to and parsed by the
database server separately from any parameters.