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
1answer
22 views

Sqlalchemy returns “stale” rows?

I have a table (MySQL) with a row in it. I can read it fine with: self._session.query(Automatic).\ filter(Automatic.do_when <= time()).\ limit(limit).\ ...
2
votes
2answers
61 views

Get single value from PostgreSQL row object using SQLAlchemy

I am using Python with SQLAlchemy (and GeoAlchemy in my particular case), and I have a query that results in a single column of row objects. I wish to extract particular values from these row objects, ...
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
1answer
33 views

Automatically Build Database Table based on a Class with SQLAlchemy

I'm really new to SQLAlchemy, and I love it. Right now I'm doing a lot of things manually and I want to do things more 'pythonically' and dynamic. So as an example, I have this short script that ...
0
votes
1answer
65 views

Flask-SQLAlchemy how to delete all rows in a single table

How do I delete all rows in a single table using Flask-SQLAlchemy? Looking for something like this: >>> users = models.User.query.all() >>> models.db.session.delete(users) # but ...
3
votes
1answer
47 views

Cross-database join in Flask-SQLAlchemy

I'm trying to do a cross-database join in Flask-SQLAlchemy: app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = '...Master...' app.config['SQLALCHEMY_BINDS'] = { 'Billing': '...Billing...' ...
0
votes
1answer
36 views

How to change OpenStack Ceilometer MySQL reporting password

Have asked this question on Ask OpenStack, but few views and no responses. I'm trying to use the SqlAlchemy (basically MySQL) driver and have found that the password the driver attempts to use is set ...
1
vote
1answer
44 views

How to reuse / clone an sqlalchemy query

It seems to me like going through the whole process of creating the expression tree and then creating a query from it again is a wasted time when using sqlalchemy. Apart from an occasional dynamic ...
1
vote
1answer
36 views

How to monitor/log sqlalchemy scoped sessions?

I am working on a legacy application that uses SqlAlchemy and whose architecture is...well...suboptimal. I recently discovered there is a lot of (unneeded) mysql connections openned by the ...
0
votes
1answer
36 views

Why SQLAlchemy Session.filter().update/delete raise read-only exception when using RoutingSession?

