I was wondering which of these would be best suited for the needs of my application.The application would be distributed on multiple pc and share a common database. This database could contains up to about 20 000 entries. Basically it is simply a meeting manager and each entry in the DB would represent a meeting.For instance, I might want to show every meeting involving a certain person or every meeting with a certain object. That's not really important at this point since this is only the Data representation I might want to make.The fact is I have certain limitations :
- I'm doing the application in C#
- I can't install anything on the users' pc (I must only copy the .exe + dll if needed)
- The Database will be locate on a network storage and might beaccessed by up to ~10 pc at the same time
- I have never used SQL CE nor SQLite (nor any other DB in fact)