이 기사에서는 SqlDataReader의 잘못된 지정 변환에 대한 해결 방법을 자세히 소개합니다. 관심 있는 친구는 이를 참조할 수 있습니다.
SqlDataReader의 잘못된 지정 변환에 대한 해결 방법은 다음과 같습니다
//获取最新显示顺序数据 string str = string.Format(@"if exists(select ShowOrder from GIS_FuncDefaultLayer where GISFuncId = {0}) select max(ShowOrder) as ShowOrder from GIS_FuncDefaultLayer where GISFuncId ={0} else select '0' as ShowOrder", GISFuncId); IDataReader dataReader = helper.ExecuteReader(CommandType.Text, str); if (dataReader.Read())//判断当前功能Id下是否有数据 { //读取赋值 try { showOrder = dataReader.GetInt32(0); } catch (Exception ex) { HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent(ex.Message) }; return result; } } dataReader.Close();//关闭
SqlDataReader 고유의 GetInt32(및 GerString 등의 기타) 메소드
는 데이터베이스에서 데이터 유형에 해당하는 열만 가져오므로 유형 변환 기능이 없습니다. 이렇게 사용합니다
해결 방법 두 가지 유형이 있습니다
1. int 유형을 반환해야 하는 경우 데이터베이스의 필드가 int 유형으로 정의되어 있으면 GetInt32가 가능합니다
2. 데이터베이스에 정의되어 있지 않고 int 유형을 반환하려는 경우 먼저 데이터베이스에서 해당 유형을 사용하여 가져온 다음 int.Parse(selectunitidread.GetString(0))
과 같이 변환합니다. 위에서 작성한 것과 같이 int 유형을 반환하고 마지막으로 다시 변환할 필요가 없습니다. 문자열
의 경우 데이터베이스의 유형이 문자열에 해당하는 varchar이면 다음과 같은 값
을 직접 할당할 수 있습니다: rmoutbackinfo.UnitId = selectunitidread.GetString(0)
문자열로 변환하지 않고
//解决 showOrder=int.Parse(dataReader.GetString(0));
위 내용은 SqlDataReader의 잘못된 변환에 대한 솔루션 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!