Re: Patch to reduce the number of messages to translate

Поиск
Список
Период
Сортировка
От Xavier Poinsard
Тема Re: Patch to reduce the number of messages to translate
Дата
Msg-id 41C95BDE.2030108@free.fr
обсуждение исходный текст
Ответ на Re: Patch to reduce the number of messages to translate  ("Xavier Poinsard" <xpoinsard@free.fr>)
Ответы Re: Patch to reduce the number of messages to translate
Список 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 по дате отправления:

Предыдущее
От: Kris Jurka
Дата:
Сообщение: Re: CallableStatement: java.sql.Types=12 however type
Следующее
От: Kris Jurka
Дата:
Сообщение: Re: Bug in JDBC-Driver?