I think I have narrowed the problem down to being the SOCKET is not defined
in mysql.h:
#ifndef my_socket_defined
#ifdef __WIN__
#define my_socket SOCKET
#else
typedef int my_socket;
#endif
In my application, i am include just as I saw done in an example
that came with
the code at the top
sorry you all, but I am new to Visual C++, I am trying to get some code
compiled using MySQL++ 1.7.1 for MS Visual C++ 6.0 but I keep getting an
error:
d:\docs\devel\epiware\mysql++\mysql\include\mysql_com.h(115) : error C2146:
syntax error : missing ';' before identifier 'fd'
d:\docs\devel\epiwa