I have a statement:
String strName = request.getParameter("gameName"
;
gameName is the name of the input box on the previous page
the sql query I have is:
<%
strQuery = "SELECT * FROM videogames WHERE " + strName + "LIKE '%VName%'";
rs = stmt.executeQuery(strQuery);
%>
VName is a column in the videogames table with a varchar type
If I enter some text into the input box, it gives an error as it thinks strName is a column in the table; however if I input a number into the input box, the query works fine.
Any suggestions?
Would you want me to post all my code?
Arif
String strName = request.getParameter("gameName"
gameName is the name of the input box on the previous page
the sql query I have is:
<%
strQuery = "SELECT * FROM videogames WHERE " + strName + "LIKE '%VName%'";
rs = stmt.executeQuery(strQuery);
%>
VName is a column in the videogames table with a varchar type
If I enter some text into the input box, it gives an error as it thinks strName is a column in the table; however if I input a number into the input box, the query works fine.
Any suggestions?
Would you want me to post all my code?
Arif