从excel中数据插入到access里面出问题,access数据库有几个字段里面是整形,但是在执行insert语句时就出错,显示的出错信息为:sql语法错误,急!求高手指点
                                               
我在程序中的SQL语句如下:
"insert into portable_communication_equipment([SecurityTeamNumber],[NumberOfVSATMobileStation],[NumberOfSatellitePhone],[NumberOfShortwaveRadio],[NumberOfPortableOilMachine],Re,[Year])values('" + ds1.Tables[0].Rows[i][0] + "','" + ds1.Tables[0].Rows[i][1] + "','" + ds1.Tables[0].Rows[i][2] + "','" + ds1.Tables[0].Rows[i][3] + "','" + ds1.Tables[0].Rows[i][4] + "','" + ds1.Tables[0].Rows[i][5] + "','" + ds1.Tables[0].Rows[i][6] + "')";