samples/livedb/test/org/apidesign/livedb/example/package-info.java
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 16 Jul 2010 23:35:08 +0200
branchlivedb
changeset 359 9d430d9bc4b1
parent 357 837370f791ba
child 361 6507a9474b6d
permissions -rw-r--r--
Creating the database in Ant. Placing it on a test classpath. Test test now checks real DB content.
     1 
     2 
     3 @LiveDB(
     4     classname="Age", password="j1", user="j1",
     5     query="select * from APP.AGE", 
     6     url="jdbc:derby:classpath:db"
     7 )
     8 package org.apidesign.livedb.example;
     9 
    10 import org.apidesign.livedb.LiveDB;