0
votes
0answers
12 views

Cascading deletes in mutually dependent tables in SQLAlchemy

I have a situation where two of my database tables have foreign keys pointing at each other. This is through MySQL via SQLAlchemy. I want to make it so that when I delete the parent, all child rows ...
1
vote
1answer
73 views

SQLAlchemy: How to save an object with the foreign key?

I've got these classes. class User(object): query = db_session.query_property() def __init__(self, username, passhash, salt): self.username = username ...
1
vote
1answer
104 views

SQLAlchemy ON DELETE SET NULL while using secondary table

I encountered a basic use case - I have two tables, Nodes and Networks, and they are interconnected using third table IPAddr as a secondary association table: class Node(Base, BasicValidator): ...
0
votes
1answer
122 views

Drop duplicate foreign keys with SQLAlchemy Migrate

By mistake I added two foreign keys referring to the same table and column. The SHOW CREATE TABLE table_a look like: table_a | CREATE TABLE `table_a` ( `id` char(36) NOT NULL, `fk` int(11) default ...
0
votes
1answer
102 views

UnitTest : Can't add many to many relations : Integrity error (seems delete do not do his job)

I have two tables : Person & Team ; each has a Many-To-Many relation with the other. I do this in the setUp function (called before each function of testing, 3 times in my case) p = ...
0
votes
1answer
245 views

SQLAlchemy: get Model from table name. This may imply appending some function to a metaclass constructor as far as I can see

I want to make a function that, given the name of a table, returns the model with that tablename. Eg: class Model(Base): __tablename__ = 'table' ...a bunch of Columns def ...
0
votes
1answer
95 views

SQLAlchemy: can't understand this one2many relationship with composite keys

I have an SQLAlchemy model like the one below, and at first it didn't work (problems with the join, and then expecting a scalar instead of a list). I "fixed" it in the included version, but I really ...
1
vote
0answers
69 views

SQLAlchemy-migrate on a new Table with a relationship?

Let's say I have created this new SQLAlchemy class: class C(Base): id = Column(Int, primary_key=True) tags = relationship("B") I want to create this table for SQLAlchemy-migrate. However, I ...
2
votes
1answer
680 views

Using SQLAlchemy with multiple self-referential foreign keys

What if I had something like a double linked list in a relational database, for example: node_id left_id right_id 1 null 2 2 1 3 3 2 null ...
0
votes
1answer
99 views

Foreign keys and basic relational tables

I have a basic data model that I want to implement in MySQL. I will be using mysqldb and SQLalchemy to do the data part, taking some data from some XML. I'm not really sure how to implement what I ...
0
votes
0answers
241 views

sqlalchemy foreignkey constraint violation when adding remote table

Hi I have a movies table on an existing app, and a file table in a plugin that I am developing. I am new to sqlalchemy and sql generally and am having a little difficulty adapting to it. My problem ...
1
vote
1answer
288 views

delete not cascaded to table in sqlalchemy

I am developing an extension to an existing app which uses sqlalchemy 0.6. The app has sqlalchemy tables created the non-declarative way. I am trying to create in my extension a new table with a ...
3
votes
2answers
700 views

SQLAlchemy - ForeignKey can't find table

Going MENTAL. Getting this error when I try to instantiate the ConsumerAdvice class. Foreign key associated with column 'tbConsumerAdvice.ConsumerAdviceCategory_ID' could not find table ...
0
votes
1answer
746 views

How to set up a table with a recursive foreign key and a relationship declaratively in SQLAlchemy?

Suppose I have a table "nodes" where I store a tree. Each node has a primary key id and a column parent_id. Of course, I want to access a parent attribute of each node instance, that is, a relation. ...
1
vote
0answers
37 views

Is it necessary to define Referential Actions in SQLAlchemy's Model-Definitions, although they are defined inside InnoDB-Table?

I have several MySQL InnoDB tables (authors, books, countrys) in a Database and they are all linked by an association_table which looks like this: id, fk_author_id, fk_book_id, fk_country_id I have ...
2
votes
1answer
1k views

SQLAlchemy - don't enforce foreign key constraint on a relationship

I have a Test model/table and a TestAuditLog model/table, using SQLAlchemy and SQL Server 2008. The relationship between the two is Test.id == TestAuditLog.entityId, with one test having many audit ...
1
vote
1answer
496 views

How to map multiple foreign keys to the same parent in SQLAlchemy?

Upon adding a second foreign key to the same table I get the following error: Please specify the 'onclause' of this join explicitly. How can I specify this relationship? class Parent(Base): ...
4
votes
1answer
338 views

How to automatically reflect table relationships in SQLAlchemy or SqlSoup ORM?

How do I tell SQLAlchemy to automatically reflect basic Foreign Key references as references to other ORM objects and not integer fields? In both SQLAlchemy and it's SqlSoup, table columns are ...
0
votes
0answers
55 views

Can I add a SQLAlchemy relation to a set of different tables, depending on the data set?

I'd like to connect tags with different types of data (say posts and pages). I was thinking of a model Tag that would have a relation to another data set, which can be of type Post or Page. class ...
1
vote
0answers
440 views

Python SqlAlchemy-Migrate Error adding a ForeignKeyConstraint

I have a changeset script in which I'm trying to add a foreign key constraint to an existing table column. It looks something like: from sqlalchemy import * from migrate import * import datetime ...
1
vote
1answer
1k views

SQLAlchemy and joins, we have no foreign keys

Assume the following in MySQL: CREATE TABLE users ( id integer auto_increment primary key, username varchar(30), active enum('N','Y'), created_on int(11), updated_on int(11), points ...
0
votes
1answer
626 views

“Can't adapt type” error on a Foreign key attribute with SQLAlchemy/PostGreSQL

I got a problem with PostGreSQL 8.4 and tables reflection. My metadata object seems to be ok (it has foreign keys, primary keys, every columns and tables). But when I try to associate an object to an ...
9
votes
7answers
4k views

Sqlite / SQLAlchemy: how to enforce Foreign Keys?

The new version of SQLite has the ability to enforce Foreign Key constraints, but for the sake of backwards-compatibility, you have to turn it on for each database connection separately! sqlite> ...
5
votes
4answers
1k views

How do I delete a foreign key constraint in SQLAlchemy?

I'm using SQLAlchemy Migrate to keep track of database changes and I'm running into an issue with removing a foreign key. I have two tables, t_new is a new table, and t_exists is an existing table. ...
2
votes
2answers
552 views

Save or update for FK relationship Sqlalchemy

I've googled, but haven't been able to find the answer to this seemingly simple question. I have two relations, a customer and an order. Each order is associated to a single cusomter, and therefore ...