Tagged Questions
The sqlobject tag has no wiki summary.
11
votes
2answers
2k views
Any reasons not to use SQLObject over SQLAlchemy?
I don't expect to need much more than basic CRUD type functionality. I know that SQLAlchemy is more flexible, but the syntax etc of sqlobject just seem to be a bit easier to get up and going with.
4
votes
2answers
281 views
python: Why does SQLObject fail in conn.autocommit(1)?
In my server code, there is a call to _SO_fetchAlternateID (nested in some value call), which ultimately calls makeConnection in pgconnection.py.
This call fails on conn.autocommit(1), with the ...
4
votes
2answers
351 views
Django: Store Hierarchical Data
I'm trying to store sections of a document in a Django app. The model looks like:
class Section(models.Model):
project = models.ForeignKey(Project)
parent_section = models.ForeignKey('Section', ...
3
votes
4answers
157 views
sql select from a large number of IDs
I have a table, Foo. I run a query on Foo to get the ids from a subset of Foo. I then want to run a more complicated set of queries, but only on those IDs. Is there an efficient way to do this? The ...
2
votes
4answers
427 views
Remove duplicates in list of object with Python
I've got a list of objects and I've got a db table full of records. My list of objects has a title attribute and I want to remove any objects with duplicate titles from the list (leaving the ...
2
votes
1answer
572 views
Should I be using SQLObject, SQLAlchemy, or SQLAlchemy + Elixir?
I've been using SQLObject for a long while, but noticed that SQLAlchemy has become a lot more popular in the last couple years: http://www.google.com/trends?q=sqlobject,+sqlalchemy
Are there ...
2
votes
1answer
805 views
IronPython db-api 2.0
Does anyone know which if any db-api 2.0 drivers work with IronPython? If so, has anyone tried using it with SQLAlchemy, SQLObject or the Django ORM?
1
vote
0answers
15 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
1answer
58 views
Good idea/Best way to extend Spine.Model
[background below]
I've got my data modelled out in SQLObject in Python on the back-end. Right now I'm converting an SQLObject to a dict, and grabbing all the keys from the dict and then exporting ...
1
vote
1answer
62 views
A more pythonic way to build a class based on a string (how not to use eval)
OK.
So I've got a database where I want to store references to other Python objects (right now I'm using to store inventory information for person stores of beer recipe ingredients).
Since there are ...
1
vote
0answers
49 views
Migrating data from one sqlite database to multiple SQLite databases using SQLObject
Till now our application has been using one SQLite database with SQLObject as the ORM. Obviously at some point we knew we had to face the SQLite concurrency problem and so we did.
We ended up ...
1
vote
3answers
75 views
python raw string assignment
Given a file contains lines such as:
(?i:\bsys\.user_catalog\b)
While reading those line, I want the value to be a raw string (unescaped), meaning, in memory, line should be
...
1
vote
1answer
89 views
Error returned when running imdbpy2sql.py with MySQL database
I am working on getting IMDbPY installed and working and I have come to a point where I am working on pulling in all of the data from the flat (text) files in to a (MySQL) database.
When I run the ...
1
vote
1answer
44 views
How to make mysql connection that requires CA-CERT with sqlalchemy or SQLObject
I would like to connect to a MySQL database that requires ca-cert. I can do it with MySQLdb like below:
MySQLdb.connect(host = self.host,
port = self.port,
...
1
vote
3answers
120 views
web presenting framework for SQLObject/SQLAlchemy projects
I'm looking for the most graceful way of taking a non-web project based on either SQLObject or SQLAlchemy and overlay it with a decent web-framework.
I've looked at Turbogears, and even though it ...
1
vote
2answers
139 views
Python: get escaped SQL string
When I have a cursor, I know I can safely execute a query as follows:
cur.execute("SELECT * FROM foo WHERE foo.bar = %s", (important_variable,))
Is there any way to just get the string safely ...
1
vote
1answer
182 views
Sorting by a field of another table referenced by a foreign key in SQLObject
Is it possible to sort results returned by SQLObject by a value of another table?
I have two tables:
class Foo(SQLObject):
bar = ForeignKey('Bar')
class Bar(SQLObject):
name ...
1
vote
3answers
389 views
Is this a good approach to avoid using SQLAlchemy/SQLObject?
Rather than use an ORM, I am considering the following approach in Python and MySQL with no ORM (SQLObject/SQLAlchemy). I would like to get some feedback on whether this seems likely to have any ...
1
vote
1answer
128 views
How to do create_or_update in sqlobject?
I'm using SQLobject and so far was not able to find a elegant solution for "update row in the db or vreate a new one if it doesn't exist.
Currently I use following somewhat convoluted code:
args = ...
0
votes
2answers
38 views
Choosing Python/SQLObject webframework
I have a regular desktop application which is written in Python/GTK and SQLObject as ORM. My goal is to create a webinterface where a user can login and sync/edit the database. My application is split ...
0
votes
1answer
83 views
Easier way to create a JSON object from an SQLObject
EDIT -- took the code from below and made it so it can handle ForiegnKeys, Decimal numbers (although i'm doing a very forced float conversion). It returns a dict now so it can be recursive.
from ...
0
votes
1answer
53 views
How to manage db connections using webpy with SQLObject?
Web.py has its own database API, web.db. It's possible to use SQLObject instead, but I haven't been able to find documentation describing how to do this properly. I'm especially interested in ...
0
votes
1answer
29 views
ManyToMany relationships on the same table in SQLObject
My google foo has been coming up short on this, so I throw this to the geniuses here.
I'm writing some beer recipe creation software and I've got a class in SQLObject and I'd like to have a ...
0
votes
1answer
38 views
sqlobject: leak memory using selectby method
I had discovered that using selectby method with sqlobject there are leak memory.
For example, when I execute this code:
connection = ...
0
votes
1answer
400 views
Web Server/Database Performace CherryPy + MySQL + SQLObject
I've got 100,000 users running my app which stores their data locally. I'm now releasing cell phone apps and need to sync the data through a web server (and allow some operations to be performed on ...
0
votes
1answer
113 views
How do I install SQLObject for use with Python?
I need to use SQLObject with Python and I downloaded SQLObject-1.0.0-py2.6.egg but I have no idea what to do next.
0
votes
2answers
170 views
Simple multi-threading with SQLObject doesn't work
It stucks once I execute .getOne():
from sqlobject import *
import threading
sqlhub.processConnection = connectionForURI('mysql://user:password@localhost:3306/database')
class Player(SQLObject):
...
0
votes
1answer
58 views
using eval to programmatically define an SQLQuery q object
I'm using SQLObject and want to programmatically build a query using the .q objects (or some other way) -- but do not want to revert to actual SQL.
I'm trying to do something like:
column = 'name'
...
0
votes
0answers
38 views
How could I improve a performance issue for my SQL todos database (for a python lib that I'm wirtting)?
Ohai,
Here is a description of my problem:
Context
I've written a python lib to managed my database of todos (in the GTD's style, pretty much like tracks). The idea is to easily script and build ...
0
votes
1answer
245 views
How to translate this to SQLObject: SELECT DISTINCT columnname WHERE
I've been going through the sqlobject and sqlbuilder documentation and forums and I cannot seem to grasp the information there.
I have a specific SQL query that I need:
select distinct author from ...
0
votes
3answers
277 views
create temporary table from cursor
Is there any way, in PostgreSQL accessed from Python using SQLObject, to create a temporary table from the results of a cursor?
Previously, I had a query, and I created the temporary table directly ...
0
votes
2answers
226 views
SQL get data out of BEGIN; …; END; block in python
I want to run many select queries at once by putting them between BEGIN; END;. I tried the following:
cur = connection.cursor()
cur.execute("""
BEGIN;
SELECT ...;
END;""")
res = cur.fetchall()
...
0
votes
1answer
176 views
sqlobject: No connection has been defined for this thread or process
I'm using sqlobject in Python. I connect to the database with
conn = connectionForURI(connStr)
conn.makeConnection()
This succeeds, and I can do queries on the connection:
g_conn = ...
0
votes
1answer
91 views
SQL Server: Can INFORMATION_SCHEMA Tell Me When a SQL Object Was Created?
Given:
I added a non-nullable foreign key to a table.
I settled on a way to populate the foreign key with default values.
I checked in both changes to a re-runnable DB creation script.
Other ...
0
votes
1answer
26 views
SQLObject: How do I prevent a specific class from being cached?
SQLObject caching is very aggressive for me. Can I prevent one specific class from being cached?
0
votes
1answer
102 views
Using illegal names in MySQL through SQLObject
How to use illegal names for MySQL with SQLObject?
In pure SQL it is possible to use backquotes, say:
SELECT `select from` FROM table1 WHERE 1;
...can be used to select the field called select ...
0
votes
1answer
148 views
Error while importing SQLObject on Windows
I am getting following error while importing SQLObject on Window. Does anyone knows what is this error about and how to solve it?
==============================
from sqlobject import *
File ...
0
votes
1answer
237 views
Executing SQL LIKE in SQLObject
Is there a pretty way to execute an SQL statement with a LIKE in SQLObject?
This one works, but it's somewhat ugly:
fields = Foo.select("field LIKE '%%%s%%'" % bar)
0
votes
3answers
393 views
Database change underneath SQLObject
I'm starting a web project that likely should be fine with SQLite. I have SQLObject on top of it, but thinking long term here -- if this project should require a more robust (e.g. able to handle high ...
-1
votes
1answer
526 views
SQL Alchemy or SQL Object in Bottle Python
hi i am a newbie just starting off on bottle.py framework does anyone have a sample CRUD application that we can learn from? secondly which of the two wrappers runs faster in bottle?thanks.