VS2008中的CLR模块 ,如何用代码实现向SQL server2005数据库已经存在的表中添加数据
展开全部
SqlConnection conn = new SqlConnection("context connection=true");
conn.Open();
string insert = @"INSERT INTO [dbo].[temp_try_address_split]([oid] ,[oldtext] ,[单位] ,[地址] ,[邮编] ,[time]) VALUES ('"
+ idx + "','" + ntexts.Replace("'", "''") + "','" + whatsout[0].Replace("'", "''") + "','"
+ whatsout[1].Replace("'", "''") + "','" + whatsout[2].Replace("'", "''") + @"','" + time_now + @"')";
SqlCommand incmd = new SqlCommand(insert, conn);
incmd.ExecuteNonQuery();
从我自己的摘录下来的。
conn.Open();
string insert = @"INSERT INTO [dbo].[temp_try_address_split]([oid] ,[oldtext] ,[单位] ,[地址] ,[邮编] ,[time]) VALUES ('"
+ idx + "','" + ntexts.Replace("'", "''") + "','" + whatsout[0].Replace("'", "''") + "','"
+ whatsout[1].Replace("'", "''") + "','" + whatsout[2].Replace("'", "''") + @"','" + time_now + @"')";
SqlCommand incmd = new SqlCommand(insert, conn);
incmd.ExecuteNonQuery();
从我自己的摘录下来的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询