Home | History | Annotate | Download | only in provider

Lines Matching refs:Attachment

41 import com.android.emailcommon.provider.EmailContent.Attachment;
123 // Version 11: Add content and flags to attachment table
124 // Version 12: Add content_bytes to attachment table. content is deprecated.
128 // Version 16: Add accountKey to Attachment table
148 // Version 33: Add columns to attachment for ui provider columns
361 " begin delete from " + Attachment.TABLE_NAME +
652 db.execSQL("create table " + Attachment.TABLE_NAME + s);
653 db.execSQL(createIndex(Attachment.TABLE_NAME, AttachmentColumns.MESSAGE_KEY));
658 db.execSQL("drop table " + Attachment.TABLE_NAME);
943 // Attachment: add content and flags columns
945 db.execSQL("alter table " + Attachment.TABLE_NAME
947 db.execSQL("alter table " + Attachment.TABLE_NAME
955 // Attachment: add content_bytes
957 db.execSQL("alter table " + Attachment.TABLE_NAME
998 db.execSQL("alter table " + Attachment.TABLE_NAME
1001 db.execSQL("update " + Attachment.TABLE_NAME + " set " +
1005 Attachment.TABLE_NAME + "." + AttachmentColumns.MESSAGE_KEY + ")");
1138 db.execSQL("alter table " + Attachment.TABLE_NAME
1140 db.execSQL("alter table " + Attachment.TABLE_NAME
1142 db.execSQL("alter table " + Attachment.TABLE_NAME
1144 // If we have a contentUri then the attachment is saved
1146 db.execSQL("update " + Attachment.TABLE_NAME + " set " +
1272 db.execSQL("alter table " + Attachment.TABLE_NAME
1859 db.execSQL("update " + Attachment.TABLE_NAME + " set " + AttachmentColumns.UI_STATE +