SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.

learn more… | top users | synonyms

1
vote
1answer
41 views

OperationalError: (OperationalError) (2003, “Can't connect to MySQL server on '192.168.129.139' (111)”) None None

I am trying to create a remote database using mysql on an Ubuntu machine running 12.04. It has a root user with remote login enabled and no password.I have started the server. output of sudo ...
0
votes
1answer
19 views

SQLAlchemy not producing proper SQL statement for multi column UniqueConstraints

Below are the two different attempts I have made in trying to achieve a multi-column unique constraint in sqlalchemy, both of which seems to have failed since a proper SQL statement is not being ...
0
votes
1answer
12 views

Add prefix_with clause to insert of a particular class

How can I customize the prefix_with of each model class in SQLAlchemy such that each one can have a different insert statement? I actually want the OR IGNORE clause added to some of the classes. PS: ...
1
vote
2answers
29 views

sqlalchemy OperationalError: (OperationalError) (1045, "Access denied for user

I am trying to create a remote database using mysql on an Ubuntu machine running 12.04. It has a root user with remote login enabled.I have started the server. output of sudo netstat -tap | grep ...
0
votes
1answer
43 views

How do I write a query to get sqlalchemy objects from relationship?

I am learning python and using the framework pyramid with sqlalchemy as the orm. I can not figure out how relationships work. I have 2 tables, offices and users. the foreign key is on the users table ...
0
votes
0answers
31 views

Conundrum : Not Sorting Objects With SQLAlchemy

I have a feeling SQLAlchemy is only checking the first digit when it orders the groups by ID, how do I get it to check all the digits of the ID? groups = ...
0
votes
0answers
30 views

Postgres+SQLAlchemy: Select count() from original table and joined tables?

I have a SQLAlchemy query: db.session.query(Student, over(func.count(Student.id)), # want to count the distinct MyTable instances over(func.count(Degree.id))).\ # want to count the cumulative ...
1
vote
2answers
56 views

sqlalchemy OperationalError: (OperationalError) unable to open database file None None

I am trying to create a database in a remote system.The relevant code is given below log = core.getLogger() engine = ...
1
vote
1answer
50 views

remote database creation in sql alchemy via sqlite

I have an sqlalchemy application that currently uses a local database.The code for the application is given below. log = core.getLogger() engine = create_engine('sqlite:///nwtopology.db', ...
0
votes
0answers
21 views

id generated by fuction, Elixir model

I try to make a Model to my database. I create some tables but in one of it i try to make with a field id generated for a function , there I have some troubles that i want to shared and make some ...
0
votes
1answer
32 views

Double Relationship in SQLalchemy

I got following problem in sqlalchemy. I made three different tables in sqlite, the first has no realtion, the second has a relation to the first and the third a relation to the second. So when I want ...
0
votes
1answer
79 views

Sqlalchemy attribute error- Eclipse

I am trying this in my PyDev setup on eclipse: from sqlalchemy.engine import create_engine This gives me following error: Traceback (most recent call last): File ...
2
votes
1answer
23 views

SQLAlchemy aliases not aliasing?

I have the following sqlalchemy code: x = bbc.alias().c w = bbc.alias().c select([func.distinct(x.region)]).where( select([func.sum(w.population)]).where((w.region == x.region)) > 100000000 ) ...
0
votes
1answer
26 views

how to deal with multiple arguments in a dictionary construct when query in sqlalchemy?

In sqlalchemy, I define a function whose argument is a dictionary may contain multiple key-values.I want to query according to the key-values. Here is my program: def get_contact_conditions(kwds): ...
-1
votes
0answers
42 views

Python reports generator with Excel capability [closed]

i am looking for a library that would help me construct a reporting facility in python. to explain i created a program in python that interacts with a database (SQLite, for now) using SQLALchemy, and ...
0
votes
1answer
43 views

Insert new one-to-many data into tables with SQLAlchemy ORM

I'm trying to insert rows into a database that has three tables: Artists Songs Media (like a youtube video) Artists has a one-to-many relationship with Songs and Songs has one-to-many relationship ...
0
votes
0answers
19 views

Running a trigger with sqlalchemy that works with session.execute

I have a app which using sqlalchemy as the orm. As the app is one in transition some of the update query's run through a session.execute . However I need to create a trigger of some kind . I am trying ...
0
votes
1answer
24 views

update tables with computed columns in sqlalchemy

I'm working in a legacy MSSQL database using SQLalchemy, for which I have a declarative mapping. This database has several tables that have computed columns. I can read them fine, but (of course) ...
0
votes
2answers
42 views

UnicodeEncodeError:'latin-1' codec can't encode characters in position 0-1: ordinal not in range(256)

i am a newer in python.Today when I write some search function I met an error.well, I use sqlalchemy orm to do that, in my function,I input a chinese word as the key word.The html page give me an ...
0
votes
1answer
34 views

Get attribute of object from relationship in sqlalchemy

Consider the following code defining some classes: from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column, Integer, Float, String, DateTime from sqlalchemy import ...
0
votes
1answer
30 views

What is the proper way to model this type of inheritance with SQLAlchemy?

I have a pair of PostgreSQL tables that look somewhat like this (simplified example): CREATE TABLE people ( id SERIAL PRIMARY KEY, created timestamp with time zone DEFAULT now() NOT NULL, ...
0
votes
0answers
16 views

sqlalchemy polymorphic_identity not filling

I am using SQLAlchemy (0.8) polymorphic_identity for the first time, so the problem may be with my understanding of what's supposed to happen rather than with the code itself. But, let's see if ...
2
votes
1answer
27 views

SQLAlchemy with single table inheritance expunge error

I'm having an issue with python SQLAlchemy single table inheritance. Model: class User(Base): __tablename__ = 'user' userID = Column(String(64), primary_key=True) name = ...
1
vote
1answer
31 views

How to do a safe (constraint) implicit join in SQLAlchemy?

I consider a safe JOIN one which is constrained by its foreign key. And an implicit one which only mentions its target. In SQLAlchemy, session.query(User).join(Addresse) might or might not be ...
2
votes
1answer
53 views

query from sqlalchemy returns AttributeError: 'NoneType' object

from pox.core import core import pox.openflow.libopenflow_01 as of import re import datetime from sqlalchemy import create_engine, ForeignKey from sqlalchemy import Column, Date, Integer, String from ...
1
vote
1answer
28 views

error in sqlalchemy after replacing count query with exists query [duplicate]

class SourcetoPort(Base): """""" __tablename__ = 'source_to_port' id = Column(Integer, primary_key=True) port_no = Column(Integer) src_address = Column(String,index=True) ...
0
votes
1answer
32 views

Unique Sequencial Number to column

I need create sequence but in generic case not using Sequence class. USN = Column(Integer, nullable = False, default=nextusn, server_onupdate=nextusn) , this funcion nextusn is need generate ...
0
votes
0answers
54 views

SQLAlchemy error MySQL server has gone away

Error OperationalError: (OperationalError) (2006, 'MySQL server has gone away') i'm already received this error when i coded project on Flask, but i cant understand why i get this error. I have code ...
1
vote
1answer
24 views

How could i get the sqlite date delta in SQLAlchemy

I have a sqlite table with a column final_date in INTEGER type (Use as date). I want to calculate number of days from this column to now. In sqlite, i can run SQL with help of function (julianday) as ...
1
vote
1answer
28 views

get attribute names of class python/ get column names of query

I want to have the column names of my sqlalchemy query but I do not find how I can do this. I tried a few ways first way I have tried was to make a new class, because the names had to be different ...
0
votes
1answer
38 views

“ResourceClosedError: The transaction is closed” error with celery beat and sqlalchemy + pyramid app

I have a pyramid app called mainsite. The site works in a pretty asynchronous manner mostly through threads being launched from the view to carry out the backend operations. It connects to mysql ...
0
votes
1answer
30 views

SQLAlchemy Table Not Reflected In Database

I'm confused about when the tables get changed in the database to match class objects defined in SQLAlchemy's Declarative Model. For instance, I have a table commands with these fields ...
0
votes
1answer
51 views

Flask + SQLAlchemy [ Determine Success of Commit ]

I have a view in flask that I want to use to display success when an object from a POST request is successfully committed. In the controller, I have us = User(data_that_is_not_valid) ...
1
vote
1answer
57 views

sqlalchemy create_engine() if the db already exists

from pox.core import core import pox.openflow.libopenflow_01 as of import re import datetime from sqlalchemy import create_engine, ForeignKey from sqlalchemy import Column, Date, Integer, String from ...
1
vote
1answer
30 views

querying data from sqlalchemy database

engine = create_engine('sqlite:///nwtopology.db', echo=False) Base = declarative_base() class SourcetoPort(Base): """""" __tablename__ = 'source_to_port' id = Column(Integer, ...
0
votes
1answer
14 views

How to generate this query in sqlalchemy?

this query used to_char abd group_by select to_char(date_published, 'yyyymm') yo from blog group by yo; i have try In [3]: year_field = db.func.extract('year', ArticleModel.date_published) In ...
0
votes
0answers
15 views

can't pickle attrgetter objects

I'm getting this error when trying to cache sqlalchemy models loaded from the database. I'm using dogpile.cache with a redis backend. I got exactly the same error using Flask-Cache with a redis ...
0
votes
0answers
37 views

How to maintain part of data in one table using flask-admin view?

I have a table "Label" with columns : id | name | type The type column get 3 values:"Category","Tags","MAT", so that this one table contains three type of data. Now, I want to only maintain the ...
1
vote
1answer
43 views

SQLAlchemy + Requests Asynchronous Pattern

I am currently working on an application where a client makes some call to a web services, some small amount of processing is done on the JSON data returned, and then that is stored in a database. I ...
0
votes
1answer
26 views

Implementing and, or, and not queries on SQL Alchemy ORM

I'm just learning SQL Alchemy and using the ORM to pull in records. However, there are some functions that appear to be unique to the other way of pulling in records, like ...
0
votes
1answer
36 views

sqlalchemy,creating an sqlite database if it doesn't exist

I am trying out sqlalchemy and i am using this connection string to connect to my databases engine = create_engine('sqlite:///C:\\sqlitedbs\\database.db') Does sqlalchemy create an sqlite database ...
0
votes
1answer
42 views

SqlAlchemy look-ahead caching?

Edit: Main Topic: Is there a way I can force SqlAlchemy to pre-populate the session as far as it can? Syncronize as much state from the database as possible (there will be no DB updates at this ...
0
votes
1answer
23 views

Connecting to a firebird superserver on windows using sqlalchemy

I am trying to connect to a firebird super server.I have the fdb package installed. I am trying from sqlalchemy import create_engine engine = create_engine ('localhost:c:\fdbb\school.fdb') I get ...
0
votes
1answer
15 views

sqlalchemy - get number of entries that will be committed, dry run

I make a tool with sqlalchemy that copies entries from one base to another. I want to add "dry run" option, so instead of real committing, it would just print a number of entries that would be ...
0
votes
0answers
17 views

Accessing Postgres Namespaces from SQLAlchemy

Is it possible to create Postgresql namespaces for sets of tables from SQLAlchemy?
0
votes
1answer
34 views

add an object in sqlalchemy with relationship

I want to add a object into database using relationship, the code is blow: the code run in eclipse, database is postgresql from sqlalchemy import Table, MetaData, Column, ForeignKey, Integer, ...
0
votes
1answer
47 views

Flask and SQLAlchemy Questions

I am currently using Flask and SQLAlchemy to create a web application. However, I am in the process of creating a User model with passwords and usernames. Do I need to find my own libraries to salt ...
2
votes
3answers
48 views

How to check whether SQLAlchemy session is dirty or not

I have a SQLAlchemy Session object and would like to know whether it is dirty or not. The exact question what I would like to (metaphorically) ask the Session is: "If at this point I issue a commit() ...
0
votes
0answers
26 views

Structuring a SQLAlchemy CRUD Application

I've been writing my first application of a fair size (~ 4000 lines) and my first application that uses a database for persistence. It uses Python + SQLAlchemy. I've been struggling with the structure ...
0
votes
1answer
23 views

Compare Dates With SQLAlchemy One-To-Many Relationships

How do you compare dates for one-to-many SQLAlchemy relationships? Basically for my model structure, there is a one to many relationship between Team and Player: class Team(db.Model): ...

1 2 3 4 5 58