RE: [JDBC] string conversion patch

From: Peter Mount <petermount(at)maidstone(dot)gov(dot)uk>
To: "'wrobell'" <wrobell(at)posexperts(dot)com(dot)pl>, pgsql-patches(at)postgresql(dot)org
Subject: RE: [JDBC] string conversion patch
Date: 2000-11-20 08:12:23
Message-ID: 1B3D5E532D18D311861A00600865478CF1B576@exchange1.nt.maidstone.gov.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Applied...

--
Peter Mount
Enterprise Support Officer, Maidstone Borough Council
Email: petermount(at)maidstone(dot)gov(dot)uk
WWW: http://www.maidstone.gov.uk
All views expressed within this email are not the views of Maidstone Borough
Council

-----Original Message-----
From: wrobell [mailto:wrobell(at)posexperts(dot)com(dot)pl]
Sent: Friday, November 17, 2000 6:02 PM
To: pgsql-patches(at)postgresql(dot)org
Subject: [PATCHES] [JDBC] string conversion patch

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(at)posexperts(dot)com(dot)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 ------------

Browse pgsql-patches by date

  From Date Subject
Next Message wrobell 2000-11-20 11:43:01 [JDBC] timestamp parsing
Previous Message webmaster 2000-11-18 07:32:33 New Search Engine Requires Your Input.