
Utilizing ODBC to communicate two different processes on different machines
ODBC is Open DataBase Connectivity --- it allows your program running
anywhere to access data in an ODBC compliant database anywhere else. The key
here is Database! Two programs could indeed "communicate" across the network
using ODBC but only if the shared access to a common database where they can
write and/or read records to exchange data.... If you really want the two
programs to communicate i.e. pass variables back and forth there are better
ways then ODBC....
Cheers