You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kexi/examples/update_sql_files.sh

22 lines
558 B

#!/bin/sh
# Updates .sql files using .kexi files
# Only .sql file that is older than .kexi file is recreated.
# ksqlite is needed on the PATH
KEXISQL3PATH=../3rdparty/kexisql3/src/.libs/
PATH=$PATH:$KEXISQL3PATH
LD_LIBRARY_PATH=$KEXISQL3PATH:$KEXISQL3PATH
which ksqlite > /dev/null || exit 1
for f in `ls -1 *.kexi` ; do
if test -f $f.sql -a ! $f.sql -ot $f ; then
echo "Local $f.sql is newer than $f - skipping it"
continue
fi
echo -n "Creating $f.sql ... "
echo "vacuum;" | ksqlite $f
echo .dump | ksqlite $f > $f.sql || exit 1
echo "OK"
done