Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与简单的 php 函数相比,使用 SQLite3::createFunction() 有什么优势?
您可以在 SQL 查询中使用它
SELECT col1, my_function(col2) FROM tab;
使用 PHP 函数,您必须自己迭代结果集。我不知道它是如何实现的,但据我所知,它SQLite3可以与游标一起使用,因此该函数只能在您检索一行时执行。
SQLite3