I always do this.. work hard to get all my data out of a SQL DDB into a nice big tidy structure and think it'll be easy to transmit up to a PC, then realise I can't do that. Usually I work with C++ and pointers and then it's simple.
So now I've got all my data in a big Type filled with lots of other custom Types and I'm stuck.
I need to transmit that package of data to a PC and a C# application will receive and unpack it. Any suggestions as to how I can look to do so without writing a massive function to serialize all the data?
I thought maybe one way would be to extract the data into a smaller temporary SQL DDB and send the file up. We use SQLLite on the PC side so I don't know if this will be able to deal with the received file?
Any suggestions gratefully received!
So now I've got all my data in a big Type filled with lots of other custom Types and I'm stuck.
I need to transmit that package of data to a PC and a C# application will receive and unpack it. Any suggestions as to how I can look to do so without writing a massive function to serialize all the data?
I thought maybe one way would be to extract the data into a smaller temporary SQL DDB and send the file up. We use SQLLite on the PC side so I don't know if this will be able to deal with the received file?
Any suggestions gratefully received!