我已经安装了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=\"Web\" /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脚本是错误的,并希望得到调试帮助。
答案 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
这将有助于