SQLite Forum

Shell Edit() Function
Login

Shell Edit() Function

(1) By Ppro6 (Chanda) on 2021-02-01 12:17:35 [link]

Hello Everyone,
               I would like to find out if it is possible to extract the Edit() function from Shell.c and use it as a new function with the Sqlite library or if there is another function that would allow editors to view blobs.

(2) By Stephan Beal (stephan) on 2021-02-01 12:22:41 in reply to 1 [link]

>  I would like to find out if it is possible to extract the Edit() function from Shell.c

`edit()` is just a plain old user-defined function and appears (at a cursory glance) to have no unusual dependencies which would hinder extracting it into other code:

<https://sqlite.org/src/file?ci=trunk&name=src%2Fshell.c.in&ln=1278-1420>

(3) By Ppro6 (Chanda) on 2021-02-01 13:28:03 in reply to 2

Thank you.