RT,本人的建表语句为:
string sql = “CREATE TABLE”+Time+“ ( id int unsigned not null auto_increment primary key,friendNum char(9) not null,friendName char(20) not null)”;
其中Time是string类型的,但是结果报错,问一下ACCESS支持用变量作为表名建表吗?假如支持,求一条示例语句,多谢了!
string sql = “CREATE TABLE”+Time+“ ( id int unsigned not null auto_increment primary key,friendNum char(9) not null,friendName char(20) not null)”;
其中Time是string类型的,但是结果报错,问一下ACCESS支持用变量作为表名建表吗?假如支持,求一条示例语句,多谢了!
解决方案
40
本人检查下最后生成的sql语句,输出看看是什么就知道了。