dhibernate的问题,请尽快看看
当podo类中有integer类型时,saveorudpatedata执行有问题,什么无法转换类型int64 to integer
跟踪了一下,发现是以下代码
if tk = tkInteger then
begin
try
i64 := GetInt64Prop((obj as clazz), {$IFDEF DELPHI12_UP}String{$ENDIF}(pplst^.Name));
map.put({$IFDEF DELPHI12_UP}String{$ENDIF}(pplst^.Name), i64);
except
map.put({$IFDEF DELPHI12_UP}String{$ENDIF}(pplst^.Name), 0);
end;
end;
GetInt64Prop无法正确返回integer值,怎么办?
[ 本帖最后由 gchiron 于 2009-10-26 17:55 编辑 ]
|