Searched defs:rowId (Results 1 - 7 of 7) sorted by relevance

/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
H A DDictionaryDatabase.java83 * Returns a Cursor positioned at the word specified by rowId
85 * @param rowId id of word to retrieve
89 public Cursor getWord(String rowId, String[] columns) { argument
91 String[] selectionArgs = new String[] {rowId};
96 * SELECT <columns> FROM <table> WHERE rowid = <rowId>
226 * @return rowId or -1 if failed
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
H A DNotesDbAdapter.java113 * successfully created return the new rowId for that note, otherwise return
118 * @return rowId or -1 if failed
129 * Delete the note with the given rowId
131 * @param rowId id of note to delete
134 public boolean deleteNote(long rowId) { argument
136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
151 * Return a Cursor positioned at the note that matches the given rowId
153 * @param rowId id of note to retrieve
157 public Cursor fetchNote(long rowId) throws SQLException { argument
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, nul
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
H A DNotesDbAdapter.java113 * successfully created return the new rowId for that note, otherwise return
118 * @return rowId or -1 if failed
129 * Delete the note with the given rowId
131 * @param rowId id of note to delete
134 public boolean deleteNote(long rowId) { argument
136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
151 * Return a Cursor positioned at the note that matches the given rowId
153 * @param rowId id of note to retrieve
157 public Cursor fetchNote(long rowId) throws SQLException { argument
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, nul
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
H A DNotesDbAdapter.java113 * successfully created return the new rowId for that note, otherwise return
118 * @return rowId or -1 if failed
129 * Delete the note with the given rowId
131 * @param rowId id of note to delete
134 public boolean deleteNote(long rowId) { argument
136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
151 * Return a Cursor positioned at the note that matches the given rowId
153 * @param rowId id of note to retrieve
157 public Cursor fetchNote(long rowId) throws SQLException { argument
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, nul
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
H A DNotesDbAdapter.java113 * successfully created return the new rowId for that note, otherwise return
118 * @return rowId or -1 if failed
129 * Delete the note with the given rowId
131 * @param rowId id of note to delete
134 public boolean deleteNote(long rowId) { argument
136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
151 * Return a Cursor positioned at the note that matches the given rowId
153 * @param rowId id of note to retrieve
157 public Cursor fetchNote(long rowId) throws SQLException { argument
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, nul
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
H A DNotesDbAdapter.java113 * successfully created return the new rowId for that note, otherwise return
118 * @return rowId or -1 if failed
129 * Delete the note with the given rowId
131 * @param rowId id of note to delete
134 public boolean deleteNote(long rowId) { argument
136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
151 * Return a Cursor positioned at the note that matches the given rowId
153 * @param rowId id of note to retrieve
157 public Cursor fetchNote(long rowId) throws SQLException { argument
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, nul
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
H A DNotesDbAdapter.java113 * successfully created return the new rowId for that note, otherwise return
118 * @return rowId or -1 if failed
129 * Delete the note with the given rowId
131 * @param rowId id of note to delete
134 public boolean deleteNote(long rowId) { argument
136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
151 * Return a Cursor positioned at the note that matches the given rowId
153 * @param rowId id of note to retrieve
157 public Cursor fetchNote(long rowId) throws SQLException { argument
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, nul
181 updateNote(long rowId, String title, String body) argument
[all...]

Completed in 572 milliseconds