Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-13 Thread Marco van de Voort via lazarus
Op 13-7-2024 om 15:53 schreef John Landmesser via lazarus: *Beware*: [john1@manjaro ~]$ /run/media/john1/ntfs1/PROJEKTE/Lazarus/Laufdaten/GUI/laufdaten Threading has been used before cthreads was initialized. Make cthreads one of the first units in your uses clause. Runtime error 211 at $000

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-13 Thread John Landmesser via lazarus
Am 13.07.24 um 13:25 schrieb Marco van de Voort via lazarus: Op 10-7-2024 om 12:59 schreef Arí Ricardo Ody via lazarus: I'm trying to use SQLite with Lazarus on a Linux Mint. It is asking for a module ¨libsqlite3.so¨ (without the quotes). I installed sqlite on my linux with apt. I'm not findin

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-13 Thread Marco van de Voort via lazarus
Op 10-7-2024 om 12:59 schreef Arí Ricardo Ody via lazarus: I'm trying to use SQLite with Lazarus on a Linux Mint. It is asking for a module ¨libsqlite3.so¨ (without the quotes). I installed sqlite on my linux with apt. I'm not finding ¨libsqlite3.so¨ anywhere on my SSD, and I also couldn't f

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-12 Thread Arí Ricardo Ody via lazarus
Hey guys! Yesterday I had the Linux Mint software updated on my machine. So I ran: sudo apt install sqlite3-dev This time everything went well and I got this command to work. Then I set up a small Lazarus project that does INSERT in a test SQLite database and everything worked. Thank you to everyo

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-11 Thread John Landmesser via lazarus
Am 10.07.24 um 12:59 schrieb Arí Ricardo Ody via lazarus: Hello! I'm trying to use SQLite with Lazarus on a Linux Mint. It is asking for a module ¨libsqlite3.so¨ (without the quotes). I installed sqlite on my linux with apt. I'm not finding ¨libsqlite3.so¨ anywhere on my SSD, and I also couldn't

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread Michael Van Canneyt via lazarus
On Wed, 10 Jul 2024, Arí Ricardo Ody via lazarus wrote: Hello friends! I tried to install libsqlite3-dev and it gave an error during installation. As for the symbolic link suggestion, I ask in which directory I must be logged in to execute the creation of the symbolic link. I really need to k

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread Jean SUZINEAU via lazarus
Le 10/07/2024 à 21:46, Arí Ricardo Ody via lazarus a écrit : As for the symbolic link suggestion, I ask in which directory I must be logged in to execute the creation of the symbolic link. The following command is written with absolute paths so it can be run from any current directory : ln -s

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread Arí Ricardo Ody via lazarus
Hello friends! I tried to install libsqlite3-dev and it gave an error during installation. As for the symbolic link suggestion, I ask in which directory I must be logged in to execute the creation of the symbolic link. I really need to know where I can get the library necessary to use slqite3 with

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread Luca Olivetti via lazarus
El 10/7/24 a les 12:59, Arí Ricardo Ody via lazarus ha escrit: Hello! I'm trying to use SQLite with Lazarus on a Linux Mint. It is asking for a module ¨libsqlite3.so¨ (without the quotes). I installed sqlite on my linux with apt. I'm not finding ¨libsqlite3.so¨ anywhere on my SSD, and I also

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread zeljko via lazarus
On 10.07.2024 12:59, Arí Ricardo Ody via lazarus wrote: Hello! I'm trying to use SQLite with Lazarus on a Linux Mint. It is asking for a module ¨libsqlite3.so¨ (without the quotes). I installed sqlite on my linux with apt. I'm not finding ¨libsqlite3.so¨ anywhere on my SSD, and I also could

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread Mattias Gaertner via lazarus
On 7/10/24 12:59, Arí Ricardo Ody via lazarus wrote: Hello! I'm trying to use SQLite with Lazarus on a Linux Mint. It is asking for a module ¨libsqlite3.so¨ (without the quotes). I installed sqlite on my linux with apt. I'm not finding ¨libsqlite3.so¨ anywhere on my SSD, and I also couldn't fi

Re: [Lazarus] Getting started with SQLite with Lazarus on Linux Mint

2024-07-10 Thread Jean SUZINEAU via lazarus
I think that usually you should have already (installed by apt) a symbolic link named libsqlite3.so pointing to libsqlite3.so.0. You can try  to create the symbolic link with something like: ln -s /usr/lib/libsqlite3.so.0 /usr/lib/libsqlite3.so -- __