我有一个包含两列的表 - [security_role_name] 和 security_role_cd 。security_role_cd 的数据类型是 Security_Role 表中的 smallint。
我有以下数据选择逻辑。返回的数据类型根据数据的场景而有所不同:-
- 表中没有数据
- 表中存在一条记录
问题
- 为什么在这些场景中数据类型会有所不同
- 如何纠正它
注意:目前我正在使用try..catch
来满足这种情况
代码
private int GetNextRoleID(SqlConnection connection)
{
int? newRoleID = null;
//string commandText = "SELECT (MAX(security_role_cd)) AS [NewRoleID] FROM Security_Role ";
string commandText = "SELECT TOP 1 security_role_cd AS [NewRoleID] FROM Security_Role ORDER BY security_role_cd DESC";
SqlCommand command = new SqlCommand(commandText, connection);
command.CommandType = System.Data.CommandType.Text;
SqlDataReader reader = command.ExecuteReader();
if (reader.HasRows)
{
while (reader.Read())
{
if (!reader.IsDBNull(0))
{
//newRoleID = Convert.ToInt32((reader.GetInt16(0)) + 1);
try
{
newRoleID = Convert.ToInt32(reader.GetInt16(0)) + 1;
}
catch
{
int result = (reader.GetInt32(0));
newRoleID = result + 1;
}
}
}
}
reader.Close();
if (newRoleID == null)
{
newRoleID = 1;
}
return (Convert.ToInt32(newRoleID));
}
参考: