Adjusted to show side effects and their handling
When dealing with static buffers, successive calls point
to the same memory location and overwrite formers ones...
committer: Markus Bröker <mbroeker@largo.homelinux.org>
package org.homelinux.largo.app;
import org.homelinux.largo.sql.client.DBClient;
public class App {
public static void main (String args[]) {
try {
DBClient db = new DBClient ();
db.query ("select * from euroleague order by team");
while (db.hasNext ()) {
System.out.println (db.getColumn (1));
}
db.close ();
} catch (Exception e) {
e.printStackTrace ();
}
}
}