如何獲取包含從結果集中獲取的所有記錄的var?從ResultSet中獲取結果的問題
到目前爲止,我有這樣的代碼:
while (rs.next()) {
for (int i = 1; i <= columnCount; i++) {
String resultado = "";
resultado = rs.getString(i);
columnValue += resultado;
}
jTextPane2.setText(jTextPane2.getText() + columnValue + ", ");
}
我想,當resultado
得到來自rs.getString(i)
價值,填補了VAR columnValue
讓我應該有我從一開始記錄的VAR rs,但不起作用。任何幫助?
結果我得到的是:
(id_tlf,cod_area)
1 + 58,1 + 582 + 104,1 + 582 + 1043 + 60
以便你會看到,前兩個結果在每一行中重複出現
感謝大家,這真的幫助過我! –
*** FYI:***問題轉貼爲http://stackoverflow.com/questions/36636693/placing-a-coma-after-a-rs – Andreas