QNA > C > Come Fa Il Database Sqlite In Android Studio? Non Sono In Grado Di Trovarlo Negli Strumenti.

Come fa il database SQLite in Android Studio? Non sono in grado di trovarlo negli strumenti.

Non lo troverai negli strumenti. Ma puoi seguire i seguenti passi per usare SQLite nella tua app.

  • Pacchetto database - Il pacchetto principale è android.database.sqlite che contiene le classi per gestire i tuoi database
  • Creazione database - Per creare un database devi solo chiamare questo metodo openOrCreateDatabase con il tuo database e la modalità come parametro. It returns an instance of SQLite database which you have to receive in your own object.Its syntax is given below -
  1. openOrCreateDatabase("your database name",MODE_PRIVATE,null); 
  • Database insertion - You can create table or insert data into table using execSQL method defined in SQLiteDatabase class. Its syntax is given below -
  1. mydatabase.execSQL("CREATE TABLE IF NOT EXISTS table_name(Username VARCHAR,Password VARCHAR);"); 
  2. mydatabase.execSQL("INSERT INTO table_name VALUES('admin','admin');"); 
  • Database fetching - You can retrieve anything from database using an object of the Cursor class. You will call a method of this class called rawQuery and it will return a resultset with the cursor pointing to the table.
  1. Cursor resultSet = mydatbase.rawQuery("Select * from table_name",null); 
  2. resultSet.moveToFirst(); 
  3. String username = resultSet.getString(0); 
  4. String password = resultSet.getString(1); 

Thank you! Hope this helps you!!

Di Banwell

Quanto vengono pagati i commentatori di cricket? :: Cosa significa boot loop?
Link utili