sql server ce error "Requested conversion is not supported"
Posted: Sat 29 Jan 2011 09:54
I connected the sql server ce 3.5,and run the code
then show the error"Requested conversion is not supported".
why? and how to fix it?
Code: Select all
str:='insert into test(aa)';
str:=str+' values(:aa)';
UniQuery1.Close;
UniQuery1.SQL.Clear;
UniQuery1.SQL.Add(str);
UniQuery1.ParamByName('aa').AsFloat:=12.3;
UniQuery1.Execute;
why? and how to fix it?