Fill Delphi dataset from Java array

0

I have a concern: can I fill a Dataset in Delphi from an array generated by Java, without the need to cycle (for, while)?

For example: A GET method returns me as an answer:

  

(([], 'N', True, nil, False, 17, 22386, True, 'INTERESTS SERVICES   PUBLICOS ', True, 22387, False, False, $ 37A3398, True, $ 37A3410, True,   '0', True, 2.79, True, 'D', True, 'D', True, 'ACCUMULATE', True,   'INTEREST', True, 0, True), ([], 'S', True, $ 93C9900, True, 1, 12422,   True, 'ADMINISTRATION FEE', True, 12422, False, True, $ 37A3488,   True, $ 37A3500, True, '0', True, 0, True, 'D', True, 'D', True,   'UNICA', True, 'QUOTA', True, 0, True)).

It is an arrangement with two positions, and each position brings me the data of an object. Normally I must do a FOR to fill each field of the dataset. I would like to know if there is any way to fill it without cycling to make it faster.

    
asked by Felipe Ceballos - Desystec 15.02.2017 в 21:32
source

0 answers