Corey Trager
Corey Trager

Reputation: 23131

What's the best technology for connecting from linux to MS SQL Server using python? ODBC?

By best, I mean most-common, easiest to setup, free. Performance doesn't matter.

Upvotes: 4

Views: 474

Answers (4)

mluebke
mluebke

Reputation: 8819

FreeTDS

Upvotes: 1

Corey Trager
Corey Trager

Reputation: 23131

I decided that pyodbc was the best fit. Very simple, stable, supported:
http://code.google.com/p/pyodbc/

Upvotes: 3

Bill the Lizard
Bill the Lizard

Reputation: 405955

pymssql, the simple MS SQL Python extension module.

Upvotes: 2

duffymo
duffymo

Reputation: 308948

I'm just learning Python myself, but it seems like there are Python libraries that look more like Java JDBC drivers. Google found these articles about SQLObject and cx_Oracle.

Upvotes: 0

Related Questions