I haven't seen that you use two names with a dot between when you create tables. I think that is the problem, but don't know for sure.
You should have a primary key as well, something like the following:
CREATE TABLE ms_report (
slipno VARCHAR(40) primary key,
verified VARCHAR10,
discrip VARCHAR(80)
)
ENGINE = InnoDB;