Search code examples
c#mysqlsharpdevelop

Using Mysql as Embedded application database with Sharp Develop


Is it possible to use Mysql as SQLlite, Firebird (single databse file) for a local application without installing the server?

I need a database to store the data of my application.thanks


Solution

  • It seems there is an option for you: libmysqld.

    The embedded MySQL server library makes it possible to run a full-featured MySQL server inside a client application.

    It is written in C/C++, so you should be able to use it in your C# application.

    By the way: why not to use SQLite of Firebird? They seems to suit better your requirement.