Final form of parametric SQL commands in ADO.NET
- by mcoolbeth
I am getting a syntax error when I send a parameterized query to Access from my C# program via ADO.NET.
I, of course, know what SQL string I have included in my code, with the parameter names embedded inside.
Does anyone know how I can look at the SQL string that is finally sent to the DBMS during after I call cmd.ExecuteNonQuery?
Thanks.