Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I'm beginner in android and i want to know how to fill all data in database.. Thanks for your help...
Posted

In Android you can use the SQLite databases to store your data in the database-form. You can get help in this scenario from this CodeProject article[^], which explains how you can work with SQLite databases, for storing and extracting the data.

You can at the same time, read this third-party tutorial on working with the SQLite database in Android: http://www.tutorialspoint.com/android/android_sqlite_database.htm[^]

Finally, you can read the official Android's developer documentation about SQLite databases at their own developer's documentation website. The link, http://developer.android.com/training/basics/data-storage/databases.html[^], would be the place where you will find the official documentations about the SQLite usage in Android applications.
 
Share this answer
 
Comments
JaironLanda 21-Feb-15 10:35am    
Hello! Thanks for your answer!. If i want to store articles in the database, what should i do?
Afzaal Ahmad Zeeshan 21-Feb-15 10:40am    
Articles yet would be just text, you can store their data in database too. Databases support saving the text (character; nvarchar in database) data in them. So you won't have any problem. Saving the images won't be a good idea. You can skip this idea, and store the images in file system, instead of databases.
JaironLanda 21-Feb-15 10:47am    
I'm beginner..hehe how to store and retrieve articles? I'm sorry still beginner..Thanks for your help!
Afzaal Ahmad Zeeshan 21-Feb-15 10:49am    
SELECT command to retrieve, INSERT INTO command to insert. :) You can read more about them in some sort of documentation or tutorial.
JaironLanda 21-Feb-15 10:54am    
i'm just want store the article and then i want retrieve back...And how to insert long article? Thanks for your help!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900