Yet another SQLServer database driver
Project description
Yet another Python SQLServer database driver.
Support platform
Python 3.5+
Support database
MS SQLServer 2012, 2014, 2016
Microsoft Azure SQL Database
Installation
$ pip install minitds
Example
Query:
import minitds conn = minitds.connect(host='localhost', user='sa', password='secret', database='database_name') cur = conn.cursor() cur.execute('select foo, bar from baz') for r in cur.fetchall(): print(r[0], r[1]) conn.close()
Restrictions
Support SQL Server User Authentication only.
Not support Stored Procedure call now.
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
minitds-0.3.3.tar.gz
(9.0 kB
view hashes)