Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Bo Berglund wrote: > I just wonder how SQLite will perform. For once it is single-threaded > as far as I know, so concurrent usage might be hard to achieve. At > least this is what we see in our Roundup tracker. In that any user > accessing the database will lock it for the others. It depends on how you handle the locking.. only one process can write at once, but multiple processes can read, so it's not really that much of an issue for small installations (which is what it's aimed at primarily). A company is likely to have a 'proper' database installed anyway so hopefully it'll all work out. > Really simple to do with MSSQL :-) Heck, it doesn't get simpler than sqlite... Tony