Re: NULL Blob column error - PATCH FIX - Mailing list pgsql-jdbc

From Barry Lind
Subject Re: NULL Blob column error - PATCH FIX
Date
Msg-id 3D7ED81D.7040401@xythos.com
Whole thread Raw
In response to NULL Blob column error  ("David Wall" <d.wall@computer.org>)
List pgsql-jdbc
Patch applied.

--Barry

David Wall wrote:
> Originally I thought this was going to be worse than I thought since I'm not
> familiar with the fastpath code at all. However, a check of ResultSet.java
> shows that the null check simply was not being done for getBlob().
> Therefore, this patch for 7.2.2 will resolve the "FastPath call returned
> ERROR:  inv_open: large object 0 not found" exception when retrieving
> Blob/OID that is NULL.  I noted that this bug remains in the latest CVS as
> well.
>
> [postgresql@dev1 jdbc2]$ diff -c ResultSet.orig ResultSet.java
> *** ResultSet.orig      Sat Jan  5 14:26:22 2002
> --- ResultSet.java      Tue Sep 10 11:03:11 2002
> ***************
> *** 931,936 ****
> --- 931,940 ----
>
>         public Blob getBlob(int i) throws SQLException
>         {
> +               wasNullFlag = (this_row[i - 1] == null);
> +               if (wasNullFlag)
> +                       return null;
> +
>                 return new org.postgresql.largeobject.PGblob(connection,
> getInt(i));
>         }
>
>
> David
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly
>


pgsql-jdbc by date:

Previous
From: Curt Sampson
Date:
Subject: Re: little off-topic: stored procedures
Next
From: Barry Lind
Date:
Subject: Re: BlobOutputStream patch and related patches