- 论坛徽章:
- 0
|
环境:MySQL 5.1.50-community,Windows XP
目的:从文本文件test.txt中导入数据到MySQL中
test.txt中内容如下:
045001, 武晓霞, 0, 1981.07.16, 汉族, 中共党员, 物理电子学, 林金桐, 吉林大学, 推荐免试, 非定向, , 电信工程学院
045002, 薛伟琦, 1, 1978.09.12, 汉族, 其他, 物理电子学, 林金桐, 上海光学精密机械研究所, 全国统考, 非定向, , 电信工程学院
045003, 邹璟宜, 0, 1982.02.08, 汉族, 共青团员, 物理电子学, 林金桐, 浙江大学信息学院光电系, 全国统考, 自筹, , 电信工程学院
为此,在MySQL中创建数据库及表结构如下:
create database `enroll`;
use enroll;
create table `postgraduate`(
id mediumint(8 ) unsigned not null,
name char(15) not null default '',
gender tinyint(1) not null default '0',
birthdate date not null default '0000-00-00',
nation char(10) not null default '',
party char(10) not null default '',
major char(22) not null default '',
tutor char(15) not null default '',
source_from varchar(50) not null default '',
method char(12) not null default '',
class char(6) not null default '',
to_train varchar(30),
colleage char(22) not null default '',
primary key (`id`)
)default charset=gbk;
然后,利用Load data…infile语句导入(我的测试文件test.txt就放在D盘根目录下面):
load data infile 'd:/test.txt' into table postgraduate fields terminated by ',';
出错信息:ERROR 1366 (HY000): Incorrect string value: '\xADZ\xD2\xCB' for column 'name' at row 3
开始一直不知道怎么回事,后来将上面的数据表的存储引擎改为engine=myisam后(其余操作不变),就能正确导入了。
请问存储引擎对这个还有影响么?(开始WINDOWS平台下默认的存储引擎为InnoDB。)
请帮我测试一下,花不了您多长时间,谢谢! |
|