javadb/org/homelinux/largo/app/App.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 27 Apr 2010 14:51:02 +0200
changeset 123 07b2c0b991af
parent 100 a6d2add085d7
child 135 f837cf975e95
permissions -rw-r--r--
ClientDriver for remote access and EmbeddedDriver for local access The default constructor should always use the simplest, possible way to connect to an embedded database. 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 ();
		}
	}
}