For a form field, if users input " or ', we will have trouble when storing them into database. What is the standard way to solve this cases? for me, this only solution I can think of is to read every field's input , if it have ' or " character, it will be replaced by \' or \" , isn't it? I wonder if we have better way dealing with that.
Thanks everyone who helped me
Ruchi Kolla
Greenhorn
Joined: Jan 24, 2002
Posts: 19
posted
0
" doesn't have any problem if you store in database. The only problem is with single quote '. If you are preparing a SQL query with the form submission values you need to escape the single quote by adding another single quote. If you have option of PreparedStatement you need not worry about escaping these quotes. PreparedStatement will automatically takes care of special characters. For escaping the single quotes the bestway is to write small function and append another single quote.
Even easier if you use a PreparedStatement to insert the data rather than a Statement - you don't have to do anything at all. The PreparedStatement will manage escaping special characters for you. Dave
Ken Shamrock
Ranch Hand
Joined: Jan 23, 2002
Posts: 139
posted
0
Oh I understand, thanks guys.
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: How you guys treat the " or ' fields inputs?