On Feb 18, 2010, at 10:18 AM, Michael Bayer wrote: >> >> Ok. >> My idea was to implement the equivalent of SQL '*' column. >> I can't use the literal '*' in the select column list, since it will >> disable (?) SQLAlchemy type system. >> And I don't want to manually add the columns, since I will end up with >> duplicate columns. > > that's a better idea. how about sqlalchemy.EXPAND_STAR ?
although, still not a compiler level thing. you still want to be able to say "select.c.<colname>". So it would occur at the point of objects being added to the FROM list. > > > >> >> >> >> Manlio >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.10 (GNU/Linux) >> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org >> >> iEYEARECAAYFAkt9Hi0ACgkQscQJ24LbaURw+ACcDmBfcJTZyJJtn3w7Iw02tUY6 >> bZAAnAr+m0GNB2pwn/uQFxjHibvaTGpB >> =9462 >> -----END PGP SIGNATURE----- >> >> -- >> 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. >> > > -- > 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. > -- 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.
