Java Code Examples for javax.sql.rowset.serial.SerialClob#getCharacterStream()

The following examples show how to use javax.sql.rowset.serial.SerialClob#getCharacterStream() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SerialClobTests.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void test36() throws Exception {
    SerialClob sc = new SerialClob(chars);
    Reader r = sc.getCharacterStream();
    for (char c : chars) {
        char val = (char) r.read();
        assertTrue(c == val, val + " does not match " + c);
    }
}
 
Example 2
Source File: SerialClobTests.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Test(enabled = false)
public void test37() throws Exception {
    SerialClob sc = new SerialClob(chars);
    String expected = "ello w";
    Reader r = sc.getCharacterStream(2, 6);
    for (char c : expected.toCharArray()) {
        char val = (char) r.read();
        assertTrue(c == val, val + " does not match " + c);
    }
}
 
Example 3
Source File: SerialClobTests.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void test36() throws Exception {
    SerialClob sc = new SerialClob(chars);
    Reader r = sc.getCharacterStream();
    for (char c : chars) {
        char val = (char) r.read();
        assertTrue(c == val, val + " does not match " + c);
    }
}
 
Example 4
Source File: SerialClobTests.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test18() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(100, 5);
}
 
Example 5
Source File: SerialClobTests.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test18() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(100, 5);
}
 
Example 6
Source File: SerialClobTests.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void test22() throws Exception {
    SerialClob sc = new SerialClob(chars);
    Reader is = sc.getCharacterStream();
    assertTrue(is != null);
}
 
Example 7
Source File: SerialClobTests.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void test21() throws Exception {
    SerialClob sc = new SerialClob(new StubClob());
    Reader is = sc.getCharacterStream();
    assertTrue(is != null);
}
 
Example 8
Source File: SerialClobTests.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test14() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(-1, 5);
}
 
Example 9
Source File: SerialClobTests.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test18() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(100, 5);
}
 
Example 10
Source File: SerialClobTests.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test17() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(1, 0);
}
 
Example 11
Source File: SerialClobTests.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test17() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(1, 0);
}
 
Example 12
Source File: SerialClobTests.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test18() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(100, 5);
}
 
Example 13
Source File: SerialClobTests.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test14() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(-1, 5);
}
 
Example 14
Source File: SerialClobTests.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test02() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.free();
    sc.getCharacterStream();
}
 
Example 15
Source File: SerialClobTests.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test01() throws Exception {
    SerialClob sc = new SerialClob(new StubClob());
    sc.free();
    sc.getCharacterStream();
}
 
Example 16
Source File: SerialClobTests.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void test22() throws Exception {
    SerialClob sc = new SerialClob(chars);
    Reader is = sc.getCharacterStream();
    assertTrue(is != null);
}
 
Example 17
Source File: SerialClobTests.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test01() throws Exception {
    SerialClob sc = new SerialClob(new StubClob());
    sc.free();
    sc.getCharacterStream();
}
 
Example 18
Source File: SerialClobTests.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test15() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(0, 5);
}
 
Example 19
Source File: SerialClobTests.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test03() throws Exception {
    SerialClob sc = new SerialClob(new StubClob());
    sc.free();
    sc.getCharacterStream(1, 5);
}
 
Example 20
Source File: SerialClobTests.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test(expectedExceptions = SerialException.class)
public void test17() throws Exception {
    SerialClob sc = new SerialClob(chars);
    sc.getCharacterStream(1, 0);
}