我有代码:
DataSet ds = new DataSet();
SqlConnection conn = new SqlConnection(connstring);
sqlCommand Cmd = new SqlCommand("EmployeeDatabase.dbo.insertEmployeeDetails", conn);
Cmd.Parameters.Add(“emailid”,SqlDbType.VarChar);
Cmd.Parameters [“emailid”]。Value = txtMailID.Text;
SqlDataReader reader = null;
Cmd = new SqlCommand("SELECT Email_ID FROM EmployeeDatabase.dbo.Employee_Table WHERE Email_ID=@emailid", conn);
if (reader != null && reader.HasRows)
{
lblMessage.Text = "Emailid already exist";
}
我想从表中选择电子邮件ID,如果mailid已经存在,我们必须发出警告消息“mailid已经存在”。但是我的代码没有正常工作。请帮助..
答案 0 :(得分:1)
错误消息非常明确:'intitial catalog'
不受支持。
这只是一个错字
Data Source=TVPC0004\SQLEXPRESS;Intitial Catalog=EmployeeDatabase;Integrated Security=True
*
********
应为Initial Catalog
(您的t
太多了)