Package org.idevlab.rjc

Examples of org.idevlab.rjc.Session


    return factory;
  }

  @Test
  public void testRaw() throws Exception {
    Session jr = (Session) factory.getConnection().getNativeConnection();

    System.out.println(jr.dbSize());
    System.out.println(jr.exists("foobar"));
    jr.set("foobar", "barfoo");
    System.out.println(jr.get("foobar"));
  }
View Full Code Here

TOP

Related Classes of org.idevlab.rjc.Session

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.