SQLite
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> SQLite

lưu trữ dữ liệu trong cơ sở dữ liệu bằng cách sử dụng nút và chỉnh sửa văn bản

Thay đổi mã của bạn để chèn các giá trị Edittext vào cơ sở dữ liệu khi nhấp vào nút:

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. Cách nối chuỗi trong SQLite

  2. Truy xuất cơ sở dữ liệu hoặc bất kỳ tệp nào khác từ Bộ nhớ trong bằng run-as

  3. Tạo bảng mới trong DB hiện có trong lớp SQLiteOpenHelper riêng biệt

  4. Thay đổi Dấu phân tách thành Dấu phẩy trong Kết quả truy vấn SQLite

  5. Cột _ID không tồn tại lỗi mặc dù nó tồn tại trong bảng