ADODB.Recordset error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another
问题 I've got an old website that is using ASP Classic and I have recently been asked remove the SQL injection attack threat. I'm trying to use parameterized queries, but it's all a little above my head. here is my code: <% whatSector = request.querystring("whatSector")%> <% adoCon.Open cString dim rs_client if whatSector="" then strSQL="SELECT * FROM clients ORDER BY alphabet" else Set objCommand = Server.CreateObject("ADODB.COMMAND") strCmd1 = "SELECT * FROM clients Where industrySector=? ORDER