I register a user defined function:
conn.create_function("geocode", 4, geocode)
The function is used in a trigger, and the trigger fires correctly after an insert, but the function isn't found:
sqlite3.OperationalError: no such function: geocode
My understanding of this usage pattern may be wrong, is it possible to persist Python functions in the database?