Tagged Questions
6
votes
2answers
866 views
Update an sqlite database schema with sqlalchemy and elixir
I've created a python application which uses elixir/sqlalchemy to store data. The second release of the software requires any files created in the previous version to be updated in order to add/delete ...
5
votes
1answer
2k views
Selecting distinct column values in SQLAlchemy/Elixir
In a little script I'm writing using SQLAlchemy and Elixir, I need to get all the distinct values for a particular column. In ordinary SQL it'd be a simple matter of
SELECT DISTINCT `column` FROM ...
5
votes
2answers
795 views
Pylons with Elixir
I would like to use Pylons with Elixir, however, I am not sure what is the best way to get about doing this. There are several blog posts (cleverdevil, beachcoder, adam hoscilo) and even an entire new ...
4
votes
3answers
470 views
4
votes
2answers
283 views
Is elixir out-dated?
My sqlalchemy is 0.6.3, and elixir is 0.7.1
I created a model class which extends Entity:
from elixir import *
class User(Entity):
pass
And save the a user as:
user = User()
user.save()
It ...
4
votes
2answers
501 views
SQLAlchemy and Elixir?
I have been using django ORM, it's nice and very easy, but this time I'm doing a desktop app and I found SQLAlchemy, but I'm not sure to use it with Elixir. What do you think? is it really useful?
4
votes
5answers
2k views
Execute sql query with Elixir
I'm using Elixir in a project that connects to a postgres database. I want to run the following query on the database I'm connected to, but I'm not sure how to do it as I'm rather new to Elixir and ...
3
votes
2answers
62 views
How to iterate through every class declaration, descended from a particular base class?
I was wandering how does elixir\sqlalchemy get to know all the entity classes I've declared in my model, when I call setup_all()? I need that kind of functionality in a little project of mine, but I ...
3
votes
3answers
426 views
MySQL server has gone away - Elixir/SQLAlchemy - Disconnect handling via checkout event handler doesn't work
Update 3/4:
I've done some testing and proved that using checkout event handler to check disconnects works with Elixir. Beginning to think my problem has something to do with calling session.commit() ...
2
votes
2answers
77 views
Elixir for Python 3?
I have a problem installing Elixir with Python 3 although I have installed SqlAlchemy 0.7.3 successfully? I've tried google-ing but I am loosing hope. Is there really a version of Elixir for Python 3? ...
2
votes
1answer
567 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
0answers
205 views
Feedback for Camelot
My needs :
I need to develop an GUI application that is cross platform
the chosen solution must be the fastest to implement
it should be easy to extend
The application is just a database ...
2
votes
1answer
302 views
Elixir - deleting rows in a ManyToMany intermediate table
I have two tables with a ManyToMany relation between them. Sometimes I need to refresh the
database so I delete elements from both tables. However relations
between deleted rows are still stored ...
1
vote
1answer
101 views
Why does Elixir/SQLAlchemy's session.bind get set to None within threads?
I'll start with some simplified test code to demonstrate the issue I'm referencing.
t_model.py
from elixir import *
metadata.bind = 'sqlite:///test.db'
session.bind = metadata.bind
t_main.py
...
1
vote
2answers
65 views
How to create an Elixir class that has a ManyToMany relationship with itself
I'm having trouble thinking this through, but basically I want to create an Elixir class called Assets which can have many Assets. So, it could look something like this (but this doesn't work, ...
1
vote
1answer
59 views
How do you save models in Elixir
I've got a database created using Django models which I'm now accessing using sqlalchemy and elixir. The querying works and I can pull items out of the database perfectly happily but when I edit them ...
1
vote
1answer
78 views
Using sqlalchemy.sql.functions.char_length as a filter condition
I'm using Elixir and sqla 0.6, and I'm trying to query my model:
class Document(Entity):
using_options(shortnames=True, order_by='doc_date')
doc_number = Field(Unicode(20),index=True)
...
1
vote
1answer
224 views
SQLAlchemy/Elixir - querying to check entity's membership in a many-to-many relationship list
I am trying to construct a sqlalchemy query to get the list of names of all professors who are assistants professors on MIT. Note that there can be multiple assistant professors associated with a ...
1
vote
1answer
408 views
How to do atomic increment/decrement with Elixir/SQLAlchemy
I'd like to increment (or decrement) a score field in an Elixir entity:
class Posting(Entity):
score = Field(Integer, PassiveDefault(text('0')))
def upvote(self):
self.score = self.score ...
1
vote
1answer
565 views
Elixir/SQLAlchemy equivalent to SQL “LIKE” statement?
I'm using the MySQLicious type schema described here for a simple tagging system.
I've read some alternative implementations of tagging schema in 4 different SO threads, and this suits my needs best.
...
1
vote
1answer
314 views
SQLAlchemy & Complex Queries
I have to implement ACL for an existing application.
So I added the a user, group and groupmembers table to the database.
I defined a ManyToMany relationship between user and group via the ...
1
vote
2answers
599 views
dump csv from sqlalchemy
For some reason, I want to dump a table from a database (sqlite3) in the form of a csv file. I'm using a python script with elixir (based on sqlalchemy) to modify the database. I was wondering if ...
1
vote
3answers
809 views
Sqlalchemy+elixir: How query with a ManyToMany relationship?
I'm using sqlalchemy with Elixir and have some troubles trying to make a query..
I have 2 entities, Customer and CustomerList, with a many to many relationship.
customer_lists_customers_table = ...
1
vote
2answers
493 views
How to create a non-persistent Elixir/SQLAlchemy object?
because of legacy data which is not available in the database but some external files, I want to create a SQLAlchemy object which contains data read from the external files, but isn't written to the ...
1
vote
0answers
155 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
1answer
98 views
In Elixir or SQLAlchemy, is there a way to also store a comment for a/each field in my entities?
Our project is basically a web interface to several systems of record. We have many tables mapped, and the names of each column aren't as well named and intuitive as we'd like... The users would like ...
1
vote
1answer
220 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)
def ...
1
vote
2answers
1k views
Issues with scoped_session in sqlalchemy - how does it work?
I'm not really sure how scoped_session works, other than it seems to be a wrapper that hides several real sessions, keeping them separate for different requests. Does it do this with thread locals?
...
1
vote
1answer
1k views
Elixir (SqlAlchemy): relations between 3 tables with composite primary keys
I've 3 tables:
A Company table with (company_id) primary key
A Page table with (company_id, url) primary key & a foreign key back to Company
An Attr table with (company_id, attr_key) primary key ...
1
vote
1answer
754 views
SQLAlchemy/Elixir validation rules?
I just found out how to validate my database input before saving it, but I'm kinda bummed to find there are no premade rules (like validate email, length, etc) that are found in some web based ...
0
votes
2answers
35 views
sqlalchemy column issue
In my plugin for Qgis I have to use two database, sqlite and mysql at the moment, for interfacing with them I use Elixir 0.7.1 and SqlAlchemy 0.7.4, as far I used only sqlite, everything was fine, ...
0
votes
1answer
45 views
Python Elixir OneToMany and ManyToOne implementation: On Inserting new record with OneToMany relationship?
How do you insert a record with one to many relationship in Python Elixir? See code below.
from elixir import *
class Product(Entity):
using_options(shortnames=True)
name = ...
0
votes
1answer
77 views
Elixir / SQLAlchemy: Order by Count of OneToMany Relationship
I am using Elixir for ORM but I have a problem trying to Order by a Relationship.
What I am trying to do is to get a list of users sorted by the number of posts they have. I have tried ways such as
...
0
votes
2answers
62 views
Elixir: How to create a class attribute and class property within Elixir/SqlAlchemy
Thanks in advance!
I have a class:
from sys import stderr
from elixir import *
from types import *
class User(Entity):
using_options(tablename="users")
first_name = Field(String(50))
...
0
votes
2answers
73 views
how to create index in elixir? by using sqlalchemy or what?
I'm using elixir, and I cannot find any index creation method,
and I'm not familiar with sqlalchemy, any examples?
0
votes
1answer
94 views
How do you make codes/lookup tables in Elixir?
I am looking for a/the best way to make lookup tables or use codes in a relational database made from Python's Elixir. I am not even sure my terminology here is correct.
For example, I have a ...
0
votes
1answer
140 views
sqlalchemy model definition at execution
I'm writing an orm using elixir/sqlalchemy to handle moving spreadsheet-like data into sql. In general, the content of the spreadsheet-like data is unknown, and pyparsing parses (meta) data about the ...
0
votes
1answer
487 views
SQLAlchemy IntegrityError
(Hi All,
I'm having a nasty problem using SQLAlchemy with PySide(PyQt). I'm trying to pop-up a QtGui.QDialog, but when I do this SQLAlchemy throws an exception:
Traceback (most recent call last):
...
0
votes
2answers
142 views
Problem querying from a model object
I'm trying to use Pylons with SqlAlchemy (through Elixir).
Here is my testdb/model/entities.py:
from elixir import *
metadata.bind = "mysql://testdb:hundertwasser@localhost/testdb"
...
0
votes
1answer
134 views
query.values fails with elixir
I have a problem with the elixir declarative layer, i want to retrieve, for every instance of my model, the data of a particular column, like that :
File.query.values("column")
The thing is, it ...
0
votes
1answer
95 views
Loading Elixir/SQLAlchemy models in .NET?
A new requirement has come down from the top: implement 'proprietary business tech' with the awesome, resilient Elixir database I have set up. I've tried a lot of different things, such as creating an ...
0
votes
1answer
122 views
Sharing model between Camelot and non-Camelot apps
I would like to share my data model between different Elixir/SQLAlchemy applications, one of which would be a Camelot UI and the others stuff like web interfaces and so on. They would all connect to ...
0
votes
1answer
97 views
Using Elixir, how can I get the table object of a self-referential relationship to perform inserts on?
I'm using Elixir with SQLite and I'd like to perform multiple inserts as per the docs:
http://www.sqlalchemy.org/docs/05/sqlexpression.html#executing-multiple-statements
However, my ManyToMany ...
0
votes
1answer
160 views
How do I create self-relationships in polymorphic inheritance in Elixir and Pylons?
I am new to programming and am following the example in the Pylons documentation on creating a Wiki. The database I want to link to the wiki was created with Elixir so I rewrote the Wiki database ...
0
votes
1answer
362 views
Elixir create_all() not creating database and tables
Hey,
I'm using Elixir 0.7.1 , Sqlalchemy 0.6beta1 , MySQLdb 1.2.2.
My Model file 'model.py' looks like this:
from elixir import *
from datetime import datetime
class Author:
first_name = ...
0
votes
2answers
551 views
Nested transactions with SQLAlchemy and sqlite
I'm writing an application in python using sqlalchemy (and Elixir) with sqlite as the database backend. I start a new transaction using the code session.begin_transaction(), but when I call ...
0
votes
1answer
236 views
Python SQLAlchemy/Elixer Question
I am trying to define a SQLAlchemy/Elixer model that can describe the following relationship. I have an SSP table, which has multiple Foreign Keys to the POC table. I've defined the ManyToOne ...
0
votes
2answers
126 views
Elixir Entity with a list of tuples in it. ex. Cooking Recipe with list of (ingrediant, quantity) tuple
I'm trying to build an elixir model in which I have a class with a list(of variable size) of tuples.
One example would be a recipe
while I can do something like this:
class Recipe(Entity):
...
0
votes
1answer
339 views
Elixir reflection
I define some Entities wich works fine; for meta programming issues, i now need to reflect the field properties defined in the model.
For example:
class Foo(Entity):
bar = OneToMany('Bar')
...
-1
votes
1answer
22 views
Elixir EntityCollection.remove() doesn't work
I'm trying to remove a certain Entity from the collection in a EntityCollection, which is not working, results in an exception: list.remove(x): x not in list.
Code excerpt as follows:
...