Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコード行は、コンパイル時エラー(PE19)を生成します。0個のパラメーターを持つオーバーロードされたメソッド「get_item」はありません。Oxygeneを使用してデータ行のデータにアクセスする方法について何かアイデアはありますか?
indexValue:=dtIndexValues.Rows[1].Item('IndexID');
indexValue := dtIndexValues.Rows[1].Item['IndexID'];
また
indexValue := dtIndexValues.Rows[1]['IndexID'];
Itemがデフォルトのインデクサーであるため。