在MySQL 4.1.4 insert 时 中文如果会变成乱码。
解决办法, 在建表时
CREATE TABLE pre_message_list_LU (......
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
把 CHARSET=latin1. 加上即可。