Are there any good and free online databases out there that works with Corona and which can store accounts with passwords and accountdata? [import]uid: 24111 topic_id: 20103 reply_id: 320103[/import]
Sqlite maybe? [import]uid: 16142 topic_id: 20103 reply_id: 78540[/import]
I mean a place where I can store data for accounts for an app. [import]uid: 24111 topic_id: 20103 reply_id: 78541[/import]
Amazon SimpleDB
http://aws.amazon.com/simpledb/
Free to get started and small traffic, 25 SimpleDB Machine Hours and 1 GB of Storage for free each month, that’s a whole lot for what you are looking to do. It’s secure, and it scales if you app takes off to 10 million people it won’t buckle, you’ll just get a bill, however if you have 10 million users you could just sell out to google or amazon anyway
[import]uid: 110373 topic_id: 20103 reply_id: 78545[/import]
What does “25 SimpleDB Machine Hours” actually mean?
How would I use that with Corona? [import]uid: 24111 topic_id: 20103 reply_id: 78549[/import]
Question 1: 25 hours of computing, making accounts and retrieving them should be measured in thents of seconds. So it’s way more than you need. Basically when you call on simpleDB they log usage of their computers.
Question 2: they have a RESTful API you could hook into.
http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/MakingRESTRequests.html
It’s not a simple process but not to hard either. Honestly of your storing people’s passwords be sure to do it right and use the crypto module, otherwise you could open yourself to serious liability.
-B [import]uid: 110373 topic_id: 20103 reply_id: 78550[/import]
Well i also found this:
https://grubba.net/index.php
Do you think it could work? [import]uid: 24111 topic_id: 20103 reply_id: 78566[/import]