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;
}
}