Python and SQL Server 2000

Kris J. Zaragoza kzaragoza at attbi.com
Mon Jun 17 12:45:31 EDT 2002


In article <1bf96e7f.0206170345.515227c1 at posting.google.com>, Dave Moor wrote:
> kzaragoza at attbi.com (Kris J. Zaragoza) wrote in message news:<slrnagn75g.263.kzaragoza at localhost.localdomain>...
>> So, let me add to the original poster's question: Has anyone ever
>> tried running the Windows version of Python (either the main
>> distribution or ActiveState's) under Wine to take advantage of the
>> database drivers, etc.?
> 
> Another solution is to write a simple pair of client/server socket
> apps.  The server is passed and executes sql on the windows using COM
> or ODBC.  Then pass the results using the struct module back to the
> client.
> 
> Dave

I don't like using this kind of relay to expose a database.  There are
too many security issues to address.  You end up having to roll your
own authentication and authorization mechanisms, figure out whether
masquerade database users or use the credentials given, and figure out
how best to encrypt data if appropriate.  Too much work, and far too
error prone if alternatives are available.  That's why I asked about
the feasibility of using Wine with the Windows version of Python.
Although it's a less than ideal solution, it could work in a pinch.
Unfortunately, I haven't had the time to try it out myself. :-(

Kris


-- 
Kris J. Zaragoza       | On the face of it, Microsoft complaining about
kzaragoza at attbi.com    | the source license used by Linux is like the
                       | event horizon calling the kettle black.
                       | -- Adam Barr, article on kuro5hin.org



More information about the Python-list mailing list