SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.

learn more… | top users | synonyms

0
votes
0answers
20 views

Select name by id in another table

I have the tables Articles(id, name(text), category(int), text(text)) and Categories(id, name(text)) query db_session.query(Articles).all() How I can with ORM select All from Articles with replacing ...
0
votes
0answers
22 views

How to have more than one tables backref a table with the same property name

So I wanted to achieve, which when described in plain words, would be something like: The parent model class is able to return all the instances of models where it is ForeignKeyed, under a single ...
0
votes
0answers
41 views

Celery task hangs when chaining to a group

I'm trying to write a celery workflow that syncs a set of contacts from a remote system to the local database. I would like to split the results of the remote system api call into several batches, so ...
0
votes
0answers
25 views

SQLAlchemy Declarative Bi-Directional Association: append and value set at once

GENERAL QUESTION Is it possible to append an association and set a value(s) to be stored in association table in one command? CODE To do so, I'm working on one of more interesting examples of ...
0
votes
0answers
42 views

Twisted web, SQLAlchemy and exception handling

I'm using twisted web to build a web service application. I use SQLAlchemy to interact with the database. As far as I know it would make to sense to create a session a the beginning of a request, and ...
0
votes
0answers
18 views

Combine Query and COUNT(*) on ORM SQLAlchemy

I have query on sql SELECT id, name, (SELECT COUNT(*) FROM keywords WHERE keywords_categories_id = kt.id) AS count_keywords FROM keywords_categories kt That, i want do this query on ORM ...
0
votes
0answers
38 views

SQLalchemy - call a query function from another file

I have following question, I want to call a function which is querying my database. So my code like that is working fine, cause I'm calling the function inside the file: #!/usr/bin/python # -*- ...
0
votes
0answers
70 views

sqlalchemy.exc.ProgrammingError: (ProgrammingError) relation does not exist

I'm trying Pyramid by creating the new project. I choose PostgreSQL and sqlalchemy. For now I have a table "photo" created manually and a model for it: class Photo(Base): """ The SQLAlchemy ...
0
votes
0answers
33 views

Conundrum : Not Sorting Objects With SQLAlchemy

I have a feeling SQLAlchemy is only checking the first digit when it orders the groups by ID, how do I get it to check all the digits of the ID? groups = ...
0
votes
0answers
39 views

Postgres+SQLAlchemy: Select count() from original table and joined tables?

