我正在使用 Visual Studio 2010、SQL Server 2008,我创建了一个发送邮件的应用程序,现在我的查询是一个简单的选择,但我需要使用存储过程进行,如何替换该选择为存储过程?
这是我的代码:
public List<string> SqlSelectMails()
{
List<string> dir_mails = new List<string>();
**string stSql = "select mail_usuario from dbo.mail_usuario_v2 where n_visita=0 and
aviso=1 order by banca";**
Bd mibd = new Bd();
SqlDataReader sdr = mibd.sqlExecute(stSql);
while (sdr.Read())
{
dir_mails.Add(sdr["mail_usuario"].ToString());
}
return dir_mails;
}
我会喜欢这样的东西:
**string stSql = "exec pa_rep_mail";**