flask-sqlalchemy icon indicating copy to clipboard operation
flask-sqlalchemy copied to clipboard

Adds SQLAlchemy support to Flask

Results 110 flask-sqlalchemy issues
Sort by recently updated
recently updated
newest added

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.4 to 3.25.1. Release notes Sourced from tox's releases. 3.25.1 What's Changed release 3.25.0 by @​gaborbernat in tox-dev/tox#2398 [pre-commit.ci] pre-commit autoupdate by @​pre-commit-ci in tox-dev/tox#2399 Adding APPDATA...

dependencies

SQLAlchemy is moving toward a new system, detailed here: https://docs.sqlalchemy.org/en/14/changelog/migration_20.html. Flask-SQLAlchemy should also move in that direction. The main difference is that `session.query(Model)` is being replaced, essentially with, `session.execute(select(Model))`. The...

This is a description of the issue that #222 tries to solve. After investigating further, and based on differences between SQLAlchemy 1.3 and 1.4, I don't think I'll be able...

I am using version 2.4.1. I am trying to set my poolclass to NullPool by passing that option into my engine options like so: ``` from sqlalchemy.pool import NullPool SQLALCHEMY_ENGINE_OPTIONS...

Reflection is broken in extra binds, because of `bind_key` is not set for reflected tables. Also `sqlalchemy>=0.9.2` is required. So fix may be backported to `2.x` branch if we can...

Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.2.5 to 7.1.2. Release notes Sourced from pytest's releases. 7.1.2 pytest 7.1.2 (2022-04-23) Bug Fixes #9726: An unnecessary numpy import inside pytest.approx{.interpreted-text role="func"} was removed. #9820: Fix...

dependencies

Although `SQLALCHEMY_DATABASE_URI` is technically correct here, I propose to add `SQLALCHEMY_DATABASE_URL` as an alias for it for the following reasons: - "URL" is a more user-friendly word, it's widely known...

I noticed that flask-sqlalchmy is injecting (the wrong) directory when run, it puts the file directory in instead of the current working directory, causing me to not get a valid...

Creating some changes to CONTRIBUTING.rst - fixes #1042 I had opened an issue to rename master to main in the contributor's guide. @ThiefMaster mentioned that there is no need to...

currently, the contributors guide still mentions the origin/master branch. ``` If you're submitting a feature addition or change, branch off of the "main" branch. .. code-block:: text $ git fetch...