Dave Edwards wrote:
> 
> Still exactly the same issue though in Linux , around 300 rows imported 
> and it falls over. I wonder if it is thread related then? If it is then 
> I will have remove support on Linux as the app is multi-threaded and as 
> far as I was concerned thread safe (never errors).
> 

How was the native SQLite library compiled?  Was it compiled with
SQLITE_THREADSAFE set to 1?  Also see:

        https://www.sqlite.org/threadsafe.html

>
> I will try a few tests with only 1 thread allowed and let you know.
>

Only one thread at-a-time may safely use a SQLiteConnection object
instance; however, you can create one of these on each thread and open
the same database.

--
Joe Mistachkin

_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to