|
From: Ken G. <kg...@sp...> - 2003-05-29 00:17:15
|
I'm checking in a bunch of updates right now. It seems like the console in 1.0 could not possibly work. I've checked in what I needed to make it work. One change I might need some verification on. In GenericSqlJournal.readDelta, I changed Blob blob = rset.getBlob(1); istream = blob.getBinaryStream(); to istream = rset.getBinaryStream(1); The use of Blob seems unnecessary to me because we are not doing random access on that field. I am assuming that this change will not break anything for MySQL or Oracle users, but I cannot be sure. Please test it. I am using PostgreSQL, and I defined that column as a bytea which is a (virtually) unlimited length binary field but is not a BLOB. Ken |