Embedded Database for .net that can run off a network

后端 未结 11 1478
轮回少年
轮回少年 2020-12-28 12:57

I was (and still am) looking for an embedded database to be used in a .net (c#) application. The caveat: The Application (or at least the database) is stored on a Network dr

相关标签:
11条回答
  • 2020-12-28 13:06

    It sounds like ADO/Access is perfect for your needs. It's baked into the MS stack, well seasoned, and multi-user.

    You can programatically create a DB like so:

    Dim catalog as New ADOX.Catalog
    Catalog.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\server\path\to\db.mdb")
    

    You can then use standard ADO.NET methods to interact with the database.

    0 讨论(0)
  • 2020-12-28 13:07

    Check out VistaDB. They have a very good product, the server version (3.4) is in Beta and is very close to release.

    0 讨论(0)
  • 2020-12-28 13:11

    I'd recommend Advantage Database Server (www.advantagedatabase.com). It's a mature embedded DB with great support and accessible from many development languages in addition to .NET. The "local" version is free, runs within your application in the form of a DLL, requires no installation on the server/network share, and supports all major DB features. You can store the DB and/or application files all on the network; it doesn't care where the data is.

    Disclaimer: I am an engineer in the ADS R&D group. I promise, it rocks :)

    0 讨论(0)
  • 2020-12-28 13:12

    A little late to the post here.. And VistaDB is already mentioned, but I wanted to point out that VistaDB is 100% managed (since your post was tagged .net). It can run from a shared network drive, and is 1MB xcopy deployed.

    Since you mention SQL CE, we also support T-SQL Syntax and datatypes (in fact more than SQL CE) and have updateable views, TSQL Procs and other things missing in SQL CE.

    0 讨论(0)
  • 2020-12-28 13:16

    There's also Valentina. I cam e across this product when I was working on some Real Basic project. The RB version is very good.

    0 讨论(0)
  • 2020-12-28 13:17

    Have you considered an OODB? From the various open sources alternatives I recommend db4o (sorry for the self promotion :)) which can run either embedded or in client/server mode.

    Best

    Adriano

    0 讨论(0)
提交回复
热议问题