Bart Verstraete schreef:
> Bart Verstraete schreef:
>> EUREKA
>> found it, the port number I gave is reverted back to 0, so its
>> mysql++ after all. Now the solution...
> Workaround in the ip address also specify the port, for example
> "127.0.0.1:3307". Don't have a patch yet,, for mysql++
Squashed it Warren,
In tcp_connection.cpp around line 115:
// Turn service into a port number
if (service.empty()) {
port = 0;
}
comment the line, or delete it:
//port = 0;
Why is it necessary to change port to 0?
Grts Bart