我对以下问题感到困惑;
我正在尝试使用 SqlDataReader 检索记录(列 'EmployeeId' (int))。
当我直接在服务器上运行查询时,我得到了正确的记录。当我运行相同的程序来获取另一列(字符串)时,我正确地得到了记录。
我认为问题是由于我尝试获取 int,程序跳过
while (mySqlDbDataReader.Read())
并直接前往
catch (Exception eMsg1)
{
这是完整的程序
public string getUserId()
{
//Check user details against login in Db
//Local variables to capture values from Db
string varId = "";
//Connection string
conn = sqlDbConnection.GetConnection();
SqlCommand newCmd = conn.CreateCommand();
newCmd.Connection = conn;
newCmd.CommandType = CommandType.Text;
//Query
userCredentials connectedUser = new userCredentials();
newCmd.CommandText = "SELECT EmployeeId FROM tblEmployees WHERE WinLogin='" + connectedUser.getWindowsLogin() + "';";
//Connect
newCmd.Connection = conn;
conn.Open();
//Utilisation du try-catch permettant de fermer la connexion même en cas de plantage
try
{
SqlDataReader mySqlDbDataReader = newCmd.ExecuteReader();
while (mySqlDbDataReader.Read())
{
//Tester que le résultat n’est pas NULL afin d’éviter un plantage au moment du crash
if (mySqlDbDataReader["EmployeeId"] != System.DBNull.Value)
{
//Récupérer le nom à l’aide d’un cast
varId = (string)mySqlDbDataReader["EmployeeId"];
}
else
{
varId = "Unknown";
}
}
}
catch (Exception eMsg1)
{
//In the event of trouble, display error msg
//MessageBox.Show("Error while executing query: " + eMsg1.Message);
Console.WriteLine(eMsg1);
//Control
MessageBox.Show("Empty");
}
finally
{
//Close DB connection
conn.Close();
}
return varId;
}`
谢谢你的帮助!
布莱斯