What are the limitations to SQL Server Compact? (Or - how does one choose a database to use on MS platforms?)

后端 未结 9 423
忘掉有多难
忘掉有多难 2020-12-02 14:10

The application I want to build using MS Visual C# Express (I\'m willing to upgrade to Standard if that becomes required) that needs a database.

I was all psyched ab

9条回答
  •  Happy的楠姐
    2020-12-02 14:45

    There are constraints... Joel seems to have addressed the details. SQL CE is really geared for mobile development. Most of the "embedded" database solutions have similar constraints. Check out

    • SQLite

      • No TEXT field character limit
      • Auto increment only on INTEGER PRIMARY KEY column
      • Some third party encryption support
    • Esent

      • (unmanaged code isn't my forte, and I can't decipher the unmanaged docs)

提交回复
热议问题