[jira] Commented: (DERBY-1286) Fill in Clob methods required for JDBC3 compliance

2006-07-31 Thread Kristian Waagan (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-1286?page=comments#action_12424527 ] Kristian Waagan commented on DERBY-1286: Just want to point out that the method Clob.getCharacterStream(long,long) was added in JDBC4. > Fill in Clob me

Re: [jira] Commented: (DERBY-1286) Fill in Clob methods required for JDBC3 compliance

2006-05-30 Thread Kristian Waagan
Lance J. Andersen wrote: This is what we discussed in the EG and agreed to in this regards consider a Clob, aClob, containing the following value for each setString() invocation below. I tried doing this in Derby, and I do see the behavior Dan pointed out in his mail (see below). ABCDEFG

Re: [jira] Commented: (DERBY-1286) Fill in Clob methods required for JDBC3 compliance

2006-05-25 Thread Lance J. Andersen
this is in the javadocs for jdbc 4.0 Andrew McIntyre wrote: On 5/24/06, Lance J. Andersen <[EMAIL PROTECTED]> wrote: This is what we discussed in the EG and agreed to in this regards consider a Clob, aClob, containing the following value for each setString() invocation below. ABCDEFG A.

Re: [jira] Commented: (DERBY-1286) Fill in Clob methods required for JDBC3 compliance

2006-05-24 Thread Andrew McIntyre
On 5/24/06, Lance J. Andersen <[EMAIL PROTECTED]> wrote: This is what we discussed in the EG and agreed to in this regards consider a Clob, aClob, containing the following value for each setString() invocation below. ABCDEFG A. aClob.setString(2, "XX") Result: AXXDEFG B. aClob.setStrin

Re: [jira] Commented: (DERBY-1286) Fill in Clob methods required for JDBC3 compliance

2006-05-24 Thread Lance J. Andersen
This is what we discussed in the EG and agreed to in this regards consider a Clob, aClob,  containing the following value for each setString() invocation below. ABCDEFG A. aClob.setString(2, "XX") Result:   AXXDEFG B. aClob.setString(1, "XX") Result:  XXCDEFG   C. aClob.setString(8

[jira] Commented: (DERBY-1286) Fill in Clob methods required for JDBC3 compliance

2006-05-10 Thread Daniel John Debrunner (JIRA)
[ http://issues.apache.org/jira/browse/DERBY-1286?page=comments#action_12378987 ] Daniel John Debrunner commented on DERBY-1286: -- Is there a good definition in the specification as to how the Clob.setXXX methods are defined to work? Section 16.