Page 1 of 1

Configuration visual studio project to work with MariaDB

PostPosted: 13. September 2019 11:43
by denisT
How should I configure the C++ project in Visual Studio 2017 to work with MariaDB in XAMPP?
All tutorials refer to include directory and to lib files, but i can not find this in XAMPP folder (C:\xampp\mysql).

Re: Configuration visual studio project to work with MariaDB

PostPosted: 18. September 2019 01:12
by gsmith
https://downloads.mariadb.org/mariadb/10.4.8/ is the downloads. You may be able to match versions by fudging the numbers in the URL. My guess would be as long as the major(x) and minor(y) versions are the same, you should be ok.

The mariadb-x.y.z-winx64.zip is what you want. Inside it are the lib & include folders you'll need.

Re: Configuration visual studio project to work with MariaDB

PostPosted: 19. September 2019 12:43
by denisT
gsmith wrote:https://downloads.mariadb.org/mariadb/10.4.8/ is the downloads. You may be able to match versions by fudging the numbers in the URL. My guess would be as long as the major(x) and minor(y) versions are the same, you should be ok.

The mariadb-x.y.z-winx64.zip is what you want. Inside it are the lib & include folders you'll need.


Vielen Dank! Das hat funktioniert.