#!/bin/sh
# $Id: //open/dev/farrago/dist/bin/sqllineClient#6 $
# Run the sqlline command-line SQL interpreter as a client
# to a Farrago server

BIN_DIR=$(cd `dirname $0`; pwd)

. $BIN_DIR/defineFarragoRuntime.sh

${JAVA_EXEC} ${JAVA_ARGS} ${SQLLINE_JAVA_ARGS} \
    -u jdbc:farrago:rmi://localhost \
    -d net.sf.farrago.jdbc.client.FarragoVjdbcClientDriver \
    -n sa $*
