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