From: | Daniel Carlsson <daniel(dot)carlsson(at)gimlisoft(dot)se> |
---|---|
To: | pgsql-jdbc(at)postgresql(dot)org |
Subject: | Problem with bytea |
Date: | 2003-06-05 16:23:30 |
Message-ID: | buffalo1_3edf69b8947cd@webmail.buffalosoftware.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-jdbc |
Hi
When a fetch binary data from a bytea column the data gets messed up.
Se the attached code, postgresql returns 13744 bytes when it should be only 10000. After studing the output I saw that bytes representing common characters are fetched ok but bytes representing unusual characters such as special swedish characters are messed up. Is the binary data somewhere treated as character data? Could something else be the problem?
I use RedHat 8.0, Postgresql 7.3.2 and jdbc driver pg73jdbc3.jar released 26:th of may.
Code:
Connection c = DriverManager.getConnection(jdbc);
Statement s = c.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
ResultSet r;
byte b[] = new byte[10000];
for(int i=0;i<b.length;i++)
b[i] = (byte)(i%256);
/* Update bytea with 10000 bytes */
s.executeUpdate("update document set file_=null where documentid=12");
r = s.executeQuery("select file_,documentid from document where documentid=17");
r.next();
r.updateBytes(1,b);
r.updateRow();
/* Fetch the bytea value */
r = s.executeQuery("select file_,documentid from document where documentid=17");
r.next();
b = r.getBytes(1);
/* This outputs 13744 !?!? */
System.out.println("Length: " + b.length);
Med vänliga hälsningar
Daniel Carlsson
Gimlisoft AB
Email: daniel(dot)carlsson(at)gimlisoft(dot)se
Tel: 0709-744570, 031-189024
From | Date | Subject | |
---|---|---|---|
Next Message | Hale Pringle | 2003-06-05 18:56:25 | Re: Bad External Date Representation error for any date which |
Previous Message | Paul Thomas | 2003-06-05 10:10:16 | Re: Official JDBC driver release ? |