Package org.apache.jena.jdbc.metadata.results

Examples of org.apache.jena.jdbc.metadata.results.MetaResultSet.absolute()


    public void meta_result_set_movement_04() throws SQLException {
        MetaResultSet results = createMetaResultSet(1);
        Assert.assertTrue(results.isBeforeFirst());

        // Move to absolute row
        Assert.assertTrue(results.absolute(1));
        Assert.assertTrue(results.isFirst());
        Assert.assertFalse(results.isBeforeFirst());
        Assert.assertTrue(results.isLast());
        Assert.assertFalse(results.isAfterLast());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.