Skip to main content

Posts

Showing posts with the label Sqlite database

Sqlite database using SQLiteOpenHelper

// Sqlite database using SQLiteOpenHelpe r Creating a table named as company_table. Here company_table is table name, company.db is database name. package com.****; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import android.database.sqlite.SQLiteOpenHelper; import android.util.Log; public class StoringCompany extends SQLiteOpenHelper {              private static final  String DATABASE_NAME = "company.db";              private static final int DATABASE_VERSION = 1;              //object for SQlite database                        SQLiteDatabase dbase;     public StoringCompany(Context context, String name, CursorFactory factory,int versio...