ODBC Excel as a database using named parameters

@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