Categories: ANDROID APP

Create a easy enterprise App utilizing SQL Lite Database in Android Studio – for rookies.



This video exhibits the whole steps to create a easy Enterprise App utilizing the SQLite Database in Android Studio. It exhibits easy methods to create the App interface after which write the SQL Question and Insert instructions to play with the database. It takes a quite simple database desk instance to indicate it.

Full supply is accessible at:

We shall be glad to listen to from you concerning any question, ideas or appreciations at: programmerworld1990@gmail.com

Supply code:

/**************************************/

bundle com.instance.mybusinessappyt.mybusinessappyoutube;

import android.content material.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.assist.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

non-public EditText editTextStockName;
non-public EditText editTextQuantity;
non-public TextView textViewDisplay;

non-public myDatabaseHandle dbHandle;
non-public SQLiteDatabase myDB;

@Override
protected void onCreate(Bundle savedInstanceState) {
tremendous.onCreate(savedInstanceState);
setContentView(R.structure.activity_main);

editTextStockName = findViewById(R.id.editTextStockName);
editTextQuantity = findViewById(R.id.editTextQuantity);

textViewDisplay = findViewById(R.id.textViewDisplay);

dbHandle = new myDatabaseHandle(this, “FirstDatabase”, null, 1);

myDB = dbHandle.getWritableDatabase();

strive{
String stringCreateTable = “CREATE TABLE firstTable(StockName TEXT, Amount INTEGER)”;
myDB.execSQL(stringCreateTable);
}catch (Exception e){
e.printStackTrace();
}
}

public void writeButton(View view){
ContentValues contentValues = new ContentValues();

contentValues.put(“StockName”, editTextStockName.getText().toString());
contentValues.put(“Amount”, Integer.parseInt(editTextQuantity.getText().toString()));
myDB.insert(“firstTable”, null, contentValues);
}

public void readButton(View view){

String question = “Choose * FROM firstTable WHERE StockName = ‘”+ editTextStockName.getText().toString()+”‘”;

Cursor myCursor = myDB.rawQuery(question, null);

if (myCursor.moveToFirst()){
myCursor.moveToFirst();
textViewDisplay.setText(myCursor.getString(0) + ” — ” + myCursor.getString(1));
}else{
textViewDisplay.setText(“Information Not Discovered … “);
}

}

}
/*************************************/

/*************************************/

bundle com.instance.mybusinessappyt.mybusinessappyoutube;

import android.content material.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

public class myDatabaseHandle extends SQLiteOpenHelper {

public myDatabaseHandle(Context context, String identify, SQLiteDatabase.CursorFactory manufacturing unit, int model) {
tremendous(context, identify, manufacturing unit, model);
}

@Override
public void onCreate(SQLiteDatabase db) {

}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

}
}

/**********************************************/

source

linda

Recent Posts

Maximize Your Skills with Online Business English

Hey there! If you're looking to boost your English skills, especially in a business context,…

4 days ago

Exploring the Features of Elf Bar BC20000

Hello, fellow vapers and the vape-curious! If you find yourself wandering through the expansive universe…

4 days ago

Brazil’s Role in Shaping BRICS Leadership

By John Kaweske Hey there! So, have you ever wondered what Brazil is up to…

1 week ago

Why Amazon4D Gacor Slots Are Popular

Before we dive into the specifics of Amazon4D Gacor Slots, let's take a quick detour…

1 week ago

Mastering Business Casual for Men: A Complete Style Guide

Organizational casual is the sweet location between professional and tranquil. It allows men to look…

2 weeks ago

Tips for Maximizing Your QQDewa Experience

Understanding QQDewa Basics First things first, what's QQDewa all about? Simply put, QQDewa is an…

2 weeks ago