in reply to IO::Socket not reading from server?
is sending a string down the line, but if the receiving end is expecting a complete line (i.e., one with a trailing "\n"), it's going to block.print $DBIClient "$DBIServerQuery";
Try
print $DBIClient $DBIServerQuery, "\n";
|
|---|