new file mode 100644
--- /dev/null
+++ b/javadb/org/homelinux/largo/app/App.java
@@ -0,0 +1,25 @@
+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 (
+ "org.apache.derby.jdbc.EmbeddedDriver",
+ "jdbc:derby:clubstatistik",
+ null, null
+ );
+
+ db.query ("select * from euroleague order by team");
+
+ while (db.hasNext ()) {
+ System.out.println (db.getColumn (1));
+ }
+
+ db.close ();
+ } catch (Exception e) {
+ e.printStackTrace ();
+ }
+ }
+}