我是一名高中生,仍然几乎是C#的初学者。
我正在开发一个图书馆管理系统(用于书籍),其中包括一个供用户使用的数据库(Visual Studio中的sql本地数据库(?))。我有一个表格,用户可以查看他们在注册表格中输入的数据(用户ID,名称,用户名,课程,部分)。唯一的问题是,它仅显示创建的第一个帐户的数据。无论我创建了多少个其他帐户,它都只会显示第一个帐户。如何使它显示已登录的“当前”用户/帐户的数据?
我尝试通过更改
来稍微更改代码SqlCommand cmd = conn.CreateCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "Select * from [tbl_accounts]";
进入
string select = "Select * from [tbl_accounts]";
SqlCommand cmd = new SqlCommand(select, conn);
尽管,我认为它们基本相同。我真的不知道该怎么办,因为我发现的其他解决方案要复杂得多。
这是我现在正在使用的代码:
try
{
SqlConnection conn = new SqlConnection(@"[connection string]");
conn.Open();
string select = "Select * from [tbl_accounts]";
SqlCommand cmd = new SqlCommand(select, conn);
SqlDataReader dr = cmd.ExecuteReader();
if(dr.Read())
{
materialLabel6.Text = dr["accountID"].ToString();
materialLabel7.Text = dr["username"].ToString();
materialLabel8.Text = dr["name"].ToString();
materialLabel9.Text = dr["strand"].ToString();
materialLabel10.Text = dr["section"].ToString();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);}
}
例如,我希望看到的结果是:
用户(表):
当前登录:PersonB
[个人资料]
因此,这意味着表单将仅显示PersonB的数据,而不显示PersonA的数据
答案 0 :(得分:4)
对于初学者来说,如果需要多于一行的数据,则需要遍历数据读取器中的所有行。现在,您只获得返回的第一行。 This link应该具有与此相关的信息。但是,理想情况下,您希望从UI(或用来触发函数调用的任何参数)发送一个表示用户的参数(用户表中的ID或任何唯一字段)并将其发送到sql查询的where
子句,以便仅提取所需的记录。
查询可能看起来像:
public void GetUserInfo(int userId) // though you might want to change the parameter to suit your needs. It's hard to tell without being able to see the schema
{
string select = string.Format("Select * from [tbl_accounts] where Id = {0}", userId.ToString()); // something along these lines
SqlCommand cmd = new SqlCommand(select, conn);
SqlDataReader dr = cmd.ExecuteReader();
if(dr.Read())
{
materialLabel6.Text = dr["accountID"].ToString();
materialLabel7.Text = dr["username"].ToString();
materialLabel8.Text = dr["name"].ToString();
materialLabel9.Text = dr["strand"].ToString();
materialLabel10.Text = dr["section"].ToString();
}
}
编辑:快速说明,如果您调整查询以使其从一个参数中提取一条记录,则无需进行循环。
另一个快速编辑:我分拆了代码,因此更具可读性。这更像是一个“理想的实现”,并为代码实施了一些更好的实践。 (我知道这是一个高中项目,但是最好习惯于分解代码,因此它在imo早期更通用。这主要是出于可维护性。在大型项目中,将所有内容紧密结合在一起很难管理。)>
public User GetUserInfo(int userId) // though you might want to change the parameter to suit your needs. It's hard to tell without being able to see the schema for the user table
{
SqlConnection conn = new SqlConnection(@"[connection string]");
conn.Open();
string select = string.Format("Select * from [tbl_accounts] where Id = {0}", userId.ToString()); // something along these lines
SqlCommand cmd = new SqlCommand(select, conn);
SqlDataReader dr = cmd.ExecuteReader();
User user = new User();
if(dr.Read())
{
user.AccountId = dr["accountID"].ToString();
user.UserName = dr["username"].ToString();
user.Name = dr["name"].ToString();
user.Strand = dr["strand"].ToString();
user.Section = dr["section"].ToString();
}
return user;
}
public void SetValues(User user)
{
materialLabel6.Text = user.AccountId;
materialLabel7.Text = user.UserName;
materialLabel8.Text = user.Name;
materialLabel9.Text = user.Strand;
materialLabel10.Text = user.Section;
}
public class User
{
string AccountId { get; set; }
string UserName { get; set; }
string Name { get; set; }
string Strand { get; set; }
string Section { get; set; }
}