Tagged Questions
2
votes
1answer
80 views
Use of M2M Table and relationship to get specific data in sqlalchemy
I have Table
# File : MyRelations.py
ACC_ADD_TABLE = Table('acc_add_rel', METADATA,
Column('acc_id', ForeignKey('acc.id'),
nullable=False),
Column('add_id', ...
1
vote
2answers
234 views
sql alchemy filter results on properties of joined models
I have a model X and a model Y.
Y contains a foreign key reference to X.id, with a instance of the related X entry available by the property x.
x_id = Column(Integer, ForeignKey('xtable.id'))
...
0
votes
2answers
371 views
How to find sqlalchemy remote side object's class or class name without db queries?
Let's have a classes X and Y and relations between them x2y and y2x.
From class_mapper(Class).iterate_properties iterator we can get all class's properties.
So x2y and y2x are RelationshipProperty ...
0
votes
1answer
227 views
SQLAlchemy - difference between mapped orm.relation with backref or two orm.relation from both sides
In some project I implement user-requested mapping (at runtime) of two tables which are connected by a 1-to-n relation (one table has a ForeignKey field).
From what I get from the documentation, the ...
1
vote
1answer
157 views
Pylons + SQLA: One to One Relationship
Newbie question. Pylons 1 + SQLA using declarative style. New to Python.
I have a "master" class called Entity, which "child" classes must belong to for them to be valid. My link to the master class ...
1
vote
1answer
644 views
sqlalchemy relation through another (declarative)
Is anyone familiar with ActiveRecord's "has_many :through" relations for models? I'm not really a Rails guy, but that's basically what I'm trying to do.
As a contrived example consider Projects, ...
5
votes
1answer
3k views
Starter question of declarative style SQLAlchemy relation()
I am quite new to SQLAlchemy, or even database programming, maybe my question is too simple.
Now I have two class/table:
class User(Base):
__tablename__ = 'users'
id = Column(Integer, ...
1
vote
2answers
153 views
How to make a relation between tables using SQLAlchemy?
Using SQLAlchemy, given tables such as these:
locations_table = Table('locations', metadata,
Column('id', Integer, primary_key=True),
Column('name', Text),
)
players_table = ...
0
votes
1answer
205 views
How to specify an association relation using declarative base
I have been trying to create an association relation between two tables, intake and module . Each intake has a one-to-many relationship with the modules.
However there is a coursework assigned to ...