libdb/lang/sql/odbc/drvdsnuninst.sh

14 lines
246 B
Bash
Raw Normal View History

2011-09-13 17:44:24 +00:00
#!/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