libdb/lang/sql/odbc/drvdsnuninst.sh
2011-09-13 13:44:24 -04:00

13 lines
246 B
Bash

#!/bin/sh
#
# Uninstall ODBC driver and system DSN
# $1 driver name
# $2 DSN name
which odbcinst > /dev/null || {
echo >&2 "no usable odbcinst program"
exit 1
}
odbcinst -u -d -n "$1" || true
odbcinst -u -l -s -n "$2" || true