Die Datei selbst liegt auf einem Netzlaufwerk mit Schreibrechten, hat ja auch mit der sqlite2 funktioniert.
Uh.
http://www.sqlite.org/faq.html#q5:
Zitat:
But use caution: this locking mechanism might not work correctly if the database file is kept on an NFS filesystem. This is because fcntl() file locking is broken on many NFS implementations. You should avoid putting SQLite database files on NFS if multiple processes might try to
access the file at the same time.
Und später:
Zitat:
When SQLite tries to
access a file that is locked by another process, the default behavior is to return SQLITE_BUSY. You can adjust this behavior from C code using the sqlite3_busy_handler() or sqlite3_busy_timeout()
API functions.
Auch: Ich verstehe das "Zugriff über:
dll" nicht. Gehst du nun direkt über die
dll oder (der Quellcode sieht eher danach aus) eine Zwischenschicht wie dbExpress oder FireDAC?