| Author |
quoting in queries
|
mary bate
Greenhorn
Joined: Jul 30, 2004
Posts: 12
|
|
hi guys...juz a simple qn...is jsp case sensitive? and String queryText = "insert into sshl values(\"" + request.getParameter("employee_name") + "\");"; String queryText = "insert into sshl values('" + request.getParameter("employee_name")";" which one is right and wrong? or is both acceptable [ August 04, 2004: Message edited by: Bear Bibeault ]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56221
|
|
Yes, JSP, like Java, is case-sensitive. And since your other question is not a JSP question, I'm moving it to the JDBC forum (with an appropriate change of title).
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Julian Kennedy
Ranch Hand
Joined: Aug 02, 2004
Posts: 823
|
|
There's a syntax error in your second example, so that one's wrong. To answer your real question, I would always use single quotes when writing SQL queries as not all RDBMS support double quotes. I'm not sure what the ANSI standard says about it. From a JDBC perspective I'm not sure if it matters as I believe the query string will be processed by the JDBC Driver implementation before being passed on the database in a compatible format. I suppose the degree of processing that takes place would depend on the driver. Anyway, hope that answers your question. Jules
|
 |
mary bate
Greenhorn
Joined: Jul 30, 2004
Posts: 12
|
|
|
ok thanks
|
 |
 |
|
|
subject: quoting in queries
|
|
|