Re: [sqlalchemy] Not loading a kind of elements

2011-02-02 Thread slothy Rulez a lot
It's working!!!, thanks! 2011/2/1 Michael Bayer mike...@zzzcomputing.com The query itself has to not load the row in the first place. There's a recipe for that here: http://www.sqlalchemy.org/trac/wiki/UsageRecipes/PreFilteredQuery On Feb 1, 2011, at 11:46 AM, slothy Rulez a lot wrote:

[sqlalchemy] Multilingual Model

2011-02-02 Thread Madhu Alagu
Hi I am looking best model for the following tables: - ---Table : groups_t - CREATE TABLE groups_t ( id BIGINT NOT NULL, code VARCHAR NOT NULL, version BIGINT NOT NULL ); - ---Table : groups_i18n_t - CREATE TABLE groups_i18n_t ( group_id BIGINT NOT NULL,

[sqlalchemy] sqlalchemy, sequel server 2008, and python 3

2011-02-02 Thread Jonathan Cox
I'm a newbie trying to set up a development/learning environment with sequel server 2008. I have a few questions: -is it possible to use sqlalchemy to interface with with sequel server 2008 on Python 3.1? It seems like sqlalchemy uses some intermediate modules (e.g., pymssql) to talk to the

Re: [sqlalchemy] sqlalchemy, sequel server 2008, and python 3

2011-02-02 Thread Michael Bayer
On Feb 2, 2011, at 3:07 PM, Jonathan Cox wrote: I'm a newbie trying to set up a development/learning environment with sequel server 2008. I have a few questions: -is it possible to use sqlalchemy to interface with with sequel server 2008 on Python 3.1? not as of yet as there are no DBAPI

[sqlalchemy] autoloading with known columns

2011-02-02 Thread A.M.
Hello, I am using autoload to load some of my application metadata for views, however, since some information cannot be extracted from the view (such as the primary key) and because one UserDefinedType I am using cannot be recognized using reflection, I am passing certain column information

[sqlalchemy] Re: autoloading with known columns

2011-02-02 Thread A.M.
On Feb 2, 2011, at 4:50 PM, A.M. wrote: Hello, I am using autoload to load some of my application metadata for views, however, since some information cannot be extracted from the view (such as the primary key) and because one UserDefinedType I am using cannot be recognized using

Re: [sqlalchemy] autoloading with known columns

2011-02-02 Thread Michael Bayer
On Feb 2, 2011, at 4:50 PM, A.M. wrote: Hello, I am using autoload to load some of my application metadata for views, however, since some information cannot be extracted from the view (such as the primary key) and because one UserDefinedType I am using cannot be recognized using