Java Code Examples for javax.sql.rowset.serial.SQLInputImpl#readObject()

The following examples show how to use javax.sql.rowset.serial.SQLInputImpl#readObject() . 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: SQLInputImplTests.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 2
Source File: SQLInputImplTests.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 3
Source File: SQLInputImplTests.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 4
Source File: SQLInputImplTests.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 5
Source File: SQLInputImplTests.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 6
Source File: SQLInputImplTests.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 7
Source File: SQLInputImplTests.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 8
Source File: SQLInputImplTests.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 9
Source File: SQLInputImplTests.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 10
Source File: SQLInputImplTests.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 11
Source File: SQLInputImplTests.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 12
Source File: SQLInputImplTests.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 13
Source File: SQLInputImplTests.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 14
Source File: SQLInputImplTests.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 15
Source File: SQLInputImplTests.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 16
Source File: SQLInputImplTests.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}
 
Example 17
Source File: SQLInputImplTests.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test05() throws Exception {
    Object[] values = {hero};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();
    assertTrue(hero.equals(o));

}
 
Example 18
Source File: SQLInputImplTests.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test()
public void test11() throws Exception {
    Object[] attributes = new Object[]{"Bruce", "Wayne", 1939,
        "Batman"};
    map.put(sqlType, Class.forName("util.SuperHero"));
    Struct struct = new StubStruct(sqlType, attributes);
    Object[] values = {struct};
    SQLInputImpl sqli = new SQLInputImpl(values, map);
    Object o = sqli.readObject();

    assertTrue(hero.equals(o));

}