I'm currently trying to create my first Android app and its learning curve (I will overcome!), Seeing that I came from .net C # / vb.net web background (without java background).
I was working on an example of Notepad that google provides and is now working on my own application that has three tables in the sqlite database.
I need to create a method for every insert, delete, edit, etc., and then more to read the database.
I was curious to find out if they have any good Dataaccess levels that help with this (I grew up at the usual level for NHibernate and used linq)
It seems like a lot of work on writing all this sql inside java files!
Steve source
share