2
我想從DataReader按列檢索數據。DataReader,按列檢索數據
現在我使用的是這樣的,
有沒有什麼辦法讓被列名的數據?像
string columnB = reader["B"].getValue();
謝謝!
我想從DataReader按列檢索數據。DataReader,按列檢索數據
現在我使用的是這樣的,
有沒有什麼辦法讓被列名的數據?像
string columnB = reader["B"].getValue();
謝謝!
你有沒有嘗試這個辦法:
string columnA = Convert.ToString(reader["B"]);
哇它的作品!萬分感謝! – 2012-04-19 15:37:07
有詢問[相關這個問題]後(http://stackoverflow.com/questions/2882280/datareader-hardcode-ordinals)。如果您好奇,我會發布一些比較兩種訪問方法的數字。 – 2012-04-20 21:58:41