Robert Valentino Well-Known Member Licensed User Longtime User Mar 15, 2022 #1 I have a SQL database on Firebase and would like to download it into a memory sql database. Currently I download the file and open and delete it. But would like to remove this security problem. Is there a way to create a memory database from a stream (stream is a sql database)? Can I take the stream and pass a reference to it to the memory sql? BobVal
I have a SQL database on Firebase and would like to download it into a memory sql database. Currently I download the file and open and delete it. But would like to remove this security problem. Is there a way to create a memory database from a stream (stream is a sql database)? Can I take the stream and pass a reference to it to the memory sql? BobVal
Erel B4X founder Staff member Licensed User Longtime User Mar 16, 2022 #2 If you are downloading the data with HttpJob then it is saved in a temporary file anyway. The file is deleted when you call Job.Release. Upvote 0
If you are downloading the data with HttpJob then it is saved in a temporary file anyway. The file is deleted when you call Job.Release.
Robert Valentino Well-Known Member Licensed User Longtime User Mar 16, 2022 #3 I'm using FirebaseStorage DownloadFile, (was going to convert to DownloadStream to try and avoid having the file go to temporary file storage), but I guess that won't work assuming it does the same as HttpJob Upvote 0
I'm using FirebaseStorage DownloadFile, (was going to convert to DownloadStream to try and avoid having the file go to temporary file storage), but I guess that won't work assuming it does the same as HttpJob