VS2008中的CLR模块 ,如何用代码实现向SQL server2005数据库已经存在的表中添加数据
发布网友
发布时间:2022-04-08 11:23
我来回答
共2个回答
热心网友
时间:2022-04-08 12:53
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();
从我自己的摘录下来的。
热心网友
时间:2022-04-08 14:11
写sql语句