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

Essential Tips for Successful Condo Renovation

Before embarking on the renovation journey, it's crucial to comprehend what the process involves. Condo…

20 hours ago

Tips on how to Maximize Your Glory Casino Benefit

Hey there, fellow casino lover! If you're on the hunt to help make the most…

1 day ago

How to Maximize Wins on Glory Casino

Hey there, fellow gaming enthusiast! Are you ready to dive into the exciting world of…

2 days ago

Best Private Universities to Consider throughout Turkey

Hey there! So you're interested in studying in Turkey? That's a fantastic choice! Egypt is…

2 days ago

Best Benefits of Harbor City Hemp

Welcome to the world of Harbor Town Hemp! If you're curious about exactly how hemp…

4 days ago

Common Issues with Gear Pumps and Solutions

Before we discuss the issues, let's quickly review what a gear pump is. A gear…

4 days ago