Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C# 在 winform 上处理邮件合并的功能。众所周知,它在邮件合并中将一封电子邮件发送到批处理。为此目的,创建数据列表并将其存储在数据库中,当用户按下“插入和合并”选项时,将从数据库中检索数据并替换占位符。使用的查询是;
comm.CommandText="select <> from <> where Sno=1;
其中 Sno 是主键
问题是,我怎样才能动态地做到这一点
诠释REC = 1;
我想用这个变量替换“1”,我该怎么做?
comm.Commandtext = "Select <> from <> where Sno=@SNO"; comm.Parameters.Add("@SNO", rec);