Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Contrary to what other people are saying, Jet is not dead and far from it: ACE is the new version of Jet and it's pretty robust and backward compatible. </p> <p>Both SQLite and Jet/ACE have their strengths and weaknesses and you need to get more information about the specific points that are important to you and your application.</p> <ul> <li>In either case you can redistribute the engine.</li> <li>Jet/ACE is a bit more integrated and supported out of the box in MS tools and Visual Studio.</li> <li>Jet/ACE has more granular locking, which may be important if your app allows multi-users or needs multi-threaded access to the database.</li> <li>Jet/ACE has more features in terms of what you would expect from a database (joins, unions and complex queries).</li> <li>Jet/ACE has a simple migration path to SQL Server, so if your database needs become big, you could move to SQL Server fairly easily.</li> <li>SQLite is cross-platform, so if your app needs to be ported to Linux/Mac under Mono then SQLite is a better choice.</li> <li>the SQLite engine is tighter so redistributing may be easier.</li> <li>datatypes are quite loose in SQLite.</li> <li>SQLite has more liberal redistribution rights (since you can basically do whatever you want with it).</li> </ul> <p>People who say that Jet corrupts databases are stuck in 1995.</p> <p>In the end, unless your application has some very specific requirements that are pushing the boundaries of either database engines, then it probably doesn't matter which one you chose.<br> Just use the one that easiest for you to include in your project.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload