2016-06-23 2 views
2

this example을 사용하여 코드를 작성하여 SQlite에 2 개의 긴 값을 저장하고 업데이트하십시오. 새로운 행을 만들 수 있지만 업데이트 할 수는 없습니다. 내가 할 수있는 모든 것을 시도하지만 행을 업데이트 할 수 없으며 단지 행을 업데이트하지 않는 오류가 없습니다. 이 코드를 사용하여 행을 업데이트합니다.Android SQlite 업데이트가 오류없이 작동하지 않습니다.

db.updateContact(new Contact(consumed, total)); 

모두 소비되고 총계는 long 값입니다. 그래도 오류를 볼 수는 없지만 행을 업데이트하는 데 성공하지 못했습니다. 내 생성자와 databesehandler 코드는 다음과 같습니다 :

Contaxt.java

public class Contact { 

// private variables 
int _id; 
double _name; 
double _phone_number; 

// Empty constructor 
public Contact() { 

} 

// constructor 
public Contact(int id, double name, double _phone_number) { 
    this._id = id; 
    this._name = name; 
    this._phone_number = _phone_number; 
} 

// constructor 
public Contact(double name, double _phone_number) { 
    this._name = name; 
    this._phone_number = _phone_number; 
} 

// getting ID 
public int getID() { 
    return this._id; 
} 

// setting id 
public void setID(int id) { 
    this._id = id; 
} 

// getting name 
public double getName() { 
    return this._name; 
} 

// setting name 
public void setName(double name) { 
    this._name = name; 
} 

// getting phone number 
public double getPhoneNumber() { 
    return this._phone_number; 
} 

// setting phone number 
public void setPhoneNumber(double phone_number) { 
    this._phone_number = phone_number; 
} 

} 사전에

DatabeseHandler.java

public class DatabaseHandler extends SQLiteOpenHelper { 

    // All Static variables 
    // Database Version 
    private static final int DATABASE_VERSION = 1; 

    // Database Name 
    private static final String DATABASE_NAME = "contactsManager"; 

    // Contacts table name 
    private static final String TABLE_CONTACTS = "contacts"; 

    // Contacts Table Columns names 
    private static final String KEY_ID = "id"; 
    private static final String KEY_NAME = "name"; 
    private static final String KEY_PH_NO = "phone_number"; 

    public DatabaseHandler(Context context) { 
     super(context, DATABASE_NAME, null, DATABASE_VERSION); 
    } 

    // Creating Tables 
    @Override 
    public void onCreate(SQLiteDatabase db) { 
     String CREATE_CONTACTS_TABLE = "CREATE TABLE " + TABLE_CONTACTS + "(" + KEY_ID 
       + " INTEGER PRIMARY KEY AUTOINCREMENT," + KEY_NAME + " TEXT," + KEY_PH_NO + " TEXT" + ")"; 
     db.execSQL(CREATE_CONTACTS_TABLE); 
    } 

    // Upgrading database 
    @Override 
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { 
     // Drop older table if existed 
     db.execSQL("DROP TABLE IF EXISTS " + TABLE_CONTACTS); 

     // Create tables again 
     onCreate(db); 
    } 

    // Adding new contact 
    void addContact(Contact contact) { 
     SQLiteDatabase db = this.getWritableDatabase(); 

     ContentValues values = new ContentValues(); 
     values.put(KEY_NAME, contact.getName()); // Contact Name 
     values.put(KEY_PH_NO, contact.getPhoneNumber()); // Contact Phone 

     // Inserting Row 
     db.insert(TABLE_CONTACTS, null, values); 
     db.close(); // Closing database connection 
    } 

    // Getting single contact 
    Contact getContact(int id) { 
     SQLiteDatabase db = this.getReadableDatabase(); 

     Cursor cursor = db.query(TABLE_CONTACTS, new String[] { KEY_ID, KEY_NAME, KEY_PH_NO }, KEY_ID + "=?", 
       new String[] { String.valueOf(id) }, null, null, null, null); 
     if (cursor != null) 
      cursor.moveToFirst(); 

     Contact contact = new Contact(cursor.getInt(0), cursor.getDouble(1), cursor.getDouble(2)); 
     // return contact 
     return contact; 
    } 

    // Getting All Contacts 
    public List<Contact> getAllContacts() { 
     List<Contact> contactList = new ArrayList<Contact>(); 
     // Select All Query 
     String selectQuery = "SELECT * FROM " + TABLE_CONTACTS; 

     SQLiteDatabase db = this.getWritableDatabase(); 
     Cursor cursor = db.rawQuery(selectQuery, null); 

     // looping through all rows and adding to list 
     if (cursor.moveToFirst()) { 
      do { 
       Contact contact = new Contact(); 
       contact.setID(cursor.getInt(0)); 
       contact.setName(cursor.getDouble(1)); 
       contact.setPhoneNumber(cursor.getDouble(2)); 
       // Adding contact to list 
       contactList.add(contact); 
      } while (cursor.moveToNext()); 
     } 

     // return contact list 
     return contactList; 
    } 

    // Updating single contact 
    public int updateContact(Contact contact) { 
     SQLiteDatabase db = this.getWritableDatabase(); 

     ContentValues values = new ContentValues(); 
     values.put(KEY_NAME, contact.getName()); 
     values.put(KEY_PH_NO, contact.getPhoneNumber()); 

     // updating row 
     return db.update(TABLE_CONTACTS, values, KEY_ID + " = ?", new String[] { String.valueOf(contact.getID()) }); 
    } 

    // Deleting single contact 
    public void deleteContact(Contact contact) { 
     SQLiteDatabase db = this.getWritableDatabase(); 
     db.delete(TABLE_CONTACTS, KEY_ID + " = ?", new String[] { String.valueOf(contact.getID()) }); 
     db.close(); 
    } 

    // Getting contacts Count 
    public int getContactsCount() { 
     String countQuery = "SELECT * FROM " + TABLE_CONTACTS; 
     SQLiteDatabase db = this.getReadableDatabase(); 
     Cursor cursor = db.rawQuery(countQuery, null); 
     cursor.close(); 

     // return count 
     return cursor.getCount(); 
    } 
} 

감사합니다.

답변

2

Contact 개체에 id를 설정하지 않았습니다. updateContact 방법에

db.updateContact(new Contact(consumed, total)); 

:

db.update(TABLE_CONTACTS, values, KEY_ID + " = ?", new String[] { String.valueOf(contact.getID()) }); 

contact.getID() 0을 반환하고, 더 ID는 ID 0 아무것도 업데이트와 일치하지 : 업데이트 쿼리 다음 사용됩니다.

당신은 예, 그가 ID없이 생성자를 사용 또한

+0

올바른 ID를 전달해야합니다. 어쩌면 그 예가 틀렸을까요? – ldd

+0

db.updateContact (new Contact (rowID, consumed, total));로 사용했습니다. 그리고 그것은 일했다!. 감사합니다. –

관련 문제