Ver Mensaje Individual
  #2  
Antiguo 02-03-2011
juank1971 juank1971 is offline
Miembro
 
Registrado: feb 2008
Posts: 230
Reputación: 17
juank1971 Va por buen camino
Hice esta funcion
Código Delphi [-]
function TServerMethods1.GetServerComandos(SQ: string): TSQLQuery;
begin
  with ServerComandos do
   begin
    active := false;
    sql.Add(SQ);
    ExecSQL;
    active := true;
   end;
   result := ServerComandos;
end;
me devuelve el resultado en TSQLQuery que se ve del cliente sin problema
pero cuando hago una consulta en el cliente me da el siguiente error

Remote error : Insufficientent RTTI available to support this operation

alguna sugerencia ????
Responder Con Cita