sqlite-statement-vtab
sqlite-statement-vtab copied to clipboard
SQLite module to define virtual tables and table-valued functions natively using SQL.
Results
1
sqlite-statement-vtab issues
Sort by
recently updated
recently updated
newest added
Any thoughts on adding support for scalar valued functions? Could be something like: ```sql CREATE VIRTUAL TABLE foo USING statement(( SELECT expr ), foo_function); SELECT foo_function(bar); -- Returns the first...