Michael, Thanks for the reply. You are right, pyodbc is the default. I was so consumed in trying to find how to get module=pyodbc in there that I never tried running it without it.
Everything is working great now, thanks again, Jin On 5/17/07, Michael Bayer <[EMAIL PROTECTED]> wrote: > > > > On May 17, 2007, at 4:48 PM, [EMAIL PROTECTED] wrote: > > > > > Hello friends, > > > > Newcomer here to pylons and python! So far I really like what I see > > and would like to start developing some applications using pylons. > > > > I was going through the QuickWiki tutorial at > > http://pylonshq.com/docs/0.9.5/quick_wiki.html#introduction and I seem > > to be stuck with a minor issue. I want to use mssql as the database > > (I'm a contractor and cannot avoid using mssql sometimes). Anyway, > > SQLAlchemy has support for 3 mssql drivers, pyodbc being the best of > > them all. I set everything up and ran it in the python shell: > > > > from sqlalchemy import * > > import pyodbc > > db = create_engine('mssql://user:[EMAIL PROTECTED]/quickwiki_test', > > module=pyodbc) > > . > > . > > > > I created a test table, and everything was successful. > > > > Now, back to the QuickWiki tutorial, I followed the directions and > > created a test.ini file. In this file is a sqlalchemy.dburi config > > parameter, which I assume is the first parameter of the create_engine > > method. My question is, how do I tell pylons to use module=pyodbc ? Is > > there some other config parameter that I can set? > > i dont think pylons has this, and this problem needs to be addressed > at some point, via some . however, i think pyodbc is the default > module in mssql.py right now. > > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
