mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
14 lines
246 B
Bash
14 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
|