Actually, just having an embedded database is pretty simple. If you look at the source for the simple class DatabaseManager ( http://wiki.apache.org/db-derby/DatabaseManagerSource) it lays it all out for you but in essence you need to:
1. load the driver (static block at the end) 2. create a proper URL for the database (function creatURL) 3. connect to the database (function connectToDatabase) Donald On Wed, Mar 26, 2008 at 10:53 PM, Ricardo Seromenho <[EMAIL PROTECTED]> wrote: > Hello, > I am using NetBeans IDE 6.0 and having some difficult to make a simple > app with a embedded database. > > What I am able to do is an application with a database but not ebedded... > > So, what I need to do to embedde that database on the application? >
