You can definitely access this table, using SQL engine only
my_table = Table('my_table', metadata,
Column('my_field', String)
)
#now we can perform the query
session.connection().execute(my_table.select())
#more info here:
http://www.sqlalchemy.org/docs/05/sqlexpression.html
On Jan 22, 11:56 am, Ikuta <[email protected]> wrote:
> Hi
>
> I have a question here, is it possible to access a read-only table
> (without primary_key) in ORM method?
>
> Thanks!
>
> Ikuta
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---