Paketname | python-pyodbc |
Beschreibung | Python module for ODBC database access |
Archiv/Repository | Offizielles Debian Archiv squeeze (main) |
Version | 2.1.7-1 |
Sektion | python |
Priorität | optional |
Installierte Größe | 248 Byte |
Hängt ab von | python (<< 2.7), python (>= 2.5), python-support (>= 0.90.0), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1 |
Empfohlene Pakete | |
Paketbetreuer | Deepak Tripathi |
Quelle | pyodbc |
Paketgröße | 82080 Byte |
Prüfsumme MD5 | 4561112d27bb6c407c8531104eef5a4b |
Prüfsumme SHA1 | 88a893b8c7a46807acbc6841f145e142caca1901 |
Prüfsumme SHA256 | cba20980913a40661c96d5effa8ae114516d57ff65db70b2866aec986f284770 |
Link zum Herunterladen | python-pyodbc_2.1.7-1_i386.deb |
Ausführliche Beschreibung | A Python 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')
|