Native UltraLite for Java User's Guide
Understanding UltraLite Development
Accessing and manipulating data with the Table API
At any time, a Table object is positioned at one of the following positions:
Before the first row of the table.
On a row of the table.
After the last row of the table.
If the Table object is positioned on a row, you can use one of a set of methods appropriate for the data type to access the value of each column. These methods take the column ID as argument. For example, the following code retrieves the value of the lname column, which is a character string:
short lname = t.schema.getColumnID( "lname" ); String lastname = t.getString( lname );
The following code retrieves the value of the cust_id column, which is an integer:
short cust_id = t.schema.getColumnID( "cust_id" ); int id = t.getInt( cust_id );
In addition to the methods for retrieving values, there are methods for setting values. These take the column ID and the value as arguments. For example:
t.setString( lname, "Kaminski" );
By assigning values to these properties you do not alter the value of the data in the database. You can assign values to the properties even if you are before the first row or after the last row of the table, but it is an error to try to access data when the current row is at one of these positions, for example by assigning the property to a variable.
// This code is incorrect tCustomer.moveBeforeFirst(); id = tCustomer.getInt( cust_id );
The method you choose must match the data type you wish to assign. UltraLite automatically casts database data types where they are compatible, so that you could use the getString method to fetch an integer value into a string variable, and so on.