Top "Flask-sqlalchemy" questions

Flask-SQLALchemy is an extension for Flask that provides SQLAlchemy support.

How to execute raw SQL in Flask-SQLAlchemy app

How do you execute raw SQL in SQLAlchemy? I have a python web app that runs on flask and interfaces …

python sql sqlalchemy flask flask-sqlalchemy
How to update SQLAlchemy row entry?

Assume table has three columns: username, password and no_of_logins. When user tries to login, it's checked for an …

python sqlalchemy flask-sqlalchemy
ImportError: No module named sqlalchemy

I'm unable to find a module in python ,though easy_install says its already installed. Any idea how to resolve …

python sqlalchemy flask-sqlalchemy
Flask-SQLalchemy update a row's information

How can I update a row's information? For example I'd like to alter the name column of the row that …

python sqlalchemy flask-sqlalchemy
Flask Download a File

I'm trying to create a web app with Flask that lets a user upload a file and serve them to …

python flask download flask-sqlalchemy
jsonify a SQLAlchemy result set in Flask

I'm trying to jsonify a SQLAlchemy result set in Flask/Python. The Flask mailing list suggested the following method http://…

python sqlalchemy flask flask-sqlalchemy
Flask SQLAlchemy query, specify column names

How do I specify the column that I want in my query using a model (it selects all columns by …

python sqlalchemy flask-sqlalchemy
How to delete a record by id in Flask-SQLAlchemy

I have users table in my MySql database. This table has id, name and age fields. How can I delete …

python flask sqlalchemy flask-sqlalchemy
Flask-SQLAlchemy how to delete all rows in a single table

How do I delete all rows in a single table using Flask-SQLAlchemy? Looking for something like this: >>> …

python sqlalchemy flask-sqlalchemy
unable to create autoincrementing primary key with flask-sqlalchemy

I want my model's primary key to be an autoincrementing integer. Here is how my model looks like class Region(…

python postgresql sqlalchemy flask flask-sqlalchemy