Yes, I'm using SQL server driver. So I need to download MyODBC driver and
install it on my nt webserver, right?
Ayup. I routinely hit MySQL via
C++ -> ADO -> OLEdb -> MyODBC -> MySQLlib -> MySQL
Perl -> DBI -> DBD-ADO -> Win32-OLE.pm -> ADO -> OLEdb -> MyODBC ->
MySQLlib -> MySQL
C++ -> MySQLlib -> MySQL
And with a little PPM action I could also do:
Perl -> DBI -> DBD-MySQL -> MySQL
Oh, one more thing. There's actually 8 combinations, because sometimes the
MySQL is local and sometimes remote.
Have fun!