DEV Community

Minho Lee
Minho Lee

Posted on

[ Database ] - Session Object of SQLAlchemy

Session Object of SQLALchmey

SQLAlchemy에 Query Object를 다루는 Session Object가 있다.

Image description

쉽게 보자면 다음과 같다.

Session 객체에는 쉽게는 add와 commit, 사실 flush라는 함수도 존재한다.

그림을 보면 알겠지만, add를 한다고 해서 DB에 실제로 영향이 가진 않는다.

정확히는 commit이 일어나야 실제로 DB에 변화가 일어나고,
기본적으로 옵션을 주지 않으면, commit만 해도 flush는 commit과 함께 일어난다.

Editing now

Top comments (0)