本地数据写入到远程服务器数据库中
public DataSet UploadFile()
{
DataSet ds = new DataSet();
string connStr = Constance.GetConnectionStr("strConn");
string cmdText = "insert into t_firstcheckinfo ([id],[goodsname],[number],[firstemployee],[shopname],[shelfno],[firsttime],[position]) values( 1,'纸抽',4,'5000','盐市口','A01','2013','大仓')";
OleDbDataAdapter da = new OleDbDataAdapter(cmdText, connStr);
da.Fill(ds);
return ds;
}
和远程数据库的连接写在配置文件web.config中了,现在主要是出现了这个问题
,各位大侠帮忙看看怎么回事哈,谢谢
------解决方案--------------------主键重复了吧
------解决方案--------------------看那个文件20行 写的啥东西