Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Oracle 8.1.7 Error

Re: Oracle 8.1.7 Error

From: Gabriel Gonzalez <no-spam_at_no-spam.com>
Date: Wed, 19 Feb 2003 13:42:52 -0800
Message-ID: <3e53def0$1_2@binarykiller.newsgroups.com>


> <% rset = stmt.executeQuery("delete nazwisko, imie from test where
nazwisko
> =" ('null') ""); %>

Also, I don't know what you are trying to do, but make you are not doing this:

delete from blahblah where (field1 = null)

That statement aboev will always fail. If you are trying to test for a null value use this instead:

delete from blahblah where (field1 is null)

-----------== Posted via Newsfeed.Com - Uncensored Usenet News ==----------

   http://www.newsfeed.com The #1 Newsgroup Service in the World! -----= Over 100,000 Newsgroups - Unlimited Fast Downloads - 19 Servers =----- Received on Wed Feb 19 2003 - 15:42:52 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US