view contrib/make_flys_release/h2/createDatacage.sh @ 5200:42bb6ff78d1b 2.9.11

Directly set the connectionInitSqls on the datasource Somehow the factory fails to set the connectionInitSqls if we add it to the dbcpProperties. So we now set it directly
author Andre Heinecke <aheinecke@intevation.de>
date Fri, 08 Mar 2013 11:48:33 +0100
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