parameterized Questions
3
Solved
Parameterized Queries in .Net always look like this in the examples:
SqlCommand comm = new SqlCommand(@"
SELECT *
FROM Products
WHERE Category_ID = @categoryid
",
conn);
comm.Parameters.Add...
Aesop asked 19/11, 2008 at 19:56
6
Solved
I have some code which utilizes parameterized queries to prevent against injection, but I also need to be able to dynamically construct the query regardless of the structure of the table. What is t...
Townspeople asked 19/9, 2008 at 21:59
© 2022 - 2024 — McMap. All rights reserved.