Sincronize Local Database When Cross-Compiling?
-
Hi! I have a doubt, I don't know how to make a Sqlite database sincronized with my raspberry pi 2 when cross compiling. I need to be able to edit it from my Management software on my computer and then it has to be copied to my raspberry pi so the software which is executing there is able to access that database since sqlite doesn't work with servers it has to be accessed from the database local file. Thanks in advance
-
Hi! I have a doubt, I don't know how to make a Sqlite database sincronized with my raspberry pi 2 when cross compiling. I need to be able to edit it from my Management software on my computer and then it has to be copied to my raspberry pi so the software which is executing there is able to access that database since sqlite doesn't work with servers it has to be accessed from the database local file. Thanks in advance
Hi! So do you want to copy the sqlite file only once to the raspberry pi during deployment of your software or do you need to copy it over everytime you made changes to it?
-
Hi! So do you want to copy the sqlite file only once to the raspberry pi during deployment of your software or do you need to copy it over everytime you made changes to it?
-
Well, you could put the sqlite file on a server and let your program download it everytime it executes.
-
Well, you could put the sqlite file on a server and let your program download it everytime it executes.
-
Why can't you just add the sqlite file to your project and deploy it along with your application after you recompile it?
-
Why can't you just add the sqlite file to your project and deploy it along with your application after you recompile it?