1
vote
1answer
43 views

sqlalchemy bulk update performance problems

I need to increment values in a column periodically with data I receive in a file. The table has > 400000 rows. So far, all my attempts result in very poor performance. I have written an experiment ...
0
votes
2answers
48 views

Flask how to calculate tags count

I developing simple blog with tagging support. Actually I would like to add tags cloud functionality and I need to get count of each tag used in blog. My Blog and Tag models looks like: class ...
0
votes
0answers
17 views

Which database to use for a very large dataset, and integrate with Elasticsearch? [closed]

I'm currently using SQLite3 for a project in Python, and it's getting to be quite large (a table with between 50m and 100m entries, which will probably have to be split up, among other things). I hear ...
1
vote
2answers
59 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
59 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', ...
1
vote
1answer
28 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 ...
0
votes
1answer
46 views

Comparing Dates with SQLAlchemy, SQLite

I am writing an application that uses SQLAlchemy with an SQLite database. I believe my database, tables, and mapping are configured correctly because other operations work as expected. I am trying ...
1
vote
1answer
47 views

SQLAlchemy filter in_ operator

I am trying to do a simple filter operation on a query in sqlalchemy, like this: q = session.query(Genotypes).filter(Genotypes.rsid.in_(inall)) where inall is a list of strings Genotypes is ...
0
votes
1answer
38 views

SQLite PRAGMA foreign_keys with SQLAlchemy

I need to change the value of PRAGMA foreign_keys to 'off' before I do some operations, but then I would like to turn it right back 'on'. Ultimately, I have only just gotten familiar with the ORM ...
0
votes
0answers
34 views

Error asking pyDatalog queries in SQLAlchemy backed database in sqlite3 - InterfaceError: (InterfaceError)

I'm currently developing an application that need to mix recursive queries with SQL and am trying out if this can be achieved using SQLAlchemy together with pyDatalog. It was really easy to set up, ...
0
votes
1answer
36 views

Quickly dumping a database in memory to file

I want to take advantage of the speed benefits of holding an SQLite database (via SQLAlchemy) in memory while I go through a one-time process of inserting content, and then dump it to file, stored to ...
3
votes
1answer
54 views

sqlite - works with file, dies with :memory:

My script fails tests when working with SQLite base (via sqlalchemy) created in :memory: and passes tests when working with a base created with physical file. The script is multi-threaded. I know it ...
0
votes
1answer
69 views

insertmany into the in memory sqllite db - SQLite Date type only accepts Python date objects as input

