You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
record=awaitdb.fetch_one(
query='select * from table_a where id = :id',
values={
# "id": 0
})
If I don't provide bind parameter value (like that :id), bind parameter value is set to None and query executes successfully. I was expecting that an error will be thrown saying that I miss a value for the parameter.
Is there anything I'm missing?
databases[postgresql]==0.6.1
The text was updated successfully, but these errors were encountered:
Hi,
I'm using raw queries like that:
If I don't provide bind parameter value (like that
:id
), bind parameter value is set toNone
and query executes successfully. I was expecting that an error will be thrown saying that I miss a value for the parameter.Is there anything I'm missing?
The text was updated successfully, but these errors were encountered: