#!/bin/sh # ----------------------------------------------------------------------------- # # Runs sql scripts to update database from previous release. # # ----------------------------------------------------------------------------- # DB=$1 USER=$2 password=$3 echo Running 'run_parte' Script R-ISCTE-2007-02-21; function execute() { echo ---------------------------------------- $1 mysql -u$USER -f -p$password --default-character-set=latin1 $DB < $2 echo } function executeWithTempFile() { echo ---------------------------------------- $1 mysql -u$USER -f -p$password --default-character-set=latin1 $DB < $2 > ./R-ISCTE-2007-02-21/tmp.sql mysql -u$USER -f -p$password --default-character-set=latin1 $DB < ./R-ISCTE-2007-02-21/tmp.sql rm ./R-ISCTE-2007-02-21/tmp.sql echo } execute "Deleting references to persons' homepages." ./R-ISCTE-2007-02-21/DeletePersonsHomepages.sql