-
First Check
Commit to Help
Example Code
DescriptionWhen running this app, I get the following error:
However, the data is correctly loaded as seen during debugging, or even when looking at the error message. When omitting the
Strangely, when using the following calls to either
Both Operating SystemLinux, Windows Operating System DetailsTried both Windows and WSL Ubuntu SQLModel Version0.0.24 Python Version3.13.1 Additional ContextI'm using Postgresql17 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The problem was that I imported the wrong Wrong Correct |
Beta Was this translation helpful? Give feedback.
The problem was that I imported the wrong
select
function.Wrong
from sqlalchemy import select
Correct
from sqlmodel import select