0
votes
2answers
54 views

Relationship between fields - classes OpenErp

I need to relate a field first declared on product.py to a custom module i'm making. The fields are in the product.product class as follows: _name = "product.product" _description = "Product" _table ...
1
vote
1answer
35 views

Automatically creating a OneToOneField when accessed

I have two models: class Profile(models.Model): # (...) settings = models.OneToOneField('Settings', null=True) # (...) class Settings(model.Model): # (...) Is there a way to create ...
0
votes
1answer
53 views

Howto relation of data in Python (pickle datas)?

I'm new in python environment, so I created an example small project to try this: creating of phone brand and save into brands.pkl text fields: "brand name" creating of phone model with selecting a ...
2
votes
1answer
62 views

Django, ForeignKey relation, and Q or

I have some problem. Consider this data schema in DB (for simplicity I omit some things): class Table1(Model): field1; field2; table2 = ForeignKey('Table2'); class Table2(Model): ...
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
370 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
203 views

Using 1:n relations in django admin

I want to build a questionary in Django and use django's admin-interface to enter the data. The site-admin should be able to set-up new questionaries with questions. Define models which questions have ...
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
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 = ...