Tagged Questions
0
votes
1answer
31 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
0answers
52 views
How to handle with OOP aggregation in sqlalchemy
I have an aggregation relationship:
class XXX(Base):
__tablename__ = 'XXX'
id = Column(mysql.INTEGER, primary_key=True)
xxxx = Column(mysql.VARCHAR(length=127))
def __init__(self, ...
-1
votes
4answers
109 views
If you're not using an ORM, what is an efficient way to handle your boilerplate CRUD?
I am writing a forum-like component for a site, and it's use cases are pretty similar to something like reddit or quora, where things like topics, posts, groups, etc. are created. I am using python ...
0
votes
0answers
106 views
SQLAlchemy join with filtering doesn't actually filter
The problem is in the header of topic. So here are the details.
I am using Flask-SQLAlchemy and PostgreSQL and my db schema is like this:
class Settings(db.Model):
id = db.Column(db.Integer, ...
0
votes
1answer
47 views
Super with sqlalchemy mixins for default values
I have an sqlalchemy mixin and I want to set a default value for the mixin's column, but I haven't found a direct answer and have resorted the the trial and error of the sort of scientific method ...
0
votes
1answer
47 views
sqlalchemy graph database data manipulation
I am designing a graph database structure. A Node could be a person, a department etc. That is why I have added nodeType. Relations between nodes can be of multiple types as well.
From the code below ...
0
votes
1answer
185 views
SQLAlchemy - Mapping a Class against Multiple Tables, one of which is read only
I have a foobar concept which is represented by the 'foobar' and 'foobar_data_cache' tables is the database and with the 'Foobar' class is python.
The 'foobar' table represents some data about the ...
4
votes
2answers
128 views
Should I extract functionality from this model class into a form class? (ActiveRecord Pattern)
I am in the midst of designing an application following the mvc paradigm. I'm using the sqlalchemy expression language (not the orm), and pyramid if anyone was curious.
So, for a user class, that ...
1
vote
1answer
229 views
Is there an embedded database protocol which is faster than SQLite for VERY large databases? [closed]
This question was asked a little while ago, but I'm looking for something more specific: for a relational database with, say, several billion rows in several tables, what is the fastest serverless ...
1
vote
3answers
617 views
One-to-many relationships SQLAlchemy that depend on each other
I'm trying to get the following models working together. Firstly the scenario is as follows:
A user can have many email addresses, but each email address can only be associated with one user;
Each ...
1
vote
1answer
179 views
Storing Different Types of Questions and Answers in a Relational Database
I have three types of questions:
Vocab (represented by question:answer pairs)
Grammar (represented by question:[list, of, answers])
Listening (represented by question:answer --where value is an ...
2
votes
1answer
675 views
SQLAlchemy declarative: table without any primary keys?
How to create a table using ORM Declarative class without primary key?
It failed to start if i didn't make any column the primary_key = True.
0
votes
2answers
132 views
sqlalchemy / table setup
I have items, warehouses, and items are in warehouses.
So I have table that has information about items (sku, description, cost ...) and a table that describes warehouses(location, code, name, ...). ...
0
votes
1answer
36 views
Getting back a specific type for a relationship when using inheritance?
What I have so far is the following tables:
|nodes| |types| |persons| |images|
Where |persons| and |images| are |types| and |nodes| has |types|.
I'm trying to represent the database schema I have ...
5
votes
3answers
960 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 ...
0
votes
1answer
153 views
SQLAlchemy: Efficient way of merging duplicate tags
Let's say I have a database full of Tag objects. Each Tag has an id and a name. In the beginning of making the database I allowed for case sensitive Tags, however, I later realized I didn't need/want ...
2
votes
2answers
182 views
Python, SqlAlchemy: Many to many relationship, find those without
Say I have two types of objects, Movies and Tags, related by the ORM in a many to many relationship with an association table indicated by the secondary argument to relationship(), and I want to be ...
1
vote
1answer
409 views
Python, SQLAlchemy: Query, filter and return value
Say I run a query with a filter,
Session.query(model.Place).join(model.Location).filter(model.Location.great_circle_distance(location) < r)
In order to get the results of this query, it had to ...
1
vote
1answer
70 views
Corresponding Objects to Tables in Database Design
Say I have an object which is composed of multiple pieces of information: rating, like, comment. Let's call this object a preference. Each preference would be associated with a user. That is, each ...
2
votes
1answer
76 views
Implementing “likes” in SQLAlchemy
Implementing "likes" in many applications is really trivial task. However, the problem with likes in application I'm currently developing is: there are many entities that can be "liked" (e.g.: post, ...
1
vote
2answers
1k views
Sqlalchemy: Latitude and Longitude Float Precision?
I'm using Sqlalchemy to define my tables and such and here is some code I came up with:
locations = Table('locations', Base.metadata,
Column("lat", Float(Precision=64), primary_key=True),
...
0
votes
1answer
119 views
Sqlalchemy & Pylons: Adding new tables to a previously defined database?
Say I create tables in Pylons by running
paster setup-app development.ini
It will produce a database file (i.e. mydatabase.db). Now, let's say later I change my model to have more tables and/or ...
1
vote
1answer
420 views
Modeling a database many to many relationship between three tables using sqlalchemy in python
Let's consider the following table models for sqlalchemy in python.
class Worker(Base):
id Column(Integer, primary = True)
name Column(String, nullable = False)
class Project(Base):
id ...
2
votes
2answers
172 views
Mixed content (float || unicode) for database column
For sake of simplicity let's say I have a questionare.
Each answer gains a score.
Some questions are qualitative so user must choose between one of the text answers.
Q: what's your fav pet?
cat ...
3
votes
1answer
1k views
SqlAlchemy IntegrityError
I'm trying to get a whole bunch of data off of facebook, and add objects into the database as I process them. For likes, for example, I am just making them the ID of the person who issued the like. ...
4
votes
1answer
1k views
SqlAlchemy: How to create connections between users, i.e. make “friends”
I'm trying to use SqlAlchemy to make Sqlite database tables inside of Pylons. I'm using declarative base to create the table, class, and mapper all at once with the following code:
class ...
1
vote
1answer
833 views
Any ideas how to compare two SQL DDL and create alter/delete/create script with keeping DB data?
Can you suggest any ideas how to compare two SQL DDL scripts and create alter/delete/create SQL script keeping the current DB data?
I tried SQLAlchemy-migration and it requires to do python ...
0
votes
1answer
100 views
Efficient Query for Extended Details off an Association Object Pattern
Details
A Person has many Objectives.
Objectives have Person-specific details about Activitys.
An Activity contains generic information such as a world record.
A Person can organize an Event to ...
0
votes
4answers
482 views
Relational database design - Two Relations 1:1 or one 1:2?
This question is about how to design a SQL relationship. I am pretty newbie in this matter and I'd like to know the answers of (way) more experts guys...
I am currently migrating a ZopeDB (Object ...
0
votes
1answer
117 views
Is there a DB/ORM pattern for attributes?
i want to create an object with different key-value as attributes, for example:
animal
id
name
attribute
id
name
and mapping
animal_attribute
animal_id
attribute_id
so i ...
1
vote
1answer
149 views
one field with different data types [SQLAlchemy]
I have a value that can be integer, float or string, and I created different columns:
#declarative
class MyClass(Base):
#id and other Columns
_value_str = Column(String(100))
...
1
vote
2answers
1k views
Many-to-one relationship in SQLAlchemy
This is a beginner-level question.
I have a catalog of mtypes:
mtype_id name
1 'mtype1'
2 'mtype2'
[etc]
and a catalog of Objects, which must have an associated mtype:
obj_id ...
4
votes
1answer
1k views
how do simple SQLAlchemy relationships work?
I'm no database expert -- I just know the basics, really. I've picked up SQLAlchemy for a small project, and I'm using the declarative base configuration rather than the "normal" way. This way seems a ...
1
vote
1answer
847 views
SQLAlchemy unsupported type error - and table design issues?
back again with some more SQLAlchemy shenanigans.
Let me step through this.
My table is now set up as so:
engine = create_engine('sqlite:///:memory:', echo=False)
metadata = MetaData()
...
4
votes
2answers
2k views
Use raw SQL to create tables in SQLAlchemy, after which use ORM
Is it possible to use raw SQL rather than the TABLE construct for creating tables in SQL Alchemy? I would still like to use the rest of SQLAlchemy though, such as the object mapper and session ...
7
votes
2answers
2k views
How to map one class against multiple tables with SQLAlchemy?
Lets say that I have a database structure with three tables that look like this:
items
- item_id
- item_handle
attributes
- attribute_id
- attribute_name
item_attributes
- item_attribute_id
- ...
1
vote
3answers
531 views
Personal Messaging System in Database
I am new to databases, and would like to know how to best store personal messages in a database (with SQLAlchemy).
Because I wasn't sure, I have tried the following table for PMs
pm_table = ...
3
votes
2answers
1k views
SQLAlchemy and empty columns
When I try to insert a new record into the database using SQLAlchemy and I don't fill out all values, it tries to insert them as "None" (instead of omitting them). It then complains about "can't be ...
