OleDbParameters and Parameter Names
The Problem is that OleDb (and Odbc too) does not support named parameters. It only supports what’s called positional parameters. In other words: The name you give a parameter when adding it to the commands parameters list does not matter. It’s only used internally by the OleDbCommand class so it can distinguish and reference the … Read more