what is advantages of using SQLite3::createFunction() over simple php function?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use it in SQL-queries
With PHP-functions you must iterate over the result set on your own. I don’t know, how exactly it is implemented, but as far as I know
SQLite3works with cursors and therefore the function should only get executed, when you retrieved a row.