I have a SQLAlchemy query: db.session.query(Student, over(func.count(Student.id)), # want to count the distinct MyTable instances over(func.count(Degree.id))).\ # want to count the cumulative ...
0
votes
0answers
26 views

id generated by fuction, Elixir model

I try to make a Model to my database. I create some tables but in one of it i try to make with a field id generated for a function , there I have some troubles that i want to shared and make some ...
0
votes
0answers
24 views

Running a trigger with sqlalchemy that works with session.execute

I have a app which using sqlalchemy as the orm. As the app is one in transition some of the update query's run through a session.execute . However I need to create a trigger of some kind . I am trying ...
0
votes
0answers
19 views

sqlalchemy polymorphic_identity not filling

I am using SQLAlchemy (0.8) polymorphic_identity for the first time, so the problem may be with my understanding of what's supposed to happen rather than with the code itself. But, let's see if ...
0
votes
0answers
86 views

SQLAlchemy error MySQL server has gone away

Error OperationalError: (OperationalError) (2006, 'MySQL server has gone away') i'm already received this error when i coded project on Flask, but i cant understand why i get this error. I have code ...
0
votes
0answers
21 views

can't pickle attrgetter objects

I'm getting this error when trying to cache sqlalchemy models loaded from the database. I'm using dogpile.cache with a redis backend. I got exactly the same error using Flask-Cache with a redis ...
0
votes
0answers
54 views

How to maintain part of data in one table using flask-admin view?

I have a table "Label" with columns : id | name | type The type column get 3 values:"Category","Tags","MAT", so that this one table contains three type of data. Now, I want to only maintain the ...
0
votes
0answers
39 views

Structuring a SQLAlchemy CRUD Application

I've been writing my first application of a fair size (~ 4000 lines) and my first application that uses a database for persistence. It uses Python + SQLAlchemy. I've been struggling with the structure ...
0
votes
0answers
26 views

SQLAlchemy : Building dynamic joins for a query

I'd want to make an API that takes in parameter a list of columns from different tables and build the query correctly. I don't know what I should do specify to SQLAlchemy how it will determine the ...
0
votes
0answers
48 views

Using postgresql xml data type with sqlalchemy

SqlAlchemy supports most database specific data types via dialects, but I could not find anything to work with the postgresql xml column type. Does somebody know a working solution. Idealy it should ...
0
votes
0answers
22 views

SQLAlchemy join two records from one table into one record

My web application does have an image gallery. I have a table called gallery_images that contains single image records that are grouped together to an image gallery. That's no problem so I'll ignored ...
0
votes
0answers
68 views

Flask unit tests with SQLAlchemy and PostgreSQL exhausts db connections

I'm running a suite of fairly straightforward test cases using Flask, SQLAlchemy, and PostgreSQL. Using an application factory, I've defined a base unit test class like so: class ...
0
votes
0answers
18 views

SQLAlchemy:What synonym() function really does in Object Mapper

I am new to SQLAlchemy, I came across reading this synonym() function which I don't understand what it really does and when to use this function in Object Mapping. Here is that example code which ...
0
votes
0answers
61 views

How to handle with OOP aggregation in sqlalchemy

I have an aggregation relationship: class XXX(Base): __tablename__ = 'XXX' id = Column(mysql.INTEGER, primary_key=True) xxxx = Column(mysql.VARCHAR(length=127)) def __init__(self, ...
0
votes
0answers
34 views

sql alchemy db retrival error

class SourcetoPort(Base): """""" __tablename__ = 'source_to_port' id = Column(Integer, primary_key=True) port_no = Column(Integer) src_address = Column(String) ...
0
votes
0answers
45 views

Error asking pyDatalog queries in SQLAlchemy backed database in sqlite3 - InterfaceError: (InterfaceError)

I'm currently developing an application that need to mix recursive queries with SQL and am trying out if this can be achieved using SQLAlchemy together with pyDatalog. It was really easy to set up, ...
0
votes
0answers
31 views

logging versions with SQLAlchemy including relationship tables

related to this question: SQLAlchemy logging of changes with date and user I'm using a modified version of the "recipe" for versioning changes automatically. I think it's able to handle some forms ...
0
votes
0answers
36 views

SQLAlchemy introspection of relationships

I have a use case for modelling data in a SQL schema rather than through defining SQLAlchemy objects. However, i require a way to construct the corresponding SQLAlchemy objects automatically from the ...
0
votes
0answers
29 views

sqlalchemy count entries get slow when the database gets larger

I'm now writing a website using tornado and sqlalchemy, and I have to use the count method in sqlalchemy to get the total amount of entries, I use it in this way: count_query = ...
0
votes
0answers
31 views

Python DB Data Organization

This is code from my table in sqlalchemy. This is a table that will store data on MLB games. h_i1 is how many runs the home team scored in inning one, a_i1 is how many runs the away team scored in ...
0
votes
0answers
98 views

mysql and python datetime

I am trying to insert records to a mysql database via python using the sqlalchemy package. I have columns that are datetime type in mysql that already accepted data of the following format via a load ...
0
votes
0answers
43 views

Custom properties on SQLAlchemy mapped classes

I have a mapped class defined with SQLAlchemy: class Table(Base): id = Column(integer, primary_key=True) name = Column(String(255)) def __init__(self, name): self.name = name ...
0
votes
0answers
60 views

SQLAlchemy (declarative) not creating db or tables

I am trying to use postgreSQL with SQLAlchemy. I having some issues because I am a new to SQLAlchemy, and may have misunderstood the documentation. When I follow the documentation with SQLite I have ...
0
votes
0answers
79 views

Python unicode display in Django admin

I imported some unicode data from MS excel to MySQL via SQLAlchemy as follows engine = create_engine('mysql://user:password@localhost/db_name', convert_unicode=True, echo=False) The model is ...
0
votes
0answers
14 views

Update SQAlchemy field threadsafe from multiple processes

I have a database table that describes a job that is processing on a distributed system. So the entire job is split up into many tiny parts and each part is processed on a different machine in it's ...
0
votes
0answers
43 views

Using expire_on_commit with autocommit in SQLAlchemy

For various reasons, I've configured my sessionmaker with autoflush=False, expire_on_commit=False, autocommit=True. Mainly, I just want autocommit behavior. The other flags are set due the warning in ...
0
votes
0answers
51 views

How to query in models_committed signal? Flask-Sqlalchemy

from flask.ext.sqlalchemy import models_committed def on_models_committed(sender, changes): print "Works good before next line" SomeModel.query.all() app = Flask(__name__) ...
0
votes
0answers
55 views

Oracle dates in sqlalchemy

Running the following query in Oracle: SELECT * FROM my_table WHERE my_table.col = TO_DATE('2013-01-01','YYYY-MM-DD') doesn't retrieve the same results as the following query under MySql: SELECT * ...
0
votes
0answers
52 views

Sqlalchemy Querying and filtering

So lets say i have some simple classes defined as such class Person birthday class Address state and i want the the oldest person from each state, i think i could get it with something ...
0
votes
0answers
74 views

Importing sqlalchemy 0.8 failing on pip/virtualenv install for python 2.7

I'm having some difficulty importing sqlalchemy on a fresh virtualenv/pip install of 0.8: Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build ...
0
votes
0answers
82 views

flask-sqlalchemy give empty result from database view

I have Model: from flask.ext.sqlalchemy import SQLAlchemy db = SQLAlchemy() class Graph(db.Model): __tablename__ = 'graph_view' group = Column(Unicode(250), primary_key=True) port_id1 = ...
0
votes
0answers
38 views

SQLAlchemy Events: How I use after_commit/before_commit feature?

I want to add new record into a message quene. I find the SQLAlchemy Events feature can help me to do this work. I find in the following code only the before_commit feature works. that's a problem ...
0
votes
0answers
51 views

SQLAlchemy retrieve info from different tables of the same class

I being dealing with this problem I can“t find the solution. Please help :). Normally I add a table to the database using a function like: def addTable(var): engine = create_engine(.....) ...
0
votes
0answers
107 views

SQLAlchemy join with filtering doesn't actually filter

The problem is in the header of topic. So here are the details. I am using Flask-SQLAlchemy and PostgreSQL and my db schema is like this: class Settings(db.Model): id = db.Column(db.Integer, ...
0
votes
0answers
38 views

SQLAlchemy - cannot pass in NULL to PRIMARY KEY and inside object assign my own ID

class Module(Base, CNXBase): """ """ __tablename__ = 'module' id_ = Column(String, primary_key=True) title = Column(String) userroles = relationship("UserRoleModule", ...
0
votes
0answers
58 views

ProgrammingError Thread error in SQLAlchemy

I have a two simple tables in a sqlite db. from sqlalchemy import MetaData, Table, Column, Integer, ForeignKey, \ create_engine, String from sqlalchemy.orm import mapper, relationship, ...
0
votes
0answers
107 views

tornado and django integration

I need to integrate chat component written in Tornado with Flask application (both solutions base on the same persistence layer, which runs on top of sqlalchemy). Flask Application is considered to be ...
0
votes
0answers
63 views

SQLAlchemy: Does every table in the database have to relate to a class in the application?

I have an application that I want to implement in Python 3.2 and SqlAlchemy 0.8. Am done with the ERD and it has about 30 tables as of now. Question is, now that I have 30 Postgresql tables, Does this ...
0
votes
0answers
13 views

Mapping engine.execute results to a class easily?

I am calling the following custom sql statements in sqlalchemy: looks = engine.execute(""" SELECT looks.*, coalesce(preferences.score, 0) FROM looks LEFT JOIN preferences ON ...
0
votes
0answers
37 views

SQL Hierarchy/Inheritance

I'm trying to design a database and I would like to use Hierarchy and Inheritance in my database. I have this easy structure: B / \ C D I want C and D to be children of B but not to ...
0
votes
0answers
144 views

400 Bad request On Sqlalchemy+Flask

I have code when get some data from page and send to serer (all works good) And my server path if request.form['type'] == 'change_labels': if request.form['todo'] == 'set_labels': lid ...

1 2 3 4 5 12