本文整理汇总了Java中javax.sql.rowset.serial.SerialClob.free方法的典型用法代码示例。如果您正苦于以下问题:Java SerialClob.free方法的具体用法?Java SerialClob.free怎么用?Java SerialClob.free使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.sql.rowset.serial.SerialClob
的用法示例。
在下文中一共展示了SerialClob.free方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: test09
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test09() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.position(new StubClob(), 1);
}
示例2: test01
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test01() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.getCharacterStream();
}
示例3: test02
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test02() throws Exception {
SerialClob sc = new SerialClob(chars);
sc.free();
sc.getCharacterStream();
}
示例4: test11
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test11() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.setCharacterStream(5);
}
示例5: test04
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test04() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.getSubString(1, 1);
}
示例6: test05
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test05() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.truncate(1);
}
示例7: test06
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test06() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.getAsciiStream();
}
示例8: test12
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test12() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.setString(1, "hello");
}
示例9: test08
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test08() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.position("hello", 1);
}
示例10: test10
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test10() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.setAsciiStream(5);
}
示例11: test13
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test13() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.setString(1, "hello", 0, 5);
}
示例12: test
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test
public void test() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
}
示例13: test07
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test07() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.length();
}
示例14: test03
import javax.sql.rowset.serial.SerialClob; //导入方法依赖的package包/类
@Test(expectedExceptions = SerialException.class)
public void test03() throws Exception {
SerialClob sc = new SerialClob(new StubClob());
sc.free();
sc.getCharacterStream(1, 5);
}