-1
Personal is the best person to save the number, due date and card cvv, in the app itself (sqlite) or in the web database?
-1
Personal is the best person to save the number, due date and card cvv, in the app itself (sqlite) or in the web database?
1
There are advantages and disadvantages to every approach:
1- Save to APP:
Perks: No need to write information because they are saved directly on mobile; Partially offline.
Disadvantages: Changing the device means writing the data; Insecurity because the data is accessible to anyone who uses the mobile phone; Cellular memory consumption for data storage
2- Save to WEB:
Perks: It is not necessary to write information because it is saved on a remote server; It does not use internal memory of the mobile to store the data; Security due to the storage of the information in a remote system associated with the user and not to the mobile; You can use the app on any mobile device.
Disadvantages: Application only works with Internet access; Need to register information on a server log; Latency when loading information from a remote server; Need for authentication to access information from the remote server.
You need to consider which disadvantages can be taken into account depending on the purpose of the application. I usually opt for WEB saving since nowadays virtually every application requires Internet access.
1
Answer
Completion
It is best to save the information in a database on the web assuming and guaranteeing Information Security commitments with the customer. And there is no reason to save the credit card data in Sqlite because to make a transaction or any other query using credit card is required Internet access.
thank you Giancarlo =)
Browser other questions tagged android sqlite
You are not signed in. Login or sign up in order to post.
thank you Giuliana =)
– Jonathan Silva