tursodatabase / libsql-experimental-python

libSQL API for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inserting None results in panic

bensengupta opened this issue · comments

Inserting None into a table appears to throw an exception. Is there a different way to insert a NULL value into a row or is this not supported?

import libsql_experimental as libsql

conn = libsql.connect("test.db")

conn.executescript(
    """
    DROP TABLE IF EXISTS users;
    CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT);
    """
)

conn.execute("INSERT INTO test (name) VALUES (?)", (None,))

results in the following error

thread '<unnamed>' panicked at src/lib.rs:411:39:
not yet implemented
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Traceback (most recent call last):
  File "/home/ben/projects/libsql_bug/main.py", line 12, in <module>
    conn.execute("INSERT INTO test (name) VALUES (?)", (None,))
pyo3_runtime.PanicException: not yet implemented