Skip to main content

Posts

Showing posts from January, 2019

URL for Android and Java Book

Index of /~jpoial/allalaadimised/reading Name Last modified Size Description Parent Directory   -   Advanced-java.pdf 2016-08-28 16:26 873K   Android-Programming-Cookbook.pdf 2016-08-28 16:26 8.2M   Android-UI-Design.pdf 2016-08-28 16:26 3.7M   Apache-Hadoop-Tutorial.pdf 2016-08-28 16:26 2.5M   Apress.Java.7.for.Absolute.Beginners.Jan.2012.epub 2012-11-29 20:55 2.7M   Hibernate-Tutorial.pdf 2016-08-28 16:26 1.2M   JPA_Mini_Book.pdf 2016-08-28 16:26 736K   JSF-2.0-Programming-Cookbook.pdf 2016-08-28 16:26 4.9M   JUnit-Tutorial.pdf 2016-08-28 16:26 759K   JVM_Troubleshooting_Guide.pdf 2016-08-28 16:26 2.0M   Java-8-Features.pdf 2016-08-28 16:26 462K   Java-Abstraction.pdf 2016-08-28 16:26 489K   Java-Annotations-Tutorial.pdf 2016-08-28 16:26 634K   Java-Concurrency-Essentials.pdf 2016-08-28 16:26 2.1M   Java-Interview-Questions.pdf 2016-08-28 16:26 874K   Java-Reflection-Tutorial.pdf 2016-08-28 16:26 718K   Java_code_conventions.pdf 2014-08-29 10:40 129K   Multit

SQLite database

This tutorial explains, how to use the SQLite database in Android applications. https://www.studytutorial.in/android-sqlite-database-to-saving-data-in-android-device-tutorial Introduction Android provides internally database to store data.  SQLite Database  is one of the way to store data.  SQLite Database  is the open source to store data in a  Text file  on a Device. It supports standard relational database features like  SQL syntax ,  transactions  and  prepared statement . In this tutorial describes how to create Database on Android Device & how to Insert, Select, Update, Delete data. We will create a new Database, Database name is studytutorial and its table name is users. Table Structure given below: Create a new project We are going to create a new android project. Go to  File ⇒ New ⇒ New Projects  in Android studio. Create DBHelper Class We need to create a class named as DBHelper. It handle all database operations like Create, Select, Update, Delete Etc