Skip to main content

Android SQLite Database 1

Using Android Studio Crating a Database (SQLite)

1. NEW PROJECT
2.CREATE  A CLASS NAME CALL (DB.class)
3.import SQLiteDatabase
   import SQLiteOpenHelper

SCREEN SHOT OF CODE (IMAGE)


CODE (TEXT) Bellow

package com.example.rimzan.j2program;
import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteOpenHelper;

public class DB extends SQLiteOpenHelper {

    public static final String DATABASE_NAME="Student.db";    public static final String TABLE_NAME="Student_Table",            COL_1="ID",COL_2="NAME",COL_3="SURENAME",COL_4="MARKS";
    public DB(Context context) {
        super(context, DATABASE_NAME,null,1);        SQLiteDatabase db=getWritableDatabase();    }

    @Override    public void onCreate(SQLiteDatabase db) {
        db.execSQL("CREATE TABLE "+TABLE_NAME+" (ID INTEGER PRIMARY KEY AUTOINCREMENT, " +
                "NAME TEXT, SURENAME TEXT, MARKS INTEGER)");    }

    @Override    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        db.execSQL("DROP TABLE IF EXISTS "+TABLE_NAME+ "");        onCreate(db);    }
}

Comments

Popular posts from this blog

Micro Loan Banking Management System

What is Google Adwords Certification Program

What is Google Adwords Certification Program? Google Certification Program is a program through which an individual can earn one of the most valuable status of being a google adwords qualified individual or a company can earn a google adwords certified partner status. Google Adwords Certification wiil show your knowledge, skills and proficiency in google adwords latest tools and it will show that an individual or a company know how to design, implement and manage an adwords campaign and they will use best practices and techniques and follow google adwords policies and guidelines which is one of the most important thing in eyes of Google. Google has launched two types of certification program for Adwords: Individual Qualification. Company Certification. Individual Qualification Individuals who want to add more value to there resume or an individual who want learn google adwords and get certified can study and get Google Adwords Qualified Individual also known as Google Adwo

My Second Awarded Project : skilled based social network