Arma2NETMySQLPlugin
Arma2NETMySQLPlugin copied to clipboard
Look into no-return method
For some SQL statements like "UPDATE", there is no return value. However, the server side still has to wait for the return value. One option would be to add another function that immediately returns to Arma and then the plugin would still be off querying and running the command. The potential downside to this is the order of the queries in the current setup. Perhaps the entire system should be switched to a producer/consumer setup where queries are executed in order but based on the parameter can be immediately returned back to Arma? Not sure what the best solution is here...