Anil_G
(Anil Gorthi)
2
@Phil_Kelsey
For mssql db types we have to use ? And positional argumnets only…normal parameterization would not work
Or one more way is completely remove parameters and use the variable directly in the statement
Eg : "Select * From [abc] Where col1='" + var1 + "'"
Hope this helps
Cheers