Re: JDBC SQLCodes or Error Numbers - Or how to handle errors - Mailing list pgsql-jdbc

From Barry Lind
Subject Re: JDBC SQLCodes or Error Numbers - Or how to handle errors
Date
Msg-id 3BDDA3BC.4000104@xythos.com
Whole thread Raw
In response to JDBC SQLCodes or Error Numbers - Or how to handle errors  (User One <user1@fictionary.org>)
List pgsql-jdbc
There are two related issues here.  The first is that the database
server does not yet support error codes.  Therefore the JDBC driver also
doesn't support them.  This is on the todo list for the server but
didn't get done in 7.2.  You can still get the error message and look at
it, but this isn't a good alternative to proper error code support.

The second issue is that with postgres you may need to rethink your
strategy here.  Once postgres encounters an error it aborts the
transaction.  This means you generally can't trap an error and continue
processing.  When you trap an error you will need to rollback the
current transaction, start a new transaction and then continue processing.

thanks,
--Barry


User One wrote:

> I'm new to postgresql and it's JDBC driver, although an old hand a
> relation databases.  I'm trying to rely on past practices in developing
> some code using Java and postgresql.
>
> I'm trying to do a INSERT into a table with the full knowledge that I
> might be trying to insert a duplicate row (which won't be allowed by the
> Primary Key).  Since 80% of the inserts will succeed (because I don't
> expect many duplicates) I didn't want to waste programming time or
> runtime by doing a select to first see if the data existed.  I'm used to
> just doing the insert and catching the SQLCODE -803 on DB2 to know that
> the row I'm trying to insert already exists.
>
> Is there an easy way to do this using Postgresql and JDBC?
>
> Postgresql version is 7.1.3
> JDBC driver is the one that I compiled from the 7.1.3 installation
>
> I'm using the Java SDK 1.3.1_01
>
> -- So is my only hope trying to "match" the error text and determine
> what when wrong?
>
> Thanks,
> Henry
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
>
>



pgsql-jdbc by date:

Previous
From: "Dave Cramer"
Date:
Subject: Re: DatabaseMetaData.getTables()
Next
From: "Dave Cramer"
Date:
Subject: Re: Urgent problems with my conection