aspose file tools
The moose likes JDBC and the fly likes enter special characters Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "enter special characters" Watch "enter special characters" New topic
Author

enter special characters

apurv suthar
Greenhorn

Joined: Feb 05, 2012
Posts: 26
When I use query- "INSERT INTO tab_name VALUES(param1,param2)" and passes email as parameter it shows syntax error at char "@"... why? I know that this can be solved by using PreparedStatement... but if I wants to use same query..how to do it?
chris webster
Bartender

Joined: Mar 01, 2009
Posts: 1104
    
    7



ex-Oracle bloke
Wendy Gibbons
Bartender

Joined: Oct 21, 2008
Posts: 1098

chris webster wrote:


oh you think he had missed the quotes and it was trying to use them as column names, ahhh that makes sense
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

Wendy Gibbons wrote:oh you think he had missed the quotes and it was trying to use them as column names


Yeah, this commonly happens when people don't use PreparedStatement and try to build their SQL via string concatenation. Which is why you should always use PreparedStatement unless there's an extremely good reason why you can't.
apurv suthar
Greenhorn

Joined: Feb 05, 2012
Posts: 26
Oh yah..I got it...sorry for my stupidity...
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: enter special characters
 
Similar Threads
Validation of indexed properties
Retrieving data from database - Architecture issue
Need help in java array
what is wrong with my jsp
how to send the request to another sevlet