Which Database should I use in my C++/WinRT application?

David Hoffman 121 Reputation points
2021-09-30T15:26:26.06+00:00

I am struggling to figure out which database I should use in my UWP C++/WinRT app. Since the SQL query is similar, it does not matter if I use MSSql, MySql, or SQLite. For the most part I want to use just the basic types of SQL queries. No advanced features. I have used SQLite in a previous project as well as MSSql in a MFC project. The MFC code does not seem to be similar to anything in C++/WinRT as I can't seem to find corresponding API calls for the SQL functions. I am leaning towards SQLite, but I am not sure this will be a good choice as I am still learning UWP. Thoughts on the subject. Thanks.

Universal Windows Platform (UWP)
SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,760 questions
C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,538 questions
0 comments No comments
{count} votes

Accepted answer
  1. Castorix31 81,746 Reputation points
    2021-09-30T16:22:35.187+00:00

    You can use SQL Server Compact
    I used it in a freeware in C++/Win32, with OLEDB and it works very fine (better than SQLite that I used first)

    3 people found this answer helpful.

0 additional answers

Sort by: Most helpful