1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Source: pyodbc
Section: python
Priority: optional
Maintainer: Deepak Tripathi <apenguinlinux@gmail.com>
Uploaders:
Debian Python Team <team+python@tracker.debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-python,
pybuild-plugin-pyproject,
python3-all,
python3-all-dev,
python3-setuptools,
unixodbc-dev,
Standards-Version: 4.6.2
Homepage: https://mkleehammer.github.io/pyodbc/
Vcs-Git: https://salsa.debian.org/python-team/packages/pyodbc.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/pyodbc
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-python
Package: python3-pyodbc
Architecture: any
Depends:
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Provides:
${python3:Provides},
Multi-Arch: same
Description: Python3 module for ODBC database access
A Python3 DB API 2 module for ODBC. No 3rd party libraries are required.
Only native Python datatypes are used, such as decimal and datetime.
It implements the Python Database API Specification v2.0.
For example:
import pyodbc
Next, create a connection by passing an ODBC connection string to the
connect method. This step causes ODBC to load the database driver (the SQL
Server driver in this example) and connect to the database.
cnxn = pyodbc.connect('DSN=northwind')
|