Hi,

I was using SqlAlchemy 0.5.0rc4 (and Python 2.5) on Ubuntu 8.10 and it
was working great. Then one of my users upgraded to SA 0.5.2 and now
one of my queries stopped working. Here's what my query looks like:

<code>
query = session.query(GE.ID, GE.FNAME, GE.LNAME,
                                 GE.DATE, GE.SALVAR).filter_by
(NETNAME=str(username))
userInfo = query.first()
</code>


I have the adodb module installed and I think that is what SA is
using. The database is on Microsoft SQL Server 2000. I am using the
autoload functionality to create the Table object:

overview_tbl = Table('GEOverview', metadata,
                             Column('id', Integer, primary_key=True),
                             autoload=True)

Any ideas on what's different between the two versions that would
cause this? I have a feeling this will probably effect my Windows
users too if I upgrade them.

Thanks,

Mike
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to