The following is my config, slave is read-only: engines = { 'master': create_engine( ...
3
votes
1answer
60 views

Write-once read-only field

We need to implement a write-once (on object create) read-only field with SQLAlchemy/Elixir. A quick-and-dirty solution: class User(Entity): # some fields ... _created = ...
0
votes
0answers
37 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
69 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
1answer
48 views

Python/SQLAlchemy not updating instances with list of tuples

I've been learning to use SQLAlchemy and am trying to get it to load data already in the database, change values of the objects by adding a tuple to a list, then save/update them in the database. For ...
0
votes
1answer
27 views

SQLAlchemy - How to Filter Properties of Related Classes During Query Without Class Reference?

I struggled with the title for this question so let me just lay out the code: File A: class SomeClass(Base): __tablename__ = 'some_classes' id = Column(Integer, primary_key=True) ...
1
vote
1answer
41 views

SQLAlchemy creating two databases in one file with two different models

I want to initialize two databases with total different models in my database.py file. database.py engine1 = create_engine(uri1) engine2 = create_engine(uri2) session1 = ...
0
votes
1answer
46 views

measuring the insert time and query time on mysql-server using sqlalchemy

I have a python program using sqlalchemy that accesses the databse running a remote server.The remote server has mysql-server5.5 running on it.The relevant portions of the code is given below. log = ...
0
votes
1answer
33 views

Enthought Traits with SQLAlchemy

The question is obvious: is it possible to use both ets Traits and SQLAlchemy for the same class? If no, what an alternative approach could you suggest?
4
votes
1answer
447 views

How to make SQLAlchemy in Tornado to be async?

How to make SQLAlchemy in Tornado to be async ? I found example for MongoDB on async mongo example but I couldn't find anything like motor for SQLAlchemy. Does anyone know how to make SQLAlchemy ...
1
vote
1answer
56 views

Assign python Decimal objects to MySQL DECIMAL columns

I have a table "City" defined as: CREATE TABLE `City` ( `id` int(11) NOT NULL, `lat` decimal(9,6) default NULL, `long` decimal(9,6) default NULL, `lm_index` int(11) default NULL, ...
2
votes
4answers
142 views

Using sqlalchemy session to execute sql DRASTICALLY slows execution time

I have a rather long query (was 7 joins, now is 7 subselects because in raw sql 7 subselects was considerably faster-- I don't even know when the 7 joins would have finished if I'd let it run, but ...
0
votes
2answers
126 views

Warning: Data truncated for column 'src_address' at row 1

from pox.core import core import pox.openflow.libopenflow_01 as of import re import datetime import time from sqlalchemy import create_engine, ForeignKey from sqlalchemy import Column, Date, Integer, ...
1
vote
1answer
41 views

InvalidRequestError: VARCHAR requires a length on dialect mysql

I am trying to create a remote database using mysql on an Ubuntu machine running 12.04. It has a root user with remote login enabled and no password.I have started the server. output of sudo ...
1
vote
1answer
106 views

OperationalError: (OperationalError) (2003, “Can't connect to MySQL server on '192.168.129.139' (111)”) None None

I am trying to create a remote database using mysql on an Ubuntu machine running 12.04. It has a root user with remote login enabled and no password.I have started the server. output of sudo ...
0
votes
1answer
31 views

SQLAlchemy not producing proper SQL statement for multi column UniqueConstraints

Below are the two different attempts I have made in trying to achieve a multi-column unique constraint in sqlalchemy, both of which seems to have failed since a proper SQL statement is not being ...
0
votes
1answer
14 views

Add prefix_with clause to insert of a particular class

How can I customize the prefix_with of each model class in SQLAlchemy such that each one can have a different insert statement? I actually want the OR IGNORE clause added to some of the classes. PS: ...
1
vote
2answers
88 views

sqlalchemy OperationalError: (OperationalError) (1045, "Access denied for user

I am trying to create a remote database using mysql on an Ubuntu machine running 12.04. It has a root user with remote login enabled.I have started the server. output of sudo netstat -tap | grep ...
0
votes
1answer
53 views

How do I write a query to get sqlalchemy objects from relationship?

I am learning python and using the framework pyramid with sqlalchemy as the orm. I can not figure out how relationships work. I have 2 tables, offices and users. the foreign key is on the users table ...
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 ...
1
vote
2answers
119 views

sqlalchemy OperationalError: (OperationalError) unable to open database file None None

I am trying to create a database in a remote system.The relevant code is given below log = core.getLogger() engine = ...
1
vote
1answer
92 views

remote database creation in sql alchemy via sqlite

I have an sqlalchemy application that currently uses a local database.The code for the application is given below. log = core.getLogger() engine = create_engine('sqlite:///nwtopology.db', ...
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
1answer
42 views

Double Relationship in SQLalchemy

I got following problem in sqlalchemy. I made three different tables in sqlite, the first has no realtion, the second has a relation to the first and the third a relation to the second. So when I want ...
0
votes
1answer
93 views

Sqlalchemy attribute error- Eclipse

I am trying this in my PyDev setup on eclipse: from sqlalchemy.engine import create_engine This gives me following error: Traceback (most recent call last): File ...
2
votes
1answer
26 views

SQLAlchemy aliases not aliasing?

I have the following sqlalchemy code: x = bbc.alias().c w = bbc.alias().c select([func.distinct(x.region)]).where( select([func.sum(w.population)]).where((w.region == x.region)) > 100000000 ) ...
0
votes
1answer
33 views

how to deal with multiple arguments in a dictionary construct when query in sqlalchemy?

In sqlalchemy, I define a function whose argument is a dictionary may contain multiple key-values.I want to query according to the key-values. Here is my program: def get_contact_conditions(kwds): ...
0
votes
1answer
62 views

Insert new one-to-many data into tables with SQLAlchemy ORM

I'm trying to insert rows into a database that has three tables: Artists Songs Media (like a youtube video) Artists has a one-to-many relationship with Songs and Songs has one-to-many relationship ...
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
1answer
49 views

update tables with computed columns in sqlalchemy

I'm working in a legacy MSSQL database using SQLalchemy, for which I have a declarative mapping. This database has several tables that have computed columns. I can read them fine, but (of course) ...
0
votes
2answers
95 views

UnicodeEncodeError:'latin-1' codec can't encode characters in position 0-1: ordinal not in range(256)

i am a newer in python.Today when I write some search function I met an error.well, I use sqlalchemy orm to do that, in my function,I input a chinese word as the key word.The html page give me an ...
0
votes
1answer
47 views

Get attribute of object from relationship in sqlalchemy

Consider the following code defining some classes: from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column, Integer, Float, String, DateTime from sqlalchemy import ...
0
votes
1answer
38 views

What is the proper way to model this type of inheritance with SQLAlchemy?

I have a pair of PostgreSQL tables that look somewhat like this (simplified example): CREATE TABLE people ( id SERIAL PRIMARY KEY, created timestamp with time zone DEFAULT now() NOT NULL, ...
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 ...
2
votes
1answer
32 views

SQLAlchemy with single table inheritance expunge error

I'm having an issue with python SQLAlchemy single table inheritance. Model: class User(Base): __tablename__ = 'user' userID = Column(String(64), primary_key=True) name = ...
1
vote
1answer
35 views

How to do a safe (constraint) implicit join in SQLAlchemy?

I consider a safe JOIN one which is constrained by its foreign key. And an implicit one which only mentions its target. In SQLAlchemy, session.query(User).join(Addresse) might or might not be ...
2
votes
1answer
82 views

query from sqlalchemy returns AttributeError: 'NoneType' object

from pox.core import core import pox.openflow.libopenflow_01 as of import re import datetime from sqlalchemy import create_engine, ForeignKey from sqlalchemy import Column, Date, Integer, String from ...
1
vote
1answer
32 views

error in sqlalchemy after replacing count query with exists query [duplicate]

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

Unique Sequencial Number to column

I need create sequence but in generic case not using Sequence class. USN = Column(Integer, nullable = False, default=nextusn, server_onupdate=nextusn) , this funcion nextusn is need generate ...
0
votes
0answers
82 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 ...

1 2 3 4 5 59