Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Storing '&' in the database
On 10 Nov 2000, at 10:18, Sridhar Moparthy wrote:
> Do you know how to store data that contain '&' in to a table.
Hi,
I use Perl DBI/DBD and quote when I have to. I have no trouble inserting ampersands.
When I use a brute-force method of inserting data I do this:
set scan off;
DROP TABLE schools;
CREATE TABLE schools (
etc.
That allows me to have ampersands in the data that is getting entered.
I found that here:
http://www.arsdigita.com/asj/oracle-tips
Peter