I've looked for a function to execute a shell command in a SQLite query, e.g., a function exec() that would execute the given command.
Is there such function in SQLite?
I've looked for a function to execute a shell command in a SQLite query, e.g., a function exec() that would execute the given command.
Is there such function in SQLite?
SQLite is designed for small embedded systems, which might not even have a shell.
So there is no exec() among the built-in functions.
However, it would be easy to create your own user-defined function to wrap the system() C function.