Hi i'm new in android programming,i need your help, i want to create an android database using an EditText and Button the button is to submit the data inserted into EditText, i have two Activity the first is the Adding the database and second is viewing the list of database saved. I'm creating a simple "Adding Employee and save it into database"
here's my code on creating a database;
SQLiteDatabase db = openOrCreateDatabase("MyDB", MODE_PRIVATE, null);
db.execSQL("CREATE TABLE IF NOT EXITS employee (name VARCHAR, positon VARCHAR);");
Now i dont have idea how can i insert the data in ediTtext into Viewing Database any answer is appreciated.Thanks regards xyvyre