up vote 1 down vote favorite
share [g+] share [fb]

The following line of code generates the compile time error (PE19) There is no overloaded method "get_item" with 0 parameters. Any idea on how to access the data in the datarow using Delphi Prism?

indexValue:=dtIndexValues.Rows[1].Item('IndexID');
link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted
indexValue := dtIndexValues.Rows[1].Item['IndexID'];

or

indexValue := dtIndexValues.Rows[1]['IndexID'];

since Item is the default indexer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.