I just have a little question with regards to connecting C to MySQL.
Well, I already have an existing MySQL server installed on my system but when I tried to run my code with the #include <mysql.h> in the header, it says that the path does not exist. So, I placed the include folder of my MySQL to the "includes" folder of my compiler making this code: #include <include/mysql.h>. At this far, the compiler recognized it but gives me a bunch of errors that I don't know what.
Is there any alternative for this?