Re: Patch to reduce the number of messages to translate - Mailing list pgsql-jdbc

From Xavier Poinsard
Subject Re: Patch to reduce the number of messages to translate
Date
Msg-id 41C95BDE.2030108@free.fr
Whole thread Raw
In response to Re: Patch to reduce the number of messages to translate  ("Xavier Poinsard" <xpoinsard@free.fr>)
Responses Re: Patch to reduce the number of messages to translate  (Kris Jurka <books@ejurka.com>)
List pgsql-jdbc
Just discovered a small typo :


Index: TimestampUtils.java
===================================================================
RCS file:
/usr/local/cvsroot/pgjdbc/pgjdbc/org/postgresql/jdbc2/TimestampUtils.java,v
retrieving revision 1.9
diff -u -r1.9 TimestampUtils.java
--- TimestampUtils.java    22 Dec 2004 09:23:57 -0000    1.9
+++ TimestampUtils.java    22 Dec 2004 11:32:35 -0000
@@ -158,7 +158,7 @@
                  }
              }
          } catch (NumberFormatException nfe) {
-            throw new PSQLException(GT.tr("Bad value for type {0} :
{1}}", new Object[]{type,s}), PSQLState.BAD_DATETIME_FORMAT, nfe);
+            throw new PSQLException(GT.tr("Bad value for type {0} :
{1}", new Object[]{type,s}), PSQLState.BAD_DATETIME_FORMAT, nfe);
          }

          return nanos;


pgsql-jdbc by date:

Previous
From: Kris Jurka
Date:
Subject: Re: CallableStatement: java.sql.Types=12 however type
Next
From: Kris Jurka
Date:
Subject: Re: Bug in JDBC-Driver?