You are not logged in.
Pages: 1
This type declared in SynCommons and SynCrtSock.But they are not incompatible.
For example
Uses SynCrtSock, SynCommons ;
function XX(Arows : ISQLDBRows) : RawUTF8;
var
Lv_Pint : PPtrInt;//error
Lv_Pint : SynCommons.PPtrInt;//ok
begin
result := Arows.FetchAllAsJson(True,Lv_Pint,True);
.....
end;
Offline
Pages: 1