안녕하세요
	구글캘린더와 연동 작업을 하고 있습니다.
	구글캘린더 API를 사용하여서
	각 컬럼에 있는것들을 가져오고 있습니다.
	private Uri events = Uri.parse("content://com.android.calendar/events");
	 
	String[] projectionEvents = new String[] {
	"account_name",
	"account_type",
	"accessLevel",
	"allDay",
	"allowedReminders",
	"availability",
	"calendar_id",
	"calendar_color",
	"calendar_displayName",
	"calendar_timezone",
	"canModifyTimeZone",
	"canOrganizerRespond",
	"deleted",
	"description",
	"dirty",
	"dtstart",
	"dtend",
	"duration",
	"eventColor",
	"eventLocation",
	"eventStatus",
	"eventTimezone",
	"exrule",
	"exdate",
	"guestsCanInviteOthers",
	"guestsCanModify",
	"guestsCanSeeGuests",
	"hasAlarm",
	"hasAttendeeData",
	"hasExtendedProperties",
	"lastDate",
	"lastSynced",
	"maxReminders",
	"original_id",
	"originalAllDay",
	"originalInstanceTime",
	"organizer",
	"rdate",
	"rrule",
	"selfAttendeeStatus",
	"title",
	"visible",
	} ;
	 
	제가 원하는건 날자가 들어가 있는 컬럼을 알고 싶습니다.
	컬럼이 없다면 도대체 날자를 어떻게 표시하여 줘야하는지 알고 싶습니다.
	열심히 구글링을 하고 있지만.. 딱히 알길이 없어서 올려봅니다.