libsql-experimental-python icon indicating copy to clipboard operation
libsql-experimental-python copied to clipboard

Error when tying to insert records of "None" type

Open kenBinary opened this issue 1 year ago • 0 comments

I tried to insert a record with None type but it resulted in this 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/user/project/test.py", line 45, in <module>
    cursor.execute("insert into test_table values (?,?);", tuple(["some text", None]))
pyo3_runtime.PanicException: not yet implemented

Code: cursor.execute("insert into test_table values (?,?);", tuple(["some text", None]))

kenBinary avatar May 30 '24 07:05 kenBinary