RE: Is this usage correct ? - Mailing list pgsql-interfaces

From Peter Mount
Subject RE: Is this usage correct ?
Date
Msg-id 1B3D5E532D18D311861A00600865478C70C4D0@exchange1.nt.maidstone.gov.uk
Whole thread Raw
In response to Is this usage correct ?  (Guillaume Rousse <Guillaume.Rousse@univ-reunion.fr>)
Responses RE: Is this usage correct ?  (Guillaume Rousse <Guillaume.Rousse@univ-reunion.fr>)
List pgsql-interfaces
In theory it would be ok, but as PreparedStatement extends Statement,
why cause the extra overhead and just use Statement?

Peter

-- 
Peter Mount
Enterprise Support
Maidstone Borough Council
Any views stated are my own, and not those of Maidstone Borough Council.



-----Original Message-----
From: Guillaume Rousse [mailto:Guillaume.Rousse@univ-reunion.fr]
Sent: Wednesday, April 19, 2000 10:47 AM
To: pgsql-interfaces@postgresql.org
Subject: [INTERFACES] Is this usage correct ?


Is it correct to use a preparedStatement with no variable element, as
this:
PreparedStatement stmp=conn.prepareStatement("delete from table where
oid="+oid);
stmt.excuteUpdate();

Or is it mandatory to use :
PreparedStatement stmp=conn.prepareStatement("delete from table where
oid=?");
stmt.setInt(1,oid);
stmt.excuteUpdate();
-- 
Guillaume Rousse
Iremia - Université de la Réunion

Sleep doesn't exists. Just lack of cafeine.


pgsql-interfaces by date:

Previous
From: Guillaume Rousse
Date:
Subject: Is this usage correct ?
Next
From: Mirek Hankus
Date:
Subject: ODBC with fields defined as numeric(14,2)