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