Hi, I programmed in C + + Builder 6. In connection with the database using:
mysql_server_init(0, NULL, NULL);
db = mysql_init(NULL);
Con= mysql_real_connect(db, "ip", "user", "pass", "base_name", 3306, NULL, 0);
When a direct Internet connection is working, and when the network (http proxy)- it does not work. How to fix it? Thank you.
mysql_server_init(0, NULL, NULL);
db = mysql_init(NULL);
Con= mysql_real_connect(db, "ip", "user", "pass", "base_name", 3306, NULL, 0);
When a direct Internet connection is working, and when the network (http proxy)- it does not work. How to fix it? Thank you.