int day=88888888; pConn->Execute("INSERT INTO Information (day1) values( " & day & " )",NULL,adCmdText); 为什么会报错? “&”: 非法,左操作数包含“const char [47]”类型
另外sql server 怎么才能才数据库的末尾插入数据?--单引号试下 INSERT INTO Information (day1) values( '& day & ' ), 不行 我插入的int类型的变量 SQL code: insert into Information (day1) select day
pConn->Execute("INSERT INTO Information (day1) values( " & day & " )",NULL,adCmdText);