例如
string sql = " insert into [Demo].[dbo].[textable] (姓名,身份证号)values (‘" + name.Text.ToString() + "‘," + number.Text.ToString() + ")";//执行在数据库表中增加一行姓名和身份证号
在表中已经设置成int类型的不需要再次添加‘单引号’,而字符串类型的数据需要进行添加‘单引号’。
原文地址:https://www.cnblogs.com/zoushiyu/p/8486300.html
时间: 2024-10-18 10:37:01