libsql-experimental version: 0.0.41
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
libsql-experimentalversion: 0.0.41I'm trying to figure out how to pass a
nullvalue parameter.I believe using
Noneis the expected way, but passingNoneresults in the error:ValueError: Unsupported parameter type.i.e.