I have a table that I am trying to insert many using a dict object. engine = create_engine('sqlite:///:memory:', echo=True) metadata = MetaData() hockey= Table('hockey', metadata, Column('team', ...
0
votes
0answers
49 views

ProgrammingError Thread error in SQLAlchemy

I have a two simple tables in a sqlite db. from sqlalchemy import MetaData, Table, Column, Integer, ForeignKey, \ create_engine, String from sqlalchemy.orm import mapper, relationship, ...
0
votes
1answer
86 views

How to increase connection timeout using sqlalchemy with sqlite in python

I am using sqlite (v2.6.0) as database backend and using sqlalchemy(v0.7.9) to operate it. Recently I got a error OperationalError: (OperationalError) database is locked By searching stackoverflow a ...
0
votes
1answer
48 views

How to use a column name from mixin class inside backref(.., order_by=..) with SQLAlchemy?

I modify the Base class to include three default columns which all my tables have: class Base(object): id = Column(Integer, primary_key=True) date_created = Column(DateTime, ...
2
votes
1answer
185 views

Can SQLAlchemy automatically create relationships from a database schema?

Starting from an existing (SQLite) database with foreign keys, can SQLAlchemy automatically build relationships? SQLAlchemy classes are automatically created via __table_args__ = {'autoload': True}. ...
0
votes
1answer
276 views

Sqlalchemy core, insert multiple rows from a tuple instead of dict

I have data in a 2D tuple (or say coming from a Numpy table), and need to insert it into an SQL table. Using Sqlalchemy Core with SQLite, how can I efficiently and simply insert this data into my ...
1
vote
1answer
105 views

What is the correct way to make SQLalchemy store strings as lowercase?

I'm using SQLAlchemy to talk to my database. Because not many people will be using my application (at least initially), I figure SQLite is the quickest/easiest back end. I've got a User, and it has a ...
0
votes
1answer
82 views

Strange error in SqlAlchemy-migrate on column.copy() with column type BigInteger .

The situation is a little bit simplified. I have two migration files for sqlalchemy-migrate: In First I create table volume_usage_cache, then autoload it, create copy of its columns and print it: ...
0
votes
2answers
172 views

How to turn on 'PRAGMA foreign_keys = ON' in sqlalchemy migration script or configuration file for sqlite?

In a suitable sqlite version, we can enforce foreign key constraint by 'PRAGMA foreign_keys = ON'. However user can not log in a database every time when making a connection. So I wonder how can we ...
0
votes
1answer
60 views

Why do I have to change the uri in Flask for SQLAlchemy?

I am trying to develop a web application in Flask, and I have noticed that if I want to use SQLite3 as my database, then I have to input DATABASE = 'flaskr.json' However, if I want to use ...
0
votes
1answer
235 views

How can I set the current session as 'logged in' using Python in Flask with Flask-SQLAlchemy?

I am trying to learn how to build a basic Flask application with Python. I first followed their excellent tutorial to make a simple blog. The tutorial has you import session from flask. This is later ...
0
votes
0answers
113 views

Commit errors with SQLAlchemy/sqlite for concurrent processes

I'm attempting to write a Python + SQLAlchemy application that uses a centralized sqlite database to store information about various files. I use checksums to verify that each file and/or file version ...
1
vote
1answer
218 views

cannot connect to in-memory SQLite DB using SQLAlchemy with Python 2.7.3 on Windows

I am trying to use the in-memory SQLite database using SQLAlchemy with Python 2.7.3 on Windows. I can connect to the engine, but when I try to execute the second statement I am getting the following ...
0
votes
0answers
132 views

re-initializing db for pyramid results in IntegrityError [closed]

I'm going through the tutorial for setup of a Pyramid app using SQLAlchemy and SQLite. I get to This point and when I run $ sudo ../bin/initialize_tutorial_db development.ini the output that results ...
0
votes
1answer
132 views

Calculate percentile rankings from results of sqlite Python quiz [closed]

I'm writing a Python app (using SQLAlchemy) that asks a series of questions centered around three themes. At the end, in addition to displaying an overall score I want to show the user their ...
1
vote
1answer
306 views

sqlalchemy postgresql where int = string

I have 0 experience with postgresql and am deploying an app written in python using sqlalchemy to a server with postgres. For development, I used an sqlite server. Things are going pretty smoothly, ...
1
vote
1answer
86 views

Query working in SQL Server but dont work in sqlite

In one program on python i'm making query to SQL Server 2005 via sqlalchemy: SELECT * FROM table WHERE (cipher=:value? OR CHARINDEX(cipher_mask,:value?)!=0) and NOT exists( SELECT * FROM table WHERE ...
1
vote
1answer
165 views

SqlAlchemy: export table to new database

Only recently started using python, and I like it! However, I am stuck with SqlAlchemy. I am trying to write a script that reads an MS SQL database, query a table (all fields, only a filter on some ...
0
votes
1answer
236 views

Insert into sqlite3 a null date from pyramid framework using sqlalchemy

python 2.7 pyramid 1.3a4 sqlalchemy 7.3 sqlite3.7.9 from sqlite prompt > I can do: insert into risk(travel_dt) values ('') also insert into risk(travel_dt) values(Null) Both result in a new row ...
9
votes
2answers
2k views

Why is SQLAlchemy insert with sqlite 25 times slower than using sqlite3 directly?

Why is this simple test case inserting 100,000 rows 25 times slower with SQLAlchemy than it is using the sqlite3 driver directly? I have seen similar slowdowns in real-world applications. Am I doing ...
1
vote
3answers
988 views

How to use SQL AUTOINCREMENT primary keys without excessive round trips to the database?

Say I have 10 million Customer names each associated with one or more Addresses and I want to put the data in a SQL database. I make a Customer table and an Address table. The Customer table ...
1
vote
0answers
337 views

Return last inserted ID sqlalchemy sqlite

I'm trying to get the last inserted row id from an sqlalchemy insert with sqlite. It appears this should be easy but I haven't managed to figure it out yet and didn't find anything in my searches so ...
1
vote
2answers
63 views

Constrain exactly one column not null

I have three tables for different payment types, and want to create a table that holds payments made using all three. I'm not sure if I'm going about this the right way, but I was going to create a ...
1
vote
1answer
202 views

AssertionError: This AttributeImpl is not configured to track parents

I've hit this problem recently, and I've been stuck at it for a few days now. Basically the two tables of interest here are 'Activity', and 'Goal', where Activity is the single parent to Goal; a Goal ...
0
votes
1answer
116 views

How can I set the runtime limits of SQLite in SQLAlchemy/Python? [closed]

I need to make large tables with several thousand columns in SQLite. The SQLite documentation says that in order to do this I need to change the SQLITE_MAX_COLUMN variable. I built my database using ...
0
votes
1answer
103 views

Use and relate multiple databases

I can't seem to find a good answer to this. What is the correct way in SQLAlchemy (declarative) to connect two SQLite databases? I also need to make a relation between two tables in these two seperate ...
0
votes
1answer
83 views

sqlalchemy Sqlite not loading table rows

I'm using sqlite with sqlalchemy: when I execute this command: engine.execute("select * from teams"); <sqlalchemy.engine.base.ResultProxy object at 0x245b190> Thus, it works as it returns a ...
1
vote
2answers
484 views

Reasons for using sqlalchemy in Qt

This is really a "pardon my ignorance" question so apologies if it doesn't meet the requirements. I want to develop a fairly simple database application. It will be desktop based and lightweight so ...
3
votes
2answers
1k views

How should I handle decimal in SQLalchemy & SQLite

SQLalchemy give me the following warning when I use a Numeric column with an SQLite database engine. SAWarning: Dialect sqlite+pysqlite does not support Decimal objects natively I'm trying to ...
1
vote
1answer
129 views

Will two programs using SqlAlchemy conflict when trying to access the same table (SQLite)?

I'm going to have two independent programs (using SqlAlchemy / ORM / Declarative) that will inevitably try to access the same database-file/table(SQLite) at the same time. They could both want to read ...
0
votes
1answer
220 views

When I use Fixture with SqlAlchemy in my unit tests, why am I unable to confirm changes to the database during test?

I am testing a message processer that uses SqlAlchemy (v0.7.4). In my test, I am using Fixture (v1.4) with Sqlite to set up and tear down a temporary database. My fixture data includes a file table ...
3
votes
1answer
513 views

How to set SQLite PRAGMA statements with SQLAlchemy

I would like SQLAlchemy to put the SQLite .journal file in-memory to speed up performance. I have tried this: sqlite_db_engine = create_engine('sqlite:///%s' % str(dbname), connect_args = {'PRAGMA ...
0
votes
1answer
212 views

PyQt, SQLAlchemy, SQLite - weird insert crash

I'm trying to convert an xml to sqlite and get a weird error: Traceback (most recent call last): File "C:\Temp\xxx\scripts\xml_to_db.py", line 212, in <module> win = Test(a) File ...
2
votes
2answers
439 views

Sqlalchemy Sqlite Autoincrement not behaving as expected

I have some trouble making my script incrementing my PK in a correct way. Following the sqlalchemy documentation some special configuration has to be done in order to make it work with sqlite. Here is ...
0
votes
1answer
338 views

SQLAlchemy, reflection, different backends and table/column case insensitivity

Intro: I'm writing web interface with SQLAlchemy reflection that supports multiple databases. It turns out that authors of application defined postgresql with lowercase tables/columns, eg. ...
0
votes
1answer
458 views

Sqlite database non-ascii character error with python SQLalchemy library

When i use sqlite3 database with sqlalchemy library, i got this error sqlalchemy.exc.ProgrammingError: (ProgrammingError) You must not use 8-bit bytestrings unless you use a text_factory that can ...
0
votes
1answer
337 views

PyQt - SQLAlchemy doesn't accept QString

I'm using PyQt and SQLAlchemy and SQLAlchemy doesn't accept QStrings. Is there any way to pass QStrings to it or I have to convert QStrings to Python strings every single time? Thank you. Here's the ...
0
votes
1answer
257 views

Python insert variable in loop into SQLite database using SQLAlchemy

I am using SQLAlchemy with declarative base and Python 2.6.7 to insert data in a loop into an SQLite database. As brief background, I have implemented a dictionary approach to creating a set of ...

1 2 3