I have a server application that handles requests for information and return the result to a client application
I am using MQTT as my communication method but the same question applies to asyncstreams
One of the requests is to query a database and return the results to the client
I can't use lists or maps etc as the query format is unknow to the server and the results can only be interpreted by the client
so my question is: How can I send a reultset over a network?
I am using MQTT as my communication method but the same question applies to asyncstreams
One of the requests is to query a database and return the results to the client
I can't use lists or maps etc as the query format is unknow to the server and the results can only be interpreted by the client
so my question is: How can I send a reultset over a network?