SQLite Forum

Question about memory management
Login
Not using the CLI. I wrote a program in Clarion. Clarion has native support for SQLite. All I have to do is place the sqlite3.dll in my developer's folder and compile. We have a data dictionary that holds the name of the driver to use. I simply replaced Brtieve with SQLite and ran the program. I know that is not a lot of help. I do not want to use the CLI as I want to run multiple imports from a GUI. I accomplish that by calling the same program over and over from a master program until I have 30 instances of them running and each is writing to it's own database.

The code itself is simple. I read in a csv record, assign the fields to the fields in the SQLite database and then add them to the database. Loop until done.