I'm building an android application that is very data intensive, and need to an interface to use to add data quickly and easily.
i've looked at all of the database tools, none of which make it easy to enter data using foreign keys. I need all the foreign key fields to show up with dropdown lists (for 1-1) or checkbox lists (for *-1) for fields to make it easy to enter data.
The closest I've found to achieving this is the following: http://www.sqlmaestro.com/products/sqlite/datawizard/download/
Which claims to generate ASP.Net forms from a database. Does anybody know any other tools that'd help me?
I guess I could build my own forms,but would prefer to spend my time developing my app. I'd be happy with a framework to kickstart development of my required forms, maybe somebody has done something similar already? (ASP.Net preferable but not a necessity).