Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Notes updatedNote;
updatedNote = rdb.getNotesDao().getNote(vNoteID);
if(!valuesAreDifferent(original.get(4), update.get(4))){
Questions questions = rdb.getQuestionsDao().getQuestion(updatedNote.getQuestionID());
questions.setQuestion(update.get(4));
rdb.getQuestionsDao().updateQuestion(questions);
}
@Entity(tableName = "Questions")
public class Questions {
@PrimaryKey(autoGenerate = true)
@ColumnInfo(name = "QuestionID")
private int questionID;
@ColumnInfo(name = "Question")
private String question;
public Questions(String question){
this.question = question;
}
/* @Ignore
public Questions(int questionID, String question){
this.questionID = questionID;
this.question = question;
}*/
public int getQuestionID() {
return questionID;
}
public void setQuestionID(int questionID) {
this.questionID = questionID;
}
public String getQuestion() {
return question;
}
public void setQuestion(String question) {
this.question = question;
}
}
@Dao
public interface QuestionsDao {
@Insert
void addQuestion(Questions question);
@Update
void updateQuestion(Questions question);
@Delete
void deleteQuestion(Questions question);
@Query("SELECT * FROM Questions ORDER BY Question")
List<Questions> getQuestions();
@Query("SELECT * FROM Questions WHERE QuestionID = :questionID")
Questions getQuestion(int questionID);
@Query("SELECT last_insert_rowid()")
int lastQuestionPKID();
@RawQuery
List<Integer> customSearchQuestionsTable(SupportSQLiteQue

IMO, just throw out the device and look for something that developers have worked on.
Read up...
https://www.xda-developers.com/how-to-root/?amp
Just to let you know, I finally received a full refund from WISH.com :-0Thanks you all for your help, I have bought a few things from them and they have been as described so I thought I would give a phone a punt. I will try for a refund and hope for the best.
Cheers
Taco Bell is to Mexican food asOlive GardenSpaghettiOs is to Italian cuisine.
