Android Data Access Level

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!

+5
source share
2 answers

The following links will help you. They are located on the official website of the developer and talk in detail about various ways of storing and accessing data on Android. There are no active records like functions to get database data, so you will need to learn something about SQL.

http://developer.android.com/guide/topics/data/data-storage.html

http://developer.android.com/guide/topics/providers/content-providers.html

0
source

You can find a simple example of dal and CRUD operations on this link .

0
source

All Articles