Re: [fricas-devel] How one talk to sqlite3 database from Fricas?

2024-04-12 Thread Grégory Vanuxem
Hello, Le jeu. 11 avr. 2024 à 21:19, Kurt Pagani a écrit : > > https://github.com/nilqed/spadlib/tree/master/sqlite > This is definitely better than what I thought. I guess Nasser also wants the ability to add entries but it's easy to add this I guess. I wanted to cc-ing him but he uses temporar

Re: [fricas-devel] How one talk to sqlite3 database from Fricas?

2024-04-11 Thread Kurt Pagani
https://github.com/nilqed/spadlib/tree/master/sqlite 'Nasser M. Abbasi' via FriCAS - computer algebra system < fricas-devel@googlegroups.com> schrieb am So., 24. Dez. 2023, 03:53: > I googled and could not find hit on this. Is it possible to open SQLITE3 > dat

Re: [fricas-devel] How one talk to sqlite3 database from Fricas?

2024-04-11 Thread Grégory Vanuxem
Hello Nasser, You were asking about sqlite3 database things. I wonder what you were asking for. The routines you use. I was looking at your work, it looks interesting. But, to be more precise, what are the functions/methods you use? I only know a little of the usual SQL language and minor things a

Re: [fricas-devel] How one talk to sqlite3 database from Fricas?

2023-12-23 Thread Qian Yun
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

[fricas-devel] How one talk to sqlite3 database from Fricas?

2023-12-23 Thread 'Nasser M. Abbasi' via FriCAS - computer algebra system
I googled and could not find hit on this. Is it possible to open SQLITE3 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 Mat