Re: Help: ResultSet..insertRow() not coping with explicit

From: Kris Jurka <books(at)ejurka(dot)com>
To: Jim Wright <jimw(at)paneris(dot)org>
Cc: "pgsql-jdbc(at)postgresql(dot)org" <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Help: ResultSet..insertRow() not coping with explicit
Date: 2003-09-25 00:08:55
Message-ID: Pine.LNX.4.33.0309242007330.22961-100000@leary.csoft.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Wed, 24 Sep 2003, Jim Wright wrote:
> ---
> src/interfaces/jdbc/org/postgresql/test/jdbc2/UpdateableResultTest.java.~1.7.~
> 2002-09-11 07:38:45.000000000 +0200
> +++
> src/interfaces/jdbc/org/postgresql/test/jdbc2/UpdateableResultTest.java
> 2003-09-24 07:19:39.000000000 +0200
> @@ -66,6 +66,17 @@
>
> rs.close();
>
> + rs = st.executeQuery( "select oid, * from updateable");
> +
> + assertNotNull( rs );
> + rs.moveToInsertRow();
> + rs.updateInt( 1, 1 );
> + rs.updateString( 2, "jim" );
> + rs.updateString( 3, "4gotenit" );
> + rs.insertRow();
> +
> + rs.close();
> +
> rs = st.executeQuery("select id1, id, name, name1 from
> updateable, second" );
> try
> {
>

Here the updateInt(1,1) is trying to update the oid column which is not
allowed and giving the error you see.

Kris Jurka

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2003-09-25 00:37:27 Re: Help: ResultSet..insertRow() not coping with explicit
Previous Message Richard Huxton 2003-09-24 17:28:06 Re: sequence's plpgsql