I just looked in my db code and added this manually to my MySQL database:
CREATE TABLEwp_eventscalendar_main` (
id mediumint(9) NOT NULL AUTO_INCREMENT,
eventTitle varchar(255) CHARACTER SET utf8 NOT NULL,
eventDescription text CHARACTER SET utf8 NOT NULL,
eventLocation varchar(255) CHARACTER SET utf8 default NULL,
eventStartDate date NOT NULL,
eventStartTime time default NULL,
eventEndDate date NOT NULL,
eventEndTime time default NULL,
accessLevel varchar(255) CHARACTER SET utf8 NOT NULL default 'public',
postID mediumint(9) NULL DEFAULT NULL,
PRIMARY KEY id (id)
);`
For some reason it would not allow me to put "CHARACTER SET utf8" into the MySQL, so I had to remove each time it said that. Will that affect anything importantly? I then tried adding an event and it showed up perfectly on my admin screen, but was merely missing the start and end time on my EventsCalendarLarge page.