Application database query made in C#

Asked

Viewed 107 times

2

I am creating an application in C#, but a question came to me. Which database is used so that it is not necessary to install the database in the client’s system? For example: If I were to use Postgresql how could I integrate the application with the database when installing without having to install the DBMS itself? Not that DBMS is Postgresql, it would be something like SQL Server that is already included in the C# or Sqlite library something like?

  • @Israelsouza, you don’t need to install the BD, since your web.config or app.config points to an IP address of the BD. Now, even install if you need to point as spoken.

2 answers

0

The recommended by Microsoft is SQL Server Express Localdb. It ships into a single data file an instance of SQL Server, not requiring installation of a database just for the application.

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.