如何使用可选参数创建用户定义的 SQLite 函数
我正在尝试用 Python 扩展 SQLite。所以我有其中几个:
connection.create_function("MICROSECONDS_SUB", 2, microseconds_sub)
对应于 python 实现:
def microseconds_sub(date, microseconds)
# some kind of logic to subtract microseconds from a date
我希望能够提供可以接受可选参数的函数(例如,两个必需参数和第三个可选参数),但我不确定如何提供。
I'm trying to extend SQLite in Python. So I have several of these:
connection.create_function("MICROSECONDS_SUB", 2, microseconds_sub)
corresponding to python implementations:
def microseconds_sub(date, microseconds)
# some kind of logic to subtract microseconds from a date
I'd like to be able to supply functions that can take optional arguments (for example, two required arguments and a third optional one), but I'm not sure how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以传递
-1
作为参数数量,以防止 SQLite 对参数数量进行任何验证。如果函数接受传递给它的任何内容,则调用将成功,否则,它将抛出 sqlite3.OperationalError。
You can pass
-1
for the number of arguments to prevent SQLite from doing any verification on the number of arguments.If the function accepts whatever is passed to it, then the call will succeed, otherwise, it'll throw a sqlite3.OperationalError.