从 SQLite 命令行调用 python UDF

Calling python UDF from SQLite command line

如果我使用 sqlite3.create_function 在 python 中创建一个 UDF,我可以从 SQLite 命令行调用该函数吗?

UDF 仅在创建它们的连接中可用。

您必须在 Python 中编写自己的命令行 shell。