use of org.apache.jena.jdbc.results.metadata.columns.FloatColumn in project jena by apache.
the class TestMetaResultSet method meta_result_set_float_02.
/**
* Test retrieving meta column values
*
* @throws SQLException
*/
@Test
public void meta_result_set_float_02() throws SQLException {
MetaResultSet results = new MetaResultSet(new ColumnInfo[] { new FloatColumn("Test", ResultSetMetaData.columnNullable) }, new Object[][] { { null } });
Assert.assertTrue(results.next());
float value = results.getFloat(1);
Assert.assertEquals(0f, value, 0f);
Assert.assertTrue(results.wasNull());
Assert.assertFalse(results.next());
results.close();
Assert.assertTrue(results.isClosed());
}
use of org.apache.jena.jdbc.results.metadata.columns.FloatColumn in project jena by apache.
the class TestMetaResultSet method meta_result_set_float_01.
/**
* Test retrieving meta column values
*
* @throws SQLException
*/
@Test
public void meta_result_set_float_01() throws SQLException {
MetaResultSet results = new MetaResultSet(new ColumnInfo[] { new FloatColumn("Test", ResultSetMetaData.columnNullable) }, new Object[][] { { 0.123f } });
Assert.assertTrue(results.next());
float value = results.getFloat(1);
Assert.assertEquals(0.123f, value, 0f);
Assert.assertFalse(results.wasNull());
Assert.assertFalse(results.next());
results.close();
Assert.assertTrue(results.isClosed());
}
Aggregations