Re: [JDBC] Re: ? (question mark) characters

2001-08-31 Thread Tony Grant
On Thu, 2001-08-30 at 18:41, Barry Lind wrote: Ricardo, Is your database compiled for multibyte support? And what character set is the database you are connecting to created with? (to get the database character set do a 'psql -l'). If the answer to the first question is no or the

Re: [JDBC] Dúvida

2001-08-31 Thread Gunnar Rønning
Alan, The language of this list is English. We have a hard time understanding Portuguese. If you don't understand English, but do understand Spanish I would like to suggest that you check out the following website for documentation in Spanish : http://users.servicios.retecal.es/rsantos/

[JDBC] truncated InputStream returned with getAsciiInputStream()

2001-08-31 Thread Isabelle Therrien
Hi I've seen a couple of discussion about this subject, and I wonder if you could help me finding a workaround for my problem too. I work with big XML documents, around 12000 to 15000 characters. Since these documents were occasionnally causing me performance problems during store operations,

Re: [JDBC] truncated InputStream returned with getAsciiInputStream()

2001-08-31 Thread Rene Pijlman
On Thu, 30 Aug 2001 18:24:30 -0400, you wrote: So now, to store my data in the database, I use BLOB instead of TEXT. It works fine, my data is stored and retreived without any problem with method set and getAsciiStream()... until there is a byte with value -1 in my Stream. If the 43rd byte is

Re: [JDBC] truncated InputStream returned with getAsciiInputStream()

2001-08-31 Thread Barry Lind
Is there a reason you are not using getBinaryStream()? You can't read a binary file with and AsciiStream. thanks, --Barry Isabelle Therrien wrote: Hi I've seen a couple of discussion about this subject, and I wonder if you could help me finding a workaround for my problem too. I work

Re: [JDBC] Read transactions don't work on 7.0.x db's

2001-08-31 Thread Barry Lind
Dave, The multiple statements in one call is there for performance reasons. Please don't remove it entirely since it works fine in 7.1 and 7.2. Instead your fix should be conditional based on server version: if (autoCommit) ExecSQL(end); else { ifMinumumServerVersion(7.1) {

Re: [JDBC] Read transactions don't work on 7.0.x db's Disregard my other patch

2001-08-31 Thread Dave Cramer
The first one considered everything changed ? I also fixed the rollback method in this one, assuming it was broken the same way Dave Connection.patch ---(end of broadcast)--- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]