Home | History | Annotate | Download | only in provider

Lines Matching refs:BodyColumns

44 import com.android.emailcommon.provider.EmailContent.BodyColumns;
674 String s = " (" + BodyColumns._ID + " integer primary key autoincrement, "
675 + BodyColumns.MESSAGE_KEY + " integer, "
676 + BodyColumns.HTML_CONTENT + " text, "
677 + BodyColumns.TEXT_CONTENT + " text, "
678 + BodyColumns.HTML_REPLY + " text, "
679 + BodyColumns.TEXT_REPLY + " text, "
680 + BodyColumns.SOURCE_MESSAGE_KEY + " text, "
681 + BodyColumns.INTRO_TEXT + " text, "
682 + BodyColumns.QUOTED_TEXT_START_POS + " integer"
685 db.execSQL(createIndex(Body.TABLE_NAME, BodyColumns.MESSAGE_KEY));
702 + " add " + BodyColumns.INTRO_TEXT + " text");
712 + " add " + BodyColumns.QUOTED_TEXT_START_POS + " integer");
726 final String projection[] = { BodyColumns.MESSAGE_KEY };
734 "SELECT " + BodyColumns.HTML_CONTENT +
736 " WHERE " + BodyColumns.MESSAGE_KEY + "=?"
740 "SELECT " + BodyColumns.TEXT_CONTENT +
742 " WHERE " + BodyColumns.MESSAGE_KEY + "=?"
780 " set " + BodyColumns.HTML_CONTENT + "=NULL,"
781 + BodyColumns.TEXT_CONTENT + "=NULL");