#!/bin/sh

export PATH=$PATH:/usr/local/bin:/usr/bin

`which odbcinst >/dev/null 2>&1`
if (($?)); then
   echo "odbcinst: command not found"
   echo "Install unixODBC in /usr/local or /usr"
   exit 1
fi

`which odbcinst` $*
