Tagged Questions
2
votes
1answer
159 views
'RelationshipProperty' object has no attribute 'c' error in sqlalchemy
I'm having a lot of trouble implementing SQLalchemy for a legacy MSSQL database. It is a big existing database, so I wanted to use sqlautocode to generate the files for me, because using autoload to ...
0
votes
2answers
210 views
SQLAlchemy Flask filter query to combine results from two models
I am trying to order a user's thanks(posts) by date_registered.
At the moment, there are two queries to get two lists, then manually combine and re-order. A user can be a giver of thank or a ...
2
votes
1answer
112 views
Flask-SqlAlchemy Adjacency List Relationship backfref unexpected error
I am working on a small project where I am using Flask-SqlAlchemy to implement an adjacency list relationship. I have a model (table) which has an attribute for db.Relationship() which references the ...
3
votes
2answers
197 views
Cleanest way to make an ORM for neo4j + sql in python flask? One model over 2 databases
How can I create one model that talks to two databases in Flask, where one is, say, sqlite, and the other is specifically neo4j?
I'd like to have login and password stuff in a traditional db, and ...
2
votes
1answer
700 views
SQLAlchemy Polymorphic Relationship with Concrete Inheritance
I am using the concrete table inheritance with SQLAlchemy. In declartive style model class, I have configured it successfully.
My code just like:
class Entry(AbstractConcreteBase, db.Model):
...
4
votes
1answer
1k views
SQLAlchemy ManyToMany secondary table with additional fields
I have 3 tables: User, Community, community_members (for relationship many2many of users and community).
I create this tables using Flask-SQLAlchemy:
community_members = ...
0
votes
1answer
446 views
SQLAlchemy configuring many-to-many relationship to self using Association
I am having problems configuring a many to many relationship to a model itself. I can configure a self-many-to-many relation when I use anormal relationship configuration i.e. one not using an ...
8
votes
1answer
1k views
SQLAlchemy ordering by count on a many to many relationship
This is a simplified example of my current models (I'm using the Flask SQLAlchemy extension):
like = db.Table(
'like',
db.Column('uid', db.Integer, db.ForeignKey('users.id')),
...
