Connecting to databases that support ODBC from Python with pyodbc pyodbc is an open-source Python module that provides access to databases for which an ODBC driver is available. pyodbc implements the Python DB API 2.0 specification. The Python DB API defines a database-neutral interface to data stored in relational databases. Python DB was designed to allow conformant modules to provide a consiste
python DB API 2.0に準拠しているODBCドライバ pyodbcを使用する。Windows認証を使用して接続する接続パラメータは下記。 ‘DRIVER={SQL Server};SERVER=localhost\SQLEXPRESS;DATABASE=TestDB;Trusted_Connection=yes;’ 使用例: import pyodbc conn = pyodbc.connect(‘DRIVER={SQL Server};SERVER=localhost\SQLEXPRESS;DATABASE=TestDB;Trusted_Connection=yes;’) cursor = conn.cursor() rows = cursor.execute(‘select* from Test’).fetchall() conn.close() print rows La
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く