Hello, I am using SQLite DLL version 3.2.1 to access a single file database. I use sqlite3_exec() to call this simple query:
BEGIN; INSERT INTO Messages (IDMessage, Body) VALUES (1054, 'Test'); COMMIT; When the application runs under Windows XP, the query takes unnoticable amout of time (10ms or so), but when I run the very same application under clean installation of Windows 2000, the query may take 150ms or more. The database size is same on both systems. Could you suggest any way how I can improve the performance under Windows 2000? Thanks in advance Lukas Neumann