sqlite没有存储函数/存储过程语言。所以CREATE FUNCTION不工作。你可以做的是映射函数从c库到sql函数(用户定义的函数)。为此,使用sqlite的C API(参见:
http://www.sqlite.org/c3ref/create_function.html)
如果您不使用C API,您的封装API可能会定义一些允许您访问此功能的内容,例如:
> PHP sqlite_create_function()(http://www.php.net/manual/en/function.sqlite-create-function.php)
> Python sqlite3.create_function()(http://docs.python.org/2/library/sqlite3.html#sqlite3.Connection.create_function)
> Perl $ dbh-> func(_ $ name,_ $ argc,_ $ func_ref,_“create_function”)(https://metacpan.org/pod/DBD::SQLite#dbh-sqlite_create_function-name-argc-code_ref)