Re: Storing HTML in database

2002-10-22 Thread Adrian Janssen
> catch(Exception e){ > // Pass back an empty string if there is a null pointer > exception. > return ""; > } > } > > Dale Nicholson > > > > -Original Message- > From: Robert Misior [mailto:misior@;SALEM.EDU] >

Re: Storing HTML in database

2002-10-22 Thread Nicholson, Dale
quot;; } } Dale Nicholson -Original Message- From: Robert Misior [mailto:misior@;SALEM.EDU] Sent: Tuesday, October 22, 2002 9:08 AM To: [EMAIL PROTECTED] Subject: Storing HTML in database Hello, I'm looking for a good approach of storing HTML in mysql database (field

Re: Storing HTML in database

2002-10-22 Thread Geert Van Damme
PreparedStatements of course. > -Original Message- > From: A mailing list about Java Server Pages specification > and reference [mailto:JSP-INTEREST@;JAVA.SUN.COM] On Behalf Of > Robert Misior > Sent: dinsdag 22 oktober 2002 16:08 > To: [EMAIL PROTECTED] > Sub

Storing HTML in database

2002-10-22 Thread Robert Misior
Hello, I'm looking for a good approach of storing HTML in mysql database (field type is text). Currently I'm converting any character other then a number or alpha character to it's ASCII value before the table is updated. So far this is working fine except extra overhead and storage space. T