[JDBC] string conversion patch - Mailing list pgsql-patches

From wrobell
Subject [JDBC] string conversion patch
Date
Msg-id 20001117190134.J1963@pred.posexperts.com.pl
Whole thread Raw
List pgsql-patches
This patch should be applied against current pgsql cvs tree
in src/interfaces directory. Current jdbc version saves
strings in client encoding, i.e. when software runs
on Windows then strings are saved in CP1250 not in Latin2
as it should be (when database encoding is Latin2).

The patch fixes the problem - strings are stored in database encoding.

  wrobell <wrobell@posexperts.com.pl>


-------- cut here ------------
diff -Nur jdbc.old/org/postgresql/Connection.java jdbc/org/postgresql/Connection.java
--- jdbc.old/org/postgresql/Connection.java    Thu Nov 16 18:25:52 2000
+++ jdbc/org/postgresql/Connection.java    Fri Nov 17 18:26:01 2000
@@ -363,8 +363,7 @@
         try
         {
             pg_stream.SendChar('Q');
-            buf = sql.getBytes();
-            pg_stream.Send(sql.getBytes());
+            pg_stream.Send(buf);
             pg_stream.SendChar(0);
             pg_stream.flush();
         } catch (IOException e) {
-------- cut here ------------

pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: patch for darwin/macosx-publicbeta
Next
From: webmaster@cgiscriptsonline.com
Date:
Subject: New Search Engine Requires Your Input.