我无法使用存储过程将数据从我的sql-server数据库返回到aspx页面,并且希望有人可以突出显示我出错的地方。
当我运行项目时,数据已成功输入到表中,但在下一页上没有返回任何内容(Confirm.aspx)
Confirm.aspx.cs
using Devworks;
namespace OSQARv0._1
{
public partial class Confirm_Questionnaire : System.Web.UI.Page
{
OscarSQL b;
protected void Page_Load(object sender, EventArgs e)
{
b = new OscarSQL();
string qstname = b.GetQuestionName();
ReturnQstID.Text = qstname;
}// End Page_Load
} // Emd Class Confirm_Questionnaire
} // End Namespace
SQL.cs(应用代码)
public OscarSQL()
{
_productConn = new SqlConnection();
_productConnectionString += "data source=mssql.database.co.uk; Initial Catalog=devworks_oscar;User ID=username;Password=password";
_productConn.ConnectionString = _productConnectionString;
}
public string GetQuestionName()
{
SqlCommand myCommand = new SqlCommand("GetQuestion", _productConn);
myCommand.CommandType = CommandType.StoredProcedure;
SqlParameter retval = myCommand.Parameters.Add("@QUESTTEXT", SqlDbType.VarChar);
retval.Direction = ParameterDirection.Output;
_productConn.Open();
string returnvalue = (string)myCommand.Parameters["@QUESTTEXT"].Value;
_productConn.Close();
return returnvalue;
}
存储过程
USE [devworks_oscar]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [hgomez].[GetQuestion]
AS
/*SET NOCOUNT ON;*/
SELECT QuestionText FROM [Questions] WHERE QuestionnaireID = 21
RETURN
非常感谢任何帮助。
答案 0 :(得分:8)
您没有执行proc。你正在设置它,但没有返回它。
string returnvalue = (string)myCommand.ExecuteScalar();
答案 1 :(得分:4)
您的存储过程不使用输出参数来返回值,因此请使用ExecuteScalar():
string returnvalue = (string)myCommand.ExecuteScalar();
答案 2 :(得分:1)
返回值是存储过程返回的值,通常这是一个整数值,有时它用于驱动业务逻辑或错误条件。在您的情况下,您需要返回的数据,而不是返回值。因此,如果查询返回单个值,则使用ExecuteScalar;如果查询返回一个或多个数据记录,则使用ExecuteReader。 ExecuteNonQuery通常用于插入/更新和/或删除操作。
答案 3 :(得分:1)
ExecuteScalar() is a good idea if you know there is only one occurance of that record in the database, ExecuteScalar if I am not mistaken only returns the first record or occurance it finds.. you could use a datareader and do datareader.ExecuteReader() this is forward only but there are ways to make it biDirectional hehe... :) anyway if you want to loop thru the results use ExecuteReader() if you want to execute a StoredProceduere with UDATE,DELETE, or INSERT use reader.ExecuteNonQuery().
Hope this helps.