Hi all, I have a .Net webservice the bytearray-conversion of a SQLite file. My client call the webservice and I received the byteArray as expected but I couldn't treat it as SQLite until I do the following: - Write the byteArray to a file with .db extension. - Then open the SQLConnection to that file.
So is there a way to treat the byteArray as SQLite without saving it first to the local storage and read it? Thx!

