@lordmooch Yeah, that’s why I have to purchase that Corona SDK subscription (and a Mac…) soon. I’m not doing anything stressing for an iPad yet but I’d rather know sooner than later. 
Right now I’m building a limited Fantasy Football app for player ranking. Nothing hideously complex - just a list of ~300 players with viewable stat information and some interesting new ways for users to set custom ranks.
In terms of data handling, each player has a unique id, and then I need to track roughly:
300 players * 32 stats * 3 seasons * 16 games
Even if I cut that down to 1 season, that’s 100k entries, way over my ballpark earlier! By using job-specific tables I can probably cut the number of entries by 80% (ie: have a kicker-specific table, since they only need 6-7 stats covered) but it’s still pretty large.
In terms of ways to get this data, it’s either:
a. Manual entry (ughh…)
b. Some sort of spreadsheet import
c. oAuth (not updated enough for the SDK and a third language to learn this year…)
The stats table won’t be user-editable (history is history).
EDIT: So as to explain why I’d consider strings - since each player plays a reliable number of games, I could simply use one column called “throws” and have “1,2,3” etc rather than have 16 columns, one for each week, just to cover throws. [import]uid: 41884 topic_id: 14095 reply_id: 64013[/import]