A
AYellow
Unregistered / Unconfirmed
GUEST, unregistred user!
create table product
(
product_id int unsigned NOT NULL auto_increment,
material varchar(30) NOT NULL,
manufacturer varchar(50),
specification varchar(20),
characteristic varchar(30),
purpose text,
remark text,
primary key (product_id)
);
在MYSQL中通过,但在ODBC连接Access,用Delphi自带的SQL Exploer中不能通过,请
问怎么改?
(
product_id int unsigned NOT NULL auto_increment,
material varchar(30) NOT NULL,
manufacturer varchar(50),
specification varchar(20),
characteristic varchar(30),
purpose text,
remark text,
primary key (product_id)
);
在MYSQL中通过,但在ODBC连接Access,用Delphi自带的SQL Exploer中不能通过,请
问怎么改?