我是android应用程序开发的新手。我试图通过下面的代码向SQLite数据库插入值

时间:2019-05-30 12:32:13

标签: android android-sqlite

public boolean addInfo(String username,String DOB,String gender,String password){

    SQLiteDatabase db=this.getWritableDatabase();

    ContentValues contentValues=new ContentValues();

    contentValues.put(UserProfile.Users.col_02,username);
    contentValues.put(UserProfile.Users.col_03,DOB);
    contentValues.put(UserProfile.Users.col_04,gender);
    contentValues.put(UserProfile.Users.col_05,password);

    long res=db.insert(UserProfile.Users.Table_Name,null,contentValues);

   if(res==-1){
       return false;
   }else{
       return true;
   }

}

0 个答案:

没有答案