How to load an extenstion of SQLite in SQLFiddle?

92 views Asked by At

In SQLite there are some loadable extensions. How can I load an extension then use it in SQLFiddle?

For example I want to load JSON1 Extension then use it for Json fields.

1

There are 1 answers

1
CL. On

SQLite fiddles run either in the client browser or with SQL.js. Neither supports extensions at all. It would be necessary to change the SQLFiddle web site to run SQLite on the server.

And then, allowing custom extensions would allow anybody to attack the SQLFiddle web server with the code in such an extension; the administrator would have to decide to compile the extension into the SQLite binary.