Replies: 1 comment
-
In sqlalchemy that gives you a Table (core element) and not a Model (orm element). What do you want to do with this table? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to fetch data using ormar where there's no ormar model configured?
in sqlalchemy we are doing something like:
table_x= db.Table('non_ormar_table', metadata_ps_dvdrental, autoload=True, autoload_with=engine_ps_dvdrental)
print(table_x.columns.keys())
is it possible to refer to a table using ormar without define a model for it?
if yes, can u please refer me to documenaiton as i check it and couldn't find.
Beta Was this translation helpful? Give feedback.
All reactions