1
vote
1answer
28 views
Converting SQL commands to Python’s ORM
How would you convert the following codes to Python's ORM such as by SQLalchemy?
#1 Putting data to Pg
import os, pg, sys, re, psycopg2 …
0
votes
2answers
20 views
How to get sqlalchemy length of a string column
e.g. consider this simple table definition (using SQLAlchemy-0.5.6)
from sqlalchemy import *
db = create_engine('sqlite:///tutorial.db')
db.echo = False # Try changing this to …
4
votes
6answers
373 views
Is there anything similar to SQLAlchemy?
I've recently started to fell in love with SQLAlchemy. You can write clean and fast SQL statements without having to write one line of SQL. There is no need to write most of the me …
6
votes
3answers
531 views
Does SQLAlchemy support caching?
Does SQLAlchemy support some kind of caching so if i have lots of time the same query it would return the response from cache instead of querying the database until i clear the cac …
0
votes
3answers
45 views
Select statement with SqlAlchemy
Yes, very basic question.
I've successfully created my db using declarative_base, and can perform inserts into the db too. I just have a few questions about SqlAlchemy sql statemen …
0
votes
1answer
12 views
Django: Is there an in_ lookup for querying model objects like there is for SQLAlchemy queries?
I'm trying to accomplish something like this:
userSelectionIDs = [pref.selectionID for pref in UserColumnSelectionPreference.objects.filter(user=reqUser).all()]
selections = C …
0
votes
0answers
7 views
How can I add new objects to FormAlchemy’s Grid
I'd like to implement an "add row" button on some of my FormAlchemy grid forms to create objects.
Reading through the source it would appear that there isn't this functionality at …
2
votes
1answer
53 views
Can SQLAlchemy update the table structure ?
Hello,
I am working on my first pylons + SQLAlchemy app (I'm new to both).
As I change my mind on the table structure, I wish there was a similar function to metadata.create_all( …
0
votes
1answer
35 views
sqlalchemy REST serialization
Reading the doc of sqlalchemy, i saw the serialization part.
I'm wondering about a possibility to use an xml serializer for matching sa models with Rest webservices like Jax-RS
The …
1
vote
1answer
35 views
Alternate forms libraries on django eg sprox, formalchemy
Has anyone had any joy/pain with using other form libraries in django projects (with SQLAlchemy models initially, but perhaps to use with django models in future)?
Initial impress …
1
vote
1answer
19 views
Elixir not creating my tables with default values
class MyObject(Entity):
name = Field(Unicode(256), default=u'default name', nullable=False)
using_options(shortnames=True)
using_mapper_options(save_on_init=False)
…
0
votes
1answer
18 views
SQLAlchemy 0.5.5 - defining table schema
I used sqlautocode to generate a model.py for an existing MySQL database and here's a table example:
fusion_articles = Table('fusion_articles', metadata,
Column(u'article_id' …
1
vote
1answer
35 views
Are there database testing tools for python (like sqlunit)?
Are there database testing tools for python (like sqlunit)? I want to test the DAL that is built using sqlalchemy
0
votes
1answer
16 views
How do I get the value of a property corresponding to a SQLAlchemy InstrumentedAttribute?
Given a SQLAlchemy mapped class Table and an instance of that class t, how do I get the value of t.colname corresponding to the sqlalchemy.org.attributes.InstrumentedAttribute inst …
0
votes
2answers
125 views
Override default in sqlalchemy reflected tables
Hi All,
I've reflecting a load of tables in an exiting mysql db. I want to express that any columns of a certain name in any table default to datetime.now(). However naively loopi …
