I installed googles’ v8cgi javascript engine in an IIS server environment, which works like it should.
Using the engines’ API_MySQL module, I’d like to connect to the MySQL database on that server, but not on the default port (3306). The regular connection method is [MySQL].connect(host,root,pass,database);. I’ve tried 'localhost:port' and 'localhost,port' but both arent’t working. Does anyone know a method to connect to a non default port using this module?
I’ll answer my own question, after having seen the source code of the API_MySQL module: nope. The connect call is hardcoded to use the default port (
unsigned int portis hardcoded to 0).