Tagged Questions
0
votes
1answer
115 views
Flask App returning “MySQL server has gone away” after 60 seconds of idle time
I'm using Flask-SQLAlchemy in my app and after 60 seconds of idle time, MySQL returns a "MySQL server has gone away" error.
Here's my traceback:
Traceback (most recent call last):
File ...
2
votes
1answer
420 views
Connect to AWS RDS MySQL database instance with Flask-SQLAlchemy
For my Flask app, I want to use the Flask-SQLAlchemy extension to connect to a database instance I created on AWS RDS.
When I try to connect, the application times out and I get the following error:
...
2
votes
1answer
199 views
Compare DateTime and Interval in SQLAlchemy
I have this class:
class Monitor(db.Model):
'''
Base Monitor class.
'''
__tablename__ = 'monitor'
id = db.Column(db.Integer(), primary_key=True)
last_checked = ...
0
votes
1answer
86 views
The default sorting criteria of sqlalchemy?
Now I sort the data in the database by its attribute 1.
If there is a tie of different items with same value of attribute 1, the data seems to be sorted by its id.
However, I would like to break the ...
0
votes
1answer
76 views
Flask uWSGI fails with SQL_ALCHEMY_URI set to MySQL db
I have a flask app set up according to this tutorial. The app produces a "uWSGI Error: Python application not found" error when the following line is included:
app.config['SQLALCHEMY_DATABASE_URI'] = ...
1
vote
1answer
180 views
How do I get the number of rows affected with SQL Alchemy?
How do I get the number of rows affected for an update statement with sqlalchemy? (I am using mysql and python/pyramid):
from sqlalchemy.engine.base import ResultProxy
@classmethod
def myupdate(cls, ...
0
votes
1answer
223 views
When a Flask application with Flask-SQLAlchemy is running, how do I use MySQL client on the same database at the same time?
When I run a Flask application which is using Flask-SQLAlchemy, it seems that Flask-SQLAlchemy is holding a session and when I issue a MySQL command, like alter table add column, in MySQL client ...
0
votes
1answer
73 views
Convert relationship to query object
Let's say I have many to many relationship between tables User and Car.
It works fine when I use
User.query.filter_by(name='somename').all().cars
Car.query.filter_by(vin='xxxxxx').all().users
I ...
0
votes
0answers
53 views
How can I convert this MySQL search query to sqlalchemy ORM?
I have the following search query:
select pid from product_FTSI
where MATCH(keyword) AGAINST('+$포 +포스 +스트 +트잇 +잇 +지 +지우 +우개 +개$')
How can I convert this query to SQLAlchemy ORM?
0
votes
1answer
169 views
SQLAlchemy - How to MySQL JOIN
I have a MySQL database with the following structure and was hoping someone could help me convert the SQL query below to SQLAlchemy.
Database structure:
**bottom:**
id
name
middle_id
**middle:**
id
...
0
votes
1answer
214 views
SQLAlchemy - Querying Multiple Tables and Combining Results
Answer no longer needed.
I have two tables as follows in my MySQL database:
**Child**
id
name
parent_id
**Parent**
id
name
What I want to do is query both tables but return unique results (no ...
3
votes
1answer
146 views
SQLAlchemy - Searching Three Tables at Once
EDIT:
Please excuse me, as I have just realised I've made an error with the example below. Here's what I want to achieve:
Say I have the three tables as described below. When a user enters a query, ...
4
votes
3answers
680 views
Class does not have a table or tablename specified and does not inherit from an existing table-mapped class
When I tried to add a new table to python/flask -
class UserRemap(db.Model):
name = db.Column(db.String(40))
email = db.Column(db.String(255))
password = db.Column(db.String(64))
...
5
votes
2answers
1k views
read slave , read-write master setup
I have a Flask,SQLAlchemy webapp which uses a single mysql server. I want to expand the database setup to have a read-only slave server such that I can spread the reads between both master and slave ...
0
votes
1answer
570 views
how to let flask-sqlalchemy's query object select columns ( or say fields )?
I met some problem that wired me the whole day. I'm using flask/flask-sqlalchemy/postgresql, and I want to do this:
published_sites = msg_published.query \
.filter( and_(*filter_clause) ) ...
