I am currently making a webserver that fetches data from a database and passes it to the API. I managed to make both of those things work separately but when I need to make them work together (my webserver queries the database, parses it in json, then passes it to the server), I'm running into a problem in an area I am quite unfamiliar with.
I used Casablanca for my API and Connector/C++ for the database connection. However in the Static Build section of this link it tells me that the Runtime Library should use the /MD compiler option. The problem is that for the webserver part of the program to work, it needs to be in the default /MDd.
Would it be possible to make one or the other work in either /MD or /MDd, and if not, what options do I have for my webserver to get the data queried from a database?
EDIT : this seems to only be a problem on debug and not on release. This link is the one that made me tick. I don't know if this is ethical, but at least it's working.
This can be closed.