At 03:27 PM 11/24/01 -0800, Luke Opperman wrote: <snip> >Besides MiddleKit, what other >ways are people dealing with database access?
The app I'm working on is mostly reporting and data crunching, and involves tables that are used by non-Webware tools, so MiddleKit would just get in the way. It's strictly on Windows, so I'm using ADO to access SQL Server 2000. It's a good choice if you're strictly on Windows. ADO works just as well in Python as it does in VB. You can actually make it nicer and easier to use in Python than it is in VB by writing some wrappers around the Recordset objects to make them support iteration. The nice thing about using ADO is that most of the MS documentation contains code samples in Visual Basic with ADO, and it's easy to translate that to Python. -- - Geoff Talvola [EMAIL PROTECTED] _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
