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

1
vote
0answers
148 views

Sqlalchemy: How do I set key length of a multi-column primary key?

I know that I can use mysql_length = xxx to set the length of an Index. But how to apply this constraint to a multi-column primary key? (using PrimaryKeyConstraint) P.S: My primay columns are A, B ...
1
vote
0answers
162 views

Many-to-Many Relationships in SQLAlchemy

Consider this Many-to-Many relationships table. content_tag = Table('content_tag', db.metadata, Column('tag_id', Integer, ForeignKey('tag.id'), primary_key=True), Column('content_id', ...
1
vote
0answers
126 views

Migrating from SQLObject to SQLAlchemy :: Can SQLAlchemy support zero caching and autoload table updates?

I want to know if SQLAlchemy can support instant loading of the current state of an object from the database when another process updates some attributes of the same object. I want to mention, I am ...
1
vote
0answers
92 views

Entity -(many-to-one)-> related-table -(many-to-one) -->attribute mapping does not work

I have mapping problem in a rather simple case. Can anyone help? Here are the DTOs: class AttributeDTO(object): id = None name = None class RelationDTO(object): id = None name = None ...
1
vote
0answers
111 views

how to control version of data object (instance) in sqlalchemy?

How would one set up the model in sqlalchemy to have a versioncontrol in the instance(column_version)? Unique PK over Table. Unique Version over PK. Archive-Flag (latest version not archived). ...
1
vote
0answers
164 views

Formalchemy - form for one to many relation

I've got simple 'one-to-many' relation written with sqlalchemy: class Product(Base, Asset): description = Column(sa.Text) image = Column(sa.VARCHAR(length=150)) ...
1
vote
0answers
154 views

Normalization of flat file, configuring sqlalchemy- setting several many-to-one set-like relationships declaratively

My question is very similar to a previous posting (How to reference the child of a many to one relationship in SQLAlchemy?), however the solution was lost on me owing to my inexperience with sqla, ...
1
vote
0answers
130 views

Are backrefs necessary when using association proxies for a many-to-many?

So using SqlAlchemy, I'm creating a fairly simple many-to-many relationship between a users model and a comments model. users.py class UsersModel(Base): __tablename__ = 'users' id = ...
1
vote
0answers
293 views

sqlalchemy from_statement dynamic attributes for python objects

I have such model: class Test(db.Model, UnicodeMixin): __tablename__ = 'test' id = db.Column(db.Integer, primary_key=True) subject = db.Column(db.String(512), nullable=False) ...
1
vote
0answers
261 views

SQL select OR create if doesn't exist, using SQLAlchemy

Using SQLAlchemy, is there a way to create a new entry with some set of values ONLY if an entry with that set of values doesn't already exist? One year ago nobody knew an elegant answer to this ...
1
vote
0answers
638 views

SQLAlchemy Update or Insert Function

New to using SQLAlchemy and ORM in general. I have a function I would like to call on an object and depending on whether or not an existing id has been passed to the function INSERT or UPDATE the DB. ...
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 ...
1
vote
0answers
498 views

Pythons SQLAlchemy does not recognize Primary key column and complains, why?

I have this MySQL Table: CREATE TABLE `affiliations` ( `affiliation_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(333) COLLATE utf8_bin NOT NULL, PRIMARY KEY (`affiliation_id`), UNIQUE ...
1
vote
0answers
354 views

Sphinx autodoc integrate decorated properties

I started using Sphinx for documenting my sqlalchemy-driven app. One of typical uses of SA in attribute manipulation is using hybrid-property decorator. Now my problem is I get no doc entry for ...
1
vote
0answers
139 views

SQLAlchemy using Execute

I am having a hard time using group by, having, and sum all together in a manual query. Below is my query, can someone help me identify why it returns so many rows (as if it isn't applying the group ...
1
vote
0answers
431 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
0answers
215 views

Determining actual loaded/unloaded state of sqlalchemy object and its relations

In my case, queries to underlying database are pretty expensive, so we're trying to save database requests wherever possible. Here's simplified database which I'll use for examples: items_table = ...
1
vote
0answers
176 views

SQL Alchemy relationships

I've run into another problem with SQLAlchemy. I have a relationship that is suppose to cascade delete some data from my model declared like so : parentProject = relationship(Project, ...
1
vote
0answers
78 views

Mapping an arbitrary select to a relation table in sqlachemy

I have a many to many relation table between tables Item and Detail, defined like this: itemDetail = Table('ItemDetail',Base.metadata, \ Column('id', Integer, primary_key=True), \ ...
1
vote
0answers
166 views

SQLAlchemy / MySQL Search Algorithms

I have a Pylons app running on SQLAlchemy over MySQL. I have a data model with over 26,000 entries. These entries have titles (Unicode(256) columns) and I would like to be able to search for a title ...
1
vote
0answers
645 views

How to build many-to-many relations using SQLAlchemy: a good example

I have read the SQLAlchemy documentation and tutorial about building many-to-many relation but I could not figure out how to do it properly when the association table contains more than the 2 foreign ...
1
vote
0answers
361 views

py2exe and sqlalchemy-migrate

I'm using python 2.6, sqlalchemy 0.6 for a tiny desktop application. Also i'm using py2exe and sqlalchemy-migrate and i'm trying to integrate migrate inside the exe. In this way when the user starts ...
1
vote
0answers
180 views

Python pdb change variable confusion

During debugging of the unittest of my Python web application using SQLAlchemy, the uber persistent user object dropped my jaw -- > myapp/views/signup.py(73)signup_view() -> user = ...
1
vote
0answers
135 views

Problems to update a detached object

I have this table: class Channel(rdb.Model): rdb.metadata(metadata) rdb.tablename("channels") id = Column("id", Integer, primary_key=True) title = Column("title", String(100)) ...
1
vote
0answers
333 views

Django - using sqlalchemy with a read-only database

I'm using Django to nicely display stats etc from an Oracle database that I only have/want read access to. Because the database has composite primary keys I'm not using Django's ORM layer and I'm ...
1
vote
0answers
185 views

UUID returning as bytes_le from MS SQL

I'm querying a table from my Django app, but whenever I do a query on one specific table, I am getting the UUID column returned as a bytes_le style UUID instead of a workable string representation. ...
1
vote
0answers
55 views

How can I delete an attribute when a flush or commit has finished in a MapperExtension?

I was trying to get the last value "before_insert" a new item but I didn't find out, so I changed my strategy and I saved the last value of this method, but the problem is that when I do other commits ...
1
vote
0answers
437 views

SqlAlchemy hangs after adding record in MS SQL

I'm running SQLAlchemy on Jython and trying to connect to a MS SQL database using jTDS with windows authentication. I can query and delete just fine but when I try to insert new values it will hang ...
1
vote
0answers
201 views

Multiple foreign keys to same table using Elixir

I am new to ORMs in general. I have a table (lets call it Entity) with columns -- ID expression type ( can be 'long_word', 'short_word' or 'sentence' ) Often, the first two types occur in a ...
1
vote
0answers
174 views

Converting to declarative method and column_property

Following suggestions, I am converting my project to declarative sqlalchemy class definitions. This allows me to define relations as strings ( a=relation('myotherclass'), instead of ...
1
vote
0answers
206 views

Problem in creating new objects while using sqlalchemy with database sharding

I am using sqlalchemy(version-0.4.5) with turbogears(version - 1.0) as its orm layer, with sharded multiple databases instances at the backend. While sqlalchemy seems to support passing ...
0
votes
0answers
17 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
19 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
33 views

Many-to-many relations from table to itself in SQLAlchemy

I'm using SQLAlchemy to represent a relationship between authors. I'd like to have authors related to other authors (coauthorshp), with extra data in the relation, such that with an author a I can ...
0
votes
0answers
31 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
14 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
20 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
31 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
34 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
32 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
30 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
22 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
21 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
17 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
58 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
16 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
40 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
17 views

Accessing Postgres Namespaces from SQLAlchemy

Is it possible to create Postgresql namespaces for sets of tables from SQLAlchemy?
0
votes
0answers
28 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 ...

1 2 3 4 5 11