SQLite
 sql >> डेटाबेस >  >> RDS >> SQLite

संपादन टेक्स्ट और बटन का उपयोग करके डेटाबेस में डेटा संग्रहीत करना

बटन क्लिक पर डेटाबेस में Edittext मान डालने के लिए अपना कोड बदलें:

public class DatabaseActivity extends Activity {
 DBAdapter db;
Button submitbtn;
EditText edit1,edit2,edit3;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_database);
    db=new DBAdapter(this);
   submitbtn = (Button) findViewById(R.id.submit);
   edit1 = (EditText) findViewById(R.id.edit1);
   edit2 = (EditText) findViewById(R.id.edit2);
   edit3 = (EditText) findViewById(R.id.edit3);
    db.open();

    submitbtn.setOnClickListener(new OnClickListener()
    {
        public void onClick(View v)
        {
                String steedtone=edit1.getText().toString();
                String steedttwo=edit2.getText().toString();
                String steedtthree=edit3.getText().toString();

                long result=db.insertTitle(steedtone,steedttwo,steedtthree);
        }
         });
  } 
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Android कक्ष डेटाबेस सभी डेटा निर्यात नहीं करेगा

  2. Android एप्लिकेशन में अधिकतम SQLite डेटाबेस आकार

  3. सीधे sdcard पर sqlite डेटाबेस को कैसे स्टोर करें

  4. SQLite में एक स्ट्रिंग को कैसे ट्रिम करें?

  5. एक ऑफ़लाइन-प्रथम देशी Android ऐप कैसे विकसित करें