I am planning on building a C# WPF desktop application with a PostgreSQL database (to store using settings and some textbox data).
The user of this application will NOT have a database server on their computer. Can I build a "built-in"/"run-time" database (whichever it's called) with WPF application?
I'm new to database application, and my question is:
Can I deploy a WPF application with PostgreSQL, and user can install and still use the application without a SQL server?
Is deploying an application where user has a SQL server would have any difference to deploying an application where user does not have a SQL server?
I need something of high performance. I have up to 50 concurrent insertion each inserting data in speed of 10 milliseconds, and I'm storing thousands of data in seconds to the database. I don't think SQLite or SQL compact would do that job. I needed the database to be embedded though