Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 12.0.0 » UltraLiteJ » Using UltraLiteJ » Developing UltraLiteJ applications » Accessing and modifying data using SQL

 

Retrieving data using SELECT

You can retrieve data using the executeQuery method of a PreparedStatement, which queries the database with a user-defined SQL statement. This method returns the query result as a ResultSet. The ResultSet can then be traversed to fetch the queried data.

 Navigating the ResultSet object
 Retrieving data using a ResultSet