Access

Yes it is possible, hence the existence of the OleDbParameter class. You can use named parameters, the convention for which is to the prefix the column name with the "@" symbol, or you can just add parameters in the order they appear in the SQL code and use "?" placeholders.
 
Back
Top