Hi,
Hi i use sqlalchemy to map an existing oracle table to my class via the
declarative syntax. One of the columns is indexed.
Do i understand it correctly to only specify the index in my Column?
class Example(...)
mnr = Column("MNR", String(12), primary_key=True, index=True)
And how can i check if the index is used in a select? Do i see it with
echo=True?
Thanks in advance...
Christian
--
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.