Sophie

Sophie

distrib > Mandriva > 2010.1 > x86_64 > media > main-release > by-pkgid > 71c35fd6fde5117fcf04ecf08ef852be > files > 8

hsqldb-manual-1.8.0.10-0.0.4mdv2010.1.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!--

A patch for storing a readonly hsqldb database in a Jar was contributed by Brendan Ryan
and has been incorporated into the code base. Additional work on connection URL
allow more uniform access to this feature.

The steps required are as follows:

Ensure the database does not contain CACHED or TEXT tables.
Make the database radonly after a SHUTDOWN.
Include the two database files *.properties and *.script in a directory in your Jar
Access the database with the jdbc:hsqldb:res: protocol

The relative location of the database as taken from the jdbc url is used.
For example, if the url is specified as "jdbc:hsqldb:res:/testdata/felder"
then the database is loaded from the "/testdata/" directory in the jar
and the database file names are "felder.properties" and
felder.script" in that directory.

Brendan Ryan wrote (text and sample changed):

I have made a small change to allow a readonly hsqldb database (.script and
.properties) to be stored in a JAR file so that it can be used with JWS.

A sample jnlp file is given below.

I hope the code is useful for someone.

Regards
Brendan Ryan
-->

<jnlp spec="1.0+" codebase="file:///c:/ERM/internet/build/pass/">
<information>
  <title>Mask Builder</title>
  <vendor>PUI</vendor>
  <homepage href="http://www.pi-ag.com" />
  <description>Demonstration of JNLP</description>
  <icon href="raptor.gif"/>
</information>
<offline-allowed/>
<security>
  <all-permissions/>
</security>
<resources>
  <j2se version="1.4+" />
  <jar href="pass-maskbuilder.jar"/>
  <jar href="jaxb-rt-1.0-ea.jar"/>
  <jar href="hsqldb.jar"/>
  <jar href="testdb.jar"/>
  <property name="jdbc.drivers" value="org.hsqldb.jdbcDriver"/>
  <property name="jdbc.url" value="jdbc:hsqldb:res:/testdata/felder"/>
  <property name="jdbc.user" value="sa"/>
  <property name="jdbc.password" value="" />
</resources>
<application-desc />
</jnlp>