We currently receive parameters of values as VARCHAR
's, and then build a date from them. I am wanting to confirm that the method below would stop the possibility of SQL injection from this statement:
select CONVERT(datetime, '2010' + '-' + '02' + '-' + '21' + ' ' + '15:11:38.990')
Another note is that the actual parameters being passed through to the stored proc are length bound at (4, 2, 2, 10, 12) VARCHAR
's in correspondence to the above.