我需要有关使用SQL的帮助,我需要具有C#/ SQL知识的人,我所需要的只是一条简单的行,或者必要时只用一个目的的整个代码即可:仅显示具有最高数量的行。就像在Gridview / Label内的Cars表中一样,有人可以给我提供这样的代码并教我吗?这个问题与网站开发有关。
我已经尝试过使用下面将提供的一些代码,但总是会收到一条错误消息,提示条件类型或某种类型不匹配。
//this button is inside a masterpage.cs file
protected void Button1_Click(object sender, EventArgs e)
{
string constr = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Server.MapPath("App_Data/DatabaseVSC.accdb");
localhost.wbCarsDb o = new localhost.wbCarsDb();
DataSet ds = o.GetMostPopularCar(constr);
string x = (ds.Tables[0].Rows[0]["CLikes"].ToString());
DataSet ds2 = new DataSet();
ds2 = o.retDetailsCID_datasetR(x,constr);
this.GridView2.DataSource = ds2;
this.GridView2.DataBind();
this.GridView1.DataSource = ds;
this.GridView1.DataBind();
}
//these are codes used in the code above inside the button, they're stored inside the main CarsDb class that I use to store all crucial codes
[WebMethod]
public DataSet GetMostPopularCar(string connectionstr)
{
string querystr = string.Format("SELECT MAX(CLikes) AS LargestLike FROM Cars");
OleDbConnection connectObj = new OleDbConnection(connectionstr);
OleDbDataAdapter da = new OleDbDataAdapter(querystr, connectObj);
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
[WebMethod]
public DataSet retDetailsCID_datasetR(string CLikes, string connectionstr)
{
string constr = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Server.MapPath("App_Data/DatabaseVSC.accdb");
string querystr = string.Format("SELECT [CID] FROM [Cars] WHERE [CLikes]='{0}'", CLikes);
OleDbConnection connectObj = new OleDbConnection(connectionstr);
OleDbDataAdapter da = new OleDbDataAdapter(querystr, connectObj);
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
当我激活按钮时,会发生以下情况:
“点击”列不属于表格Table。
说明:执行以下操作时发生未处理的异常 当前的Web请求。请查看堆栈跟踪以获取更多信息 有关错误及其在代码中起源的信息。
异常详细信息:System.ArgumentException:列“ CLikes”没有 属于表Table。
第26行:localhost.wbCarsDb o =新的localhost.wbCarsDb();
线 27:数据集ds = o.GetMostPopularCar(constr);
第28行:
字符串x =(ds.Tables [0] .Rows [0] [“ CLikes”]。ToString());
第29行:DataSet ds2 = new DataSet(); //第28行为红色源文件:c:\ Users \ alaas \ OneDrive \ Email 附件\文档\学校\计算机编程\ VintageSportsCars2 \ MasterPage.master.cs 行:28
堆栈跟踪:
[ArgumentException: Column 'CLikes' does not belong to table Table.]
System.Data.DataRow.GetDataColumn(String columnName) +5953463
System.Data.DataRow.get_Item(String columnName) +13
MasterPage.Button1_Click(Object sender, EventArgs e) in c:\Users\alaas\OneDrive\Email attachments\Documents\School\ComputerProgramming\VintageSportsCars2\MasterPage.master.cs:28
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +9782698
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +204
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +12
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +15
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +35
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1639
版本信息:Microsoft .NET Framework版本:4.0.30319; ASP.NET版本:4.7.3282.0
答案 0 :(得分:0)
@Steve在评论中回答-
您在第一个查询中将
CLikes
重命名为LargestLike
。您应该在从数据集中读取数据时使用它第二个查询,如果
CLikes
是数字列,则应将其视为不转换为字符串并使用字符串在数字列中查找值的数字。
我已将其添加为社区Wiki,以便可以解决问题而不将答案隐藏在注释中;全部归功于@Steve。