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
I'm trying to figure out how to pass a null value parameter.
I believe using None is the expected way, but passing None results in the error: ValueError: Unsupported parameter type.
i.e.
conn=libsql.connect(...)
conn.execute(
""" INSERT INTO user (name, age) VALUES (?, ?) """,
("Chris", None)
)
# ValueError: Unsupported parameter type