ASP.NET:我在尝试运行sql脚本时遇到了麻烦

时间:2016-05-21 22:45:18

标签: sql asp.net sql-server-2014-express

我已经安装了Microsoft SQL Server 2014 Express,我正在学习如何使用ASP.NET和Visual Studio Express 2015 for Web从名为vetDatabase_Wizard的兽医数据库中检索数据。

首先,我从输入的ID中检索protocolID并将信息存储在名为clinicalCase的类中。我是SQL的新手。

这是我的SQLQuery1.sql脚本(尝试):

Select * from tblCases 

CREATE PROCEDURE spGetCaseByID
    @ID int
BEGIN
    SELECT caseID, protocolID
    FROM tblCases 
    WHERE caseID = @ID
END

这是我的getCaseByID函数调用我的SQL脚本:

[WebMethod]
public clinicalCase getCaseByID(int ID)
{
    // Retrieve connection string
    string cs = ConfigurationManager.ConnectionStrings["vetDatabase_Wizard"].ConnectionString;

    using (SqlConnection con = new SqlConnection(cs))
    {
        SqlCommand cmd = new SqlCommand("spGetCaseByID", con);
        cmd.CommandType = CommandType.StoredProcedure;

        SqlParameter parameter = new SqlParameter("@ID", ID);
        cmd.Parameters.Add(parameter);

        clinicalCase cases = new clinicalCase();

        con.Open();

        SqlDataReader reader = cmd.ExecuteReader();

        while (reader.Read())
        {
            cases.ID = Convert.ToInt32(reader["ID"]);
            cases.protocolID = Convert.ToInt32(reader["protocolID"]);
        }

        return cases;
    }
}

当我运行该功能并尝试时,我在

处收到以下错误
SqlDataReader reader = cmd.ExecuteReader();
  

无法找到存储过程" spGetCaseByID"。

我怀疑这是我的SQL语法或我在web.config文件中添加连接字符串的事实,因为我没有一个:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <connectionStrings>
    <add name="vetDatabase_Wizard"
         connectionString="Data Source=JOHNATHANBO431E\SQLEXPRESS2014;Initial Catalog=vetDatabase_Wizard;Integrated Security=True"
         providerName="System.Data.SqlClient" />

  </connectionStrings>

  <system.web>
    <compilation debug="true" targetFramework="4.6.1"/>
    <httpRuntime targetFramework="4.6.1"/>
    <httpModules>
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"/>
    </httpModules>
  </system.web>
  <system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs"
        type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"/>
      <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb"
        type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
    </compilers>
  </system.codedom>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules>
      <remove name="ApplicationInsightsWebTracking"/>
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"
        preCondition="managedHandler"/>
  </modules>

  </system.webServer>
</configuration>

我从数据库的属性面板中获取了名称和connectionString。

我非常感谢社区的反馈,因为我必须遗漏一些明显的东西!我非常感谢你的时间! :)

编辑:我意识到我需要先在SQL Server Management Studio中执行我的SQL脚本,然后才能在Visual Studio中使用它。

但是,我收到以下错误:

  

SQL80001:语法不正确:&#39;创建程序&#39;必须是批次中唯一的声明。 vetApp

因此,我的SQL脚本是错误的,并希望得到调试帮助。

2 个答案:

答案 0 :(得分:4)

您的代码正在尝试运行名为spGetCaseByID的SQL Server存储过程。 数据库中不存在此存储过程。

答案 1 :(得分:0)

您正试图在SQL中运行多个命令。为了创建存储过程,它应该是第一行代码或在多个sql命令之间放置go

Select * from tblCases 

<强> GO

CREATE PROCEDURE spGetCaseByID
    @ID int
**AS**
BEGIN
    SELECT caseID, protocolID
    FROM tblCases 
    WHERE caseID = @ID
END

这将有助于