There's no direct support.
You can try the following methods:
1. construct SQL strings and pass them to external sqlite process.
2. use a Common Lisp sqlite library. This requires some programming.
3. use C FFI interface, this also requires some programming.
4. use sage to interface with SQL and FriCAS.
5. it is possible to export sqlite database to text format, then
together with grep/sed/etc to hack up a input file for FriCAS to read.
May I ask you what's the purpose of this? Maybe you don't need
full sqlite support, and there can be a shortcut to fullfill your needs.
- Qian
On 12/24/23 10:53, 'Nasser M. Abbasi' via FriCAS - computer algebra
system wrote:
> I googled and could not find hit on this. Is it possible to open SQLITE3
> <
https://www.sqlite.org/index.html> database file from Fricas and
> read/write to the database using SQL?
>
> Currently all my integration problems are stored in sqlite3 database which
> is open source database. Both Maple and Mathematica support reading/write
> to it. I wrote small note sometime ago how to do this in Maple. Here is link
> <
https://12000.org/my_notes/faq/sql_in_maple/index.htm>