You are not logged in.
Pages: 1
Do you mean "decimal" in which context?
Our code handles sftCurrency kind of content, which holds number with fixed decimals.
If your TSQLTable has the expected type information for the columns, as input to ToClientDataSet function, there is no problem.
It is not clear what you meant here...
Offline
My Database Field Type is "Decimal(18,4)"
Do you mean "decimal" in which context?
Our code handles sftCurrency kind of content, which holds number with fixed decimals.
If your TSQLTable has the expected type information for the columns, as input to ToClientDataSet function, there is no problem.It is not clear what you meant here...
Jongruk Aripoo
Offline
this my function
var
Cds:TClientDataSet;
i:integer;
begin
Cds:=TClientDataSet.Create(nil);
try
JSONToClientDataSet(cds,GetDataSet(strSQL),nil,cdsNew,false);
Result := cds.data;
finally
Cds.Free;
end;
end;
Jongruk Aripoo
Offline
Offline
Pages: 1