SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.
24
votes
3answers
3k views
How can I profile a SQLAlchemy powered application?
Does anyone have experience profiling a Python/SQLAlchemy app? And what are the best way to find bottlenecks and design flaws?
We have a Python application where the database layer is handled by ...
24
votes
2answers
3k views
Does SQLAlchemy have an equivalent of Django's get_or_create?
I want to get an object from the database if it already exists (based on provided parameters) or create it if it does not.
Django's get_or_create does this. Is there an equivalent shortcut in ...
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> ...
1
vote
4answers
533 views
How to disable SQLAlchemy caching?
I meet a cache problem when I use sqlalchemy. I use sqlalchemy insert a data into mysql database. I have the other application process this data then update this data directly. But my sqlalchemy ...
16
votes
4answers
7k views
SQLAlchemy and django, is it production ready?
Has anyone used SQLAlchemy in addition to Django's ORM?
I'd like to use Django's ORM for object manipulation and SQLalchemy for complex queries (like those that require left outer joins).
Is it ...
5
votes
3answers
959 views
Complex foreign key constraint in SQLAlchemy
I have two tables, SystemVariables and VariableOptions. SystemVariables should be self-explanatory, and VariableOptions contains all of the possible choices for all of the variables.
VariableOptions ...
3
votes
2answers
2k views
group by year, month, day in a sqlalchemy
I want "DBSession.query(Article).group_by(Article.created.month).all()"
But this query can't using
How do I do this using SQLAlchemy?
28
votes
4answers
19k views
Efficiently updating database using SQLAlchemy ORM
I'm starting a new application and looking at using an ORM -- in particular, SQLAlchemy.
Say I've got a column 'foo' in my database and I want to increment it. In straight sqlite, this is easy:
db ...
14
votes
2answers
5k views
I need a sample of python unit testing sqlalchemy model with nose
Can someone show me how to write unit tests for sqlalchemy model I created using nose.
I just need one simple example.
Thanks.
12
votes
2answers
3k views
memory-efficient built-in SqlAlchemy iterator/generator?
I have a ~10M record MySQL table that I interface with using SqlAlchemy. I have found that queries on large subsets of this table will consume too much memory even though I thought I was using a ...
13
votes
1answer
711 views
How to integrate SQLAlchemy and a subclassed Numpy.ndarray smoothly and in a pythonic way?
I would like to store numpy-arrays with annotations (like name) via SQLAlchemy within a relational database. To do so,
I seperate the numpy array from its data via an data transfere object ...
7
votes
3answers
4k views
Scanning huge tables with SQLAlchemy using the ORM
I am currently playing around with SQLAlchemy a bit, which is really quite neat.
For testing I created a huge table containing my pictures archive, indexed by SHA1 hashes (to remove duplicates :-)). ...
19
votes
3answers
3k views
Twisted + SQLAlchemy and the best way to do it
So I'm writing yet another Twisted based daemon. It'll have an xmlrpc interface as usual so I can easily communicate with it and have other processes interchange data with it as needed.
This daemon ...
11
votes
1answer
781 views
Multiple domains and subdomains on a single Pyramid instance
I'm looking to have multiple domains and subdomains on a single Pyramid instance. However, I can't seem to find any documentation on it. The last question referred to a glossary with very little ...
9
votes
2answers
2k views
Why is SQLAlchemy insert with sqlite 25 times slower than using sqlite3 directly?
Why is this simple test case inserting 100,000 rows 25 times slower with SQLAlchemy than it is using the sqlite3 driver directly? I have seen similar slowdowns in real-world applications. Am I doing ...
10
votes
4answers
7k views
How to serialize SqlAlchemy result to JSON?
Django has some good automatic serialization of ORM models returned from DB to JSON format.
How to serialize SQLAlchemy query result to JSON format?
I tried "jsonpickle.encode" but it encodes query ...
5
votes
2answers
3k views
SQLAlchemy declarative syntax with autoload (reflection) in Pylons
I would like to use autoload to use an existings database. I know how to do it without declarative syntax (model/_init_.py):
def init_model(engine):
"""Call me before using any of the tables or ...
3
votes
2answers
459 views
Unable to connect to Google Cloud SQL from development server using SQLAlchemy
I've been unsuccessful at connecting to Google Cloud SQL using SQLAlchemy 0.7.9 from my development workstation (in hopes to generate the schema using create_all()). I can't get passed the following ...
19
votes
9answers
9k views
Convert sqlalchemy row object to python dict
or a simple way to iterate over columnName, value pairs?
My version of sqlalchemy is 0.5.6
Here is the sample code where I tried using dict(row), but it throws exception , TypeError: 'User' object ...
9
votes
2answers
2k views
Handle mysql restart in SQLAlchemy
My Pylons app uses local MySQL server via SQLAlchemy and python-MySQLdb. When the server is restarted, open pooled connections are apparently closed, but the application doesn't know about this and ...
15
votes
4answers
2k views
How to efficiently manage frequent schema changes using sqlalchemy?
I'm programming a web application using sqlalchemy. Everything was smooth during the first phase of development when the site was not in production. I could easily change the database schema by simply ...
14
votes
2answers
3k views
SQLAlchemy Inheritance
I'm a bit confused about inheritance under sqlalchemy, to the point where I'm not even sure what type of inheritance (single table, joined table, concrete) I should be using here. I've got a base ...
13
votes
5answers
7k views
jsonify a SQLAlchemy result set in Flask
I'm trying to jsonify a SQLAlchemy result set in Flask/Python.
The Flask mailing list suggested the following method ...
11
votes
3answers
3k views
SQLAlchemy: print the actual query
I'd really like to be able to print out valid SQL for my application, including values, rather than bind parameters, but it's not obvious how to do this in SQLAlchemy (by design, I'm fairly sure).
...
13
votes
2answers
2k views
SQLAlchemy - Dictionary of tags
I have question regarding the SQLAlchemy. How can I add into my mapped class the dictionary-like attribute, which maps the string keys into string values and which will be stored in the database (in ...
22
votes
4answers
4k views
method of iterating over sqlalchemy model's defined columns?
I've been trying to figure out how to iterate over the list of columns defined in a SqlAlchemy model. I want it for writing some serialization and copy methods to a couple of models. I can't just ...
10
votes
2answers
2k views
Can SQLAlchemy be configured to be non-blocking?
I'm under the impression that database calls through SQLAlchemy will block and aren't suitable for use in anything other than synchronous code. Am I correct (I hope I'm not!) or is there a way to ...
7
votes
1answer
2k views
Inserting data in Many to Many relationship in SQLAlchemy
Suppose I have 3 classes in SQLALchemy: Topic, Tag, Tag_To_Topic.
Is it possible to write something like:
new_topic = Topic("new topic")
Topics.tags = ['tag1', 'tag2', 'tag3']
Which I would like ...
5
votes
6answers
2k views
Full text search engine for Python
I'm searching for a Python full text search engine.
I took a look at PyLucense, but I think that using a Java-based library in a Python project is not good. As I understand, Sphinx does not have a ...
13
votes
2answers
3k views
How do you set up a Flask application with SQLAlchemy for testing?
It seems common practice in Flask to start like this:
from flask import Flask
from flaskext.sqlalchemy import SQLAlchemy
app = Flask(__name__)
SQLALCHEMY_DATABASE_URI = 'something'
...
5
votes
3answers
1k views
Can SQLAlchemy be used with Google Cloud SQL?
I've looked over Google Cloud SQL's documentation and various searches, but I can't find out whether it is possible to use SQLAlchemy with Google Cloud SQL, and if so, what the connection URI should ...
1
vote
4answers
2k views
Using SQL Alchemy and pyodbc with IronPython 2.6.1
I'm using IronPython and the clr module to retrieve SQL Server information via SMO. I'd like to retrieve/store this data in a SQL Server database using SQL Alchemy, but am having some trouble loading ...
6
votes
2answers
1k views
Turn off a warning in sqlalchemy
I'm using sqlalchemy with reflection, a couple of partial indices in my DB make it dump warnings like this:
SAWarning: Predicate of partial index i_some_index ignored during reflection
into my logs ...
7
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')),
...
6
votes
1answer
1k views
SQLAlchemy - build query filter dynamically from dict
So I have a dict passed from a web page. I want to build the query dynamically based on the dict. I know I can do:
session.query(myClass).filter_by(**web_dict)
However, that only works when the ...
5
votes
2answers
3k views
Python dicts in sqlalchemy
I would like to load/save a dict to/from my sqlite DB, but am having some problems figuring out a simple way to do it. I don't really need to be able to filter, etc., based on the contents so a simple ...
5
votes
1answer
4k views
simple update in sqlalchemy
UserTable is:
id (INT)
name (STR)
last_login (DATETIME)
Serving a web page request i have a user id in hand and I only wish to update the last_login field to 'now'.
It seems to me that there are ...
4
votes
2answers
2k views
How do I INSERT INTO t1 (SELECT * FROM t2) in SQLAlchemy?
In SQLAlchemy, how do I populate or update a table from a SELECT statement?
3
votes
1answer
948 views
creating a temporary table from a query using sqlalchemy orm
I can create a temporary table this way:
session.execute("CREATE TABLE temptable SELECT existingtable.id, "
"existingtable.column2 FROM existingtable WHERE existingtable.id<100000")
but the ...
3
votes
1answer
1k views
Creating self-referential tables with polymorphism in SQLALchemy
I'm trying to create a db structure in which I have many types of content entities, of which one, a Comment, can be attached to any other.
Consider the following:
from datetime import datetime
from ...
3
votes
1answer
2k views
How to discover table properties from SQLAlchemy mapped object
I have a class mapped with a table, in my case in a declarative way, and I want to "discover" table properties, columns, names, relations, from this class:
engine = create_engine('sqlite:///' + ...
2
votes
1answer
911 views
SQLAlchemy wont update my database
I'm making a pyramid app using SQLAlchemy-0.7.8. I'm using 64bit Python3.2.
The question is, why does the following function not commit anything to the database?
def create_card(sText,sCard):
...
2
votes
1answer
712 views
Reusing SQLAlchemy models across projects
I have some standard SQLAlchemy models that I reuse across projects. Something like this:
from sqlalchemy import Column, Integer, String, Unicode
from sqlalchemy.ext.declarative import ...
0
votes
1answer
428 views
How to config Many-to-many with condition, in Sqlalchemy
I'm use sqlalchemy 0.6.4.
I have 2 classes: Question and Tag, they are many-to-many.
class Question(Base):
__tablename__ = "questions"
id = Column(Integer, primary_key=True)
deleted = ...
7
votes
2answers
2k views
Is it possible to use Mysql with SqlAlchemy and Flask if my mysql socket isn't in /tmp?
The location for mysql.sock on my system is /usr/local/mysql5/mysqld.sock
thrilllap-2:tmp reuven$ mysqld --print-defaults
mysqld would have been started with the following arguments:
...
7
votes
1answer
2k views
how to pass a not like operator in a sqlalchemy ORM query
I've got a query:
MyModel.query.filter(Mymodel.name.contains('a_string'))
I need to do the same query but with the negation (a not like operator) but didn't find any operator matching my need in ...
6
votes
4answers
4k views
SQLAlchemy - INSERT OR REPLACE equivalent
does anybody know what is the equivalent to SQL "INSERT OR REPLACE" clause in SQLAlchemy and its SQL expression language?
Many thanks -- honzas
4
votes
3answers
455 views
python enumeration class for ORM purposes
EDITED QUESTION
I'm trying to create a class factory that can generate enumeration-like classes with the following properties:
Class is initialized from the list
of allowed values (i.e., it's
...
3
votes
4answers
1k views
Hang in Python script using SQLAlchemy and multiprocessing
Consider the following Python script, which uses SQLAlchemy and the Python multiprocessing module.
This is with Python 2.6.6-8+b1(default) and SQLAlchemy 0.6.3-3 (default) on Debian squeeze.
This is ...
2
votes
2answers
1k views
SQLAlchemy: Relation table with composite primary key
I have a set of tables that look like:
workflows = Table('workflows', Base.metadata,
Column('id', Integer, primary_key=True),
)
actions = Table('actions', ...