hsqldb-1.8.0.10.orig/ 0000755 0001750 0001750 00000000000 11020620763 012614 5 ustar rene rene hsqldb-1.8.0.10.orig/demo/ 0000755 0001750 0001750 00000000000 10264604522 013544 5 ustar rene rene hsqldb-1.8.0.10.orig/demo/runWebServer.sh 0000755 0001750 0001750 00000002141 10075542010 016523 0 ustar rene rene #!/bin/sh # ----------------------------------------------------- # Run with -help for usage. # If $JAVA_HOME is set, editing this script should not be required. # Send any questions to fchoong@user.sourceforge.net # ----------------------------------------------------- # the value set here will override the value passed by $JAVA_HOME or the -jdkhome switch jdkhome="" jargs="" thread_flag="" PRG=$0 # # resolve symlinks # while [ -h "$PRG" ]; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null` if expr "$link" : '^/' 2> /dev/null >/dev/null; then PRG="$link" else PRG="`dirname $PRG`/$link" fi done progdir=`dirname $PRG` progname=`basename $0` # ../ will lead us to the home dbhome="$progdir/.." # absolutize dbhome dbhome=`cd ${dbhome}; pwd` # # bring in needed functions . ${dbhome}/lib/functions #-------------------------------------------------------------------------------------------------------------- pre_main # # let's go # cd $dbhome/data exec "$jdkhome/bin/java" $thread_flag -classpath "$cp" $jargs "org.hsqldb.WebServer" "$@" # and we exit. hsqldb-1.8.0.10.orig/demo/runManager.sh 0000755 0001750 0001750 00000002154 10075541644 016211 0 ustar rene rene #!/bin/sh # ----------------------------------------------------- # Run with -help for usage. # If $JAVA_HOME is set, editing this script should not be required. # Send any questions to fchoong@user.sourceforge.net # ----------------------------------------------------- # the value set here will override the value passed by $JAVA_HOME or the -jdkhome switch jdkhome="" jargs="" thread_flag="" PRG=$0 # # resolve symlinks # while [ -h "$PRG" ]; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null` if expr "$link" : '^/' 2> /dev/null >/dev/null; then PRG="$link" else PRG="`dirname $PRG`/$link" fi done progdir=`dirname $PRG` progname=`basename $0` # ../ will lead us to the home dbhome="$progdir/.." # absolutize dbhome dbhome=`cd ${dbhome}; pwd` # # bring in needed functions . ${dbhome}/lib/functions #-------------------------------------------------------------------------------------------------------------- pre_main # # let's go # cd $dbhome/data exec "$jdkhome/bin/java" $thread_flag -classpath "$cp" $jargs "org.hsqldb.util.DatabaseManager" "$@" # and we exit. hsqldb-1.8.0.10.orig/demo/runManager.bat 0000644 0001750 0001750 00000000153 07550074034 016335 0 ustar rene rene cd ..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.util.DatabaseManager %1 %2 %3 %4 %5 %6 %7 %8 %9 hsqldb-1.8.0.10.orig/demo/memoryquery.html 0000644 0001750 0001750 00000002533 07550074034 017036 0 ustar rene rene
# Verifier error org/hsqldb/jdbcConnection.getTypeMap()Ljava/util/Map
This means the class java.util.Map was not found. In JDK 1.1, this class does not exist. When compiled for 1.2, there is a reference to this class required to conform to the JDBC 2.0 interface. This class itself is never used, but the reference is required anyway. It looks like most verifiers have no problems with this, but some have.
The solution for this problem is to recompile (at least the client part) for JDK 1.1. You will need to install JDK 1.1 before you can do this, then see:
Build / How to switch to JDK 1.1 hsqldb-1.8.0.10.orig/demo/servletdemo.html 0000644 0001750 0001750 00000003027 07550074034 016770 0 ustar rene rene
In this demo, the DatabaseManager uses the Servlet to access the database. The QueryTool is running inside the internet browser as an Applet.
This demo requires a servlet engine to be running and listening to port 8080. The hsqlServlet.java servlet should be installed on the servlet engine in the /examples/servlet/ directory.
On some browsers (Netscape 4.6?), the version compiled for JDK 1.2 does not work. In the Java Console (Communicator / Extras / Java Console) you will get something like:
# Verifier error org/hsqldb/jdbcConnection.getTypeMap()Ljava/util/Map
This means the class java.util.Map was not found. In JDK 1.1, this class does not exist. When compiled for 1.2, there is a reference this class required to conform the JDBC 2.0 interface. This class itself is never used, but the reference is required anyway. It looks like most verifiers have no problem with this, but some have.
The (only) solution for this problem is to recompile (at least the client part) for JDK 1.1. You will need to install JDK 1.1 before you can do this, then see:
Build / How to switch to JDK 1.1 hsqldb-1.8.0.10.orig/demo/runServer.sh 0000755 0001750 0001750 00000002136 10075542016 016077 0 ustar rene rene #!/bin/sh # ----------------------------------------------------- # Run with -help for usage. # If $JAVA_HOME is set, editing this script should not be required. # Send any questions to fchoong@user.sourceforge.net # ----------------------------------------------------- # the value set here will override the value passed by $JAVA_HOME or the -jdkhome switch jdkhome="" jargs="" thread_flag="" PRG=$0 # # resolve symlinks # while [ -h "$PRG" ]; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null` if expr "$link" : '^/' 2> /dev/null >/dev/null; then PRG="$link" else PRG="`dirname $PRG`/$link" fi done progdir=`dirname $PRG` progname=`basename $0` # ../ will lead us to the home dbhome="$progdir/.." # absolutize dbhome dbhome=`cd ${dbhome}; pwd` # # bring in needed functions . ${dbhome}/lib/functions #-------------------------------------------------------------------------------------------------------------- pre_main # # let's go # cd $dbhome/data exec "$jdkhome/bin/java" $thread_flag -classpath "$cp" $jargs "org.hsqldb.Server" "$@" # and we exit. hsqldb-1.8.0.10.orig/demo/runUtil.sh 0000755 0001750 0001750 00000002145 10075541604 015550 0 ustar rene rene #!/bin/sh # ----------------------------------------------------- # Run with -help for usage. # If $JAVA_HOME is set, editing this script should not be required. # Send any questions to fchoong@user.sourceforge.net # ----------------------------------------------------- # the value set here will override the value passed by $JAVA_HOME or the -jdkhome switch jdkhome="" jdkhome="" jargs="" thread_flag="" PRG=$0 # # resolve symlinks # while [ -h "$PRG" ]; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null` if expr "$link" : '^/' 2> /dev/null >/dev/null; then PRG="$link" else PRG="`dirname $PRG`/$link" fi done progdir=`dirname $PRG` progname=`basename $0` # ../ will lead us to the home dbhome="$progdir/.." # absolutize dbhome dbhome=`cd ${dbhome}; pwd` # # bring in needed functions . ${dbhome}/lib/functions #-------------------------------------------------------------------------------------------------------------- pre_main # # let's go # cd $dbhome/data exec "$jdkhome/bin/java" $thread_flag -classpath "$cp" $jargs "org.hsqldb.util.$@" # and we exit. hsqldb-1.8.0.10.orig/demo/memorydbmanager.html 0000644 0001750 0001750 00000002524 07550074034 017611 0 ustar rene rene
In this demo, all data is kept in memory.
The data will be lost if the program is closed.
The Database Manager and the database are running
inside the internet browser.
# Verifier error org/hsqldb/jdbcConnection.getTypeMap()Ljava/util/Map
This means the class java.util.Map was not found. In JDK 1.1, this class does not exist. When compiled for 1.2, there is a reference to this class required to conform to the JDBC 2.0 interface. This class itself is never used, but the reference is required anyway. It looks like most verifiers have no problem with this, but some have.
The solution for this problem is to recompile (at least the client part) for JDK 1.1. You will need to install JDK 1.1 before you can do this, then see:
Build / How to switch to JDK 1.1 hsqldb-1.8.0.10.orig/demo/runUtil.bat 0000644 0001750 0001750 00000000133 07550074034 015676 0 ustar rene rene cd ..\data @java -classpath ..\lib\hsqldb.jar org.hsqldb.util.%1 %2 %3 %4 %5 %6 %7 %8 %9 hsqldb-1.8.0.10.orig/demo/localhost_clientserver.html 0000644 0001750 0001750 00000002730 07550074034 021214 0 ustar rene rene
# Verifier error org/hsqldb/jdbcConnection.getTypeMap()Ljava/util/Map
This means the class java.util.Map was not found. In JDK 1.1, this class does not exist. When compiled for 1.2, there is a reference this class required to conform the JDBC 2.0 interface. This class itself is never used, but the reference is required anyway. It looks like most verifiers have no problem with this, but some have.
The (only) solution for this problem is to recompile (at least the client part) for JDK 1.1. You will need to install JDK 1.1 before you can do this, then see:
Build / How to switch to JDK 1.1
hsqldb-1.8.0.10.orig/demo/runManagerSwing.bat 0000644 0001750 0001750 00000000160 10203122753 017332 0 ustar rene rene cd ..\data
@java -classpath ..\lib\hsqldb.jar org.hsqldb.util.DatabaseManagerSwing %1 %2 %3 %4 %5 %6 %7 %8 %9
hsqldb-1.8.0.10.orig/demo/runServer.bat 0000644 0001750 0001750 00000000135 07550074034 016231 0 ustar rene rene cd ..\data
@java -classpath ../lib/hsqldb.jar org.hsqldb.Server %1 %2 %3 %4 %5 %6 %7 %8 %9
hsqldb-1.8.0.10.orig/demo/runWebServer.bat 0000644 0001750 0001750 00000000140 07550074034 016663 0 ustar rene rene cd ..\data
@java -classpath ..\lib\hsqldb.jar org.hsqldb.WebServer %1 %2 %3 %4 %5 %6 %7 %8 %9
hsqldb-1.8.0.10.orig/readme.txt 0000644 0001750 0001750 00000000616 11020522357 014615 0 ustar rene rene Readme File
June 2008
This package contains HSQLDB 1.8.0.10
HSQLDB is a relational database engine and a set of tools written in Java.The file index.html in this directory contains the list of directories with their contents.Documentation and license information can be found in the /doc directory.Project home page: http://hsqldb.orgPlease check the site periodically for updated versions.
hsqldb-1.8.0.10.orig/lib/ 0000755 0001750 0001750 00000000000 12121701730 013357 5 ustar rene rene hsqldb-1.8.0.10.orig/lib/functions 0000644 0001750 0001750 00000015540 07567747136 015353 0 ustar rene rene
# Bourne shell (and compatible) script, to be "source".
# $Id: functions,v 1.3 2002/11/23 18:28:17 unsaved Exp $
# functions used by the hsqldb Linux scripts
#
# using $JAVA_HOME
use_java_home()
{
# jdkhome is an unfortunate name, since it could just as well
# be a JRE home. That's probably why Sun calls it JAVA_HOME.
if [ ! -z "$JAVA_HOME" -a -z "$jdkhome" ] ; then
jdkhome=$JAVA_HOME
fi
} # use_java_home()
#
# parse arguments
#
parse_args() {
while [ $# -gt 0 ] ; do
# echo "Processing arg: '$1'"
case "$1" in
-h|-help) cat < OS
Q#G.1zϑBT:U1N&4_Al\DPK
Ѳ814& org/hsqldb/BaseTable.class]J@OccڭٸP~Ҍ1%&vfVě,:093_ AG6=t !7L$Js{E"n88+UYQ}:"ilTpZge13U'|0j
x=lF/9 -EsT<(ES91ycLiiղysp+7kwPe_ VX-pkwZy:
PK
Ѳ8qV org/hsqldb/CachedDataRow.classT[wUN24ɡJ-dDDH7KAmMC25 |/}е\?'P&ksٷo S&1 5.z
KXz+|/onwk Z
^x˻:n%0t/ۛ0yVʕ+ōܪQQ[WVb9Ɩw[TɹMUlש%Cnn)8ՆWp