javadb/org/homelinux/largo/app/App.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Wed, 26 May 2010 14:56:44 +0200
changeset 126 52722ac7693f
parent 123 07b2c0b991af
child 135 f837cf975e95
permissions -rw-r--r--
mysql_db: get not more than num_fields fields from a row I haven't tested the old approach, because i have never installed or used mysql. But it's nice to see that it actually works with this small patch. 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 ();
		}
	}
}