Re: Problem with updateRow()

From: Dave Cramer <Dave(at)micro-automation(dot)net>
To: David Hooker <dhooker(at)bTrade(dot)com>
Cc: "pgsql-jdbc(at)postgresql(dot)org" <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Problem with updateRow()
Date: 2003-03-20 01:19:26
Message-ID: 1048123166.1112.54.camel@inspiron.cramers
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

David,

The updateable result set is really only supported for very simple
tables, and keys, I suppose it could deal with composite keys, but this
isn't the intention AFAIK. At the very least you would have to select
both columns of the key to have it work though.

There is a simple solution for you however, add the oid to your select.

ie select oid, filename, ...

and let me know if it works.

Dave
On Wed, 2003-03-19 at 19:58, David Hooker wrote:
> Oh, I forgot to mention that I AM creating my Statement correctly I
> think:
>
> Statement stmt =
> conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
> ResultSet.CONCUR_UPDATABLE);
>
> -----Original Message-----
> From: David Hooker
> Sent: Wednesday, March 19, 2003 6:55 PM
> To: pgsql-jdbc(at)postgresql(dot)org
> Subject: [JDBC] Problem with updateRow()
>
>
> I'm using PostgreSQL 7.3.1 server, and the pg73jdbc2.jar file from the
> website (file dated 2/13/2003 on my machine).
>
> I have in my code a select statement like this:
>
> String sql = "SELECT FILENAME, BOUNDARY FROM " + tableName + "
> WHERE NAME = '" + name + "' AND CONTEXT = '" + context + "'";
> logger.finest("SQL: " + sql);
> ResultSet result = stmt.executeQuery(sql);
>
> Later in my code I have this:
>
> while (result.next())
> {
> // ...
> result.updateString("BOUNDARY", event.getBoundary());
> result.updateRow();
> updated = true;
> }
>
> Here's the error I get:
>
> java.sql.SQLException: No Primary Keys
>
> Here's what the tables look like in psql:
>
> simpletest=# \d lfs_mappings_559
> Table "lfs_mappings_559"
> Attribute | Type | Modifier
> ----------------+------------------------+----------
> name | character varying(40) | not null
> context | character varying(80) | not null
> filename | character varying(300) | not null
> boundary | character varying(50) |
> insertion_time | real | not null
> can_purge | character varying(8) |
> Index: lfs_mappings_559_pkey
>
> simpletest=# \d lfs_mappings_559_pkey
> Index "lfs_mappings_559_pkey"
> Attribute | Type
> -----------+-----------------------
> name | character varying(40)
> context | character varying(80)
> unique btree (primary key)
>
> simpletest=#
>
> Why is this happening? Are updateable resultSets not supported?
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
--
Dave Cramer <Dave(at)micro-automation(dot)net>

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Carlos Correia 2003-03-20 01:21:49 Re: JDBC driver, PGSQL 7.3.2 and accents characters
Previous Message David Hooker 2003-03-20 00:58:43 Re: Problem with updateRow()