return output from unixODBC `odbcinst` command
Project description
odbcinst
return output from unixODBC odbcinst
command
Installation
pip install odbcinst
Usage
The .j()
function executes odbcinst -j
. If called with no argument it
returns a dict. If called with a str argument it returns the specified value.
from pprint import pprint
import odbcinst
pprint(odbcinst.j())
"""console output:
{'DRIVERS': '/etc/odbcinst.ini',
'FILE DATA SOURCES': '/etc/ODBCDataSources',
'SQLLEN Size': '8',
'SQLSETPOSIROW Size': '8',
'SQLULEN Size': '8',
'SYSTEM DATA SOURCES': '/etc/odbc.ini',
'USER DATA SOURCES': '/home/gord/.odbc.ini',
'unixODBC': '2.3.4'}
"""
print(repr(odbcinst.j("unixODBC")))
# '2.3.4'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
odbcinst-1.0.0.tar.gz
(1.9 kB
view hashes)