Ok, I see the issue. Your ONLINE_AGENT and your ONLINE_REFERER are text type. These are supposed to be varchar(255).

You'll need to run the following SQL commands to change those.

alter table ubbt_ONLINE
change ONLINE_AGENT ONLINE_AGENT varchar(255),
change ONLINE_REFERER ONLINE_REFERER varchar(255)