Re: [JDBC] JDBC driver implementation

2001-10-26 Thread Barry Lind


The jdbc driver does not support updateable result sets.  If you want to 
update the data you need to do it the old fashioned way (i.e. use update 
SQL statements).

thanks,
--Barry

Robinson wrote:

 Hello,
 
 I have a situation where I just want the changes to be made temporarily 
 in the ResultSet.   I don't want to commit the changes to the 
 database.   When I use the ResultSet.updateString(...), 
 ResultSet.updateBoolean(...), or ResultSet.updateObject(...) methods;  I 
 get the message This method is not yet implemented.  Looks like the 
 implementation for the above methods has not yet been provided in 
 version 7.1.2 
 
 I don't know if I am alone in this situation.  Has anyone encountered 
 such a problem?  And how have you gotten around solving the it.
 
 The problem:
 - Being unable to update an updatable resultset in PostgreSQL 7.1.2
 
 Thanks
 
 
 
 *Do You Yahoo!?*
 Make a great connection at Yahoo! Personals 
 http://rd.yahoo.com/mktg/mail/txt/tagline/?http://personals.yahoo.com.



---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly



Re: [JDBC] JDBC driver in pgsql 7.1 build problem

2001-05-03 Thread Marko Kreen

On Thu, May 03, 2001 at 11:35:23AM +0200, Rolf Schillinger wrote:
 Hi,
 I have strange problems trying to build the JDBC driver for postgresql
 7.1:

try this patch:

  http://www.l-t.ee/marko/pgsql/ant12.diff

then 'make clean', 'make'

-- 
marko


---(end of broadcast)---
TIP 6: Have you searched our list archives?

http://www.postgresql.org/search.mpl



Re: [JDBC] Jdbc driver

2001-04-02 Thread Peter T Mount

Quoting sugumar [EMAIL PROTECTED]:
 Connection con=DriverManager.getConnection
("jdbc:postgresql://192.168.230.148/meeting,postgres,postgres");

Your url is wrong, it should read

 Connection con=DriverManager.getConnection
("jdbc:postgresql://192.168.230.148/meeting","postgres","postgres");

Peter
-- 
Peter Mount [EMAIL PROTECTED]
PostgreSQL JDBC Driver: http://www.retep.org.uk/postgres/
RetepPDF PDF library for Java: http://www.retep.org.uk/pdf/

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]