view contrib/make_flys_release/h2/createDatacage.sh @ 4217:08b6458909a9

The service 'DischargeTablesOverview' now accepts the official number of a gauge, too. The service first tries to parse the official number (long value). If it fails, it it assumed that the the name of the gauge is specified.
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 23 Oct 2012 11:58:47 +0200
parents 9d404069f361
children 3ba2917e49d3
line wrap: on
line source
#!/bin/bash

mkdir datacagedb

DIR=`dirname $0`
DIR=`readlink -f "$DIR"`

CLASSPATH=
for l in `find "$DIR" -name \*.jar -print`; do
   CLASSPATH=$CLASSPATH:$l
done

export CLASSPATH

java org.h2.tools.RunScript \
    -url jdbc:h2:`readlink -f datacagedb`/datacage \
    -script $DIR/datacage.sql

http://dive4elements.wald.intevation.org