如何在SQLite中创build自定义函数
你能像在MSSQL中一样在SQLite中创build函数吗?
如果是这样,怎么样? 什么是语法?
谢谢
SQLite没有存储的函数/存储过程语言。 所以CREATE FUNCTION
不起作用。 你可以做的是从ac库到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 )