当前位置: 代码迷 >> Java Web开发 >> [求助]从数据表中提取一行数据到另一个空表中
  详细解决方案

[求助]从数据表中提取一行数据到另一个空表中

热度:315   发布时间:2007-08-06 22:56:48.0
[求助]从数据表中提取一行数据到另一个空表中


房间信息里面的是从数据库中调出来的.
把房间信息里面选中的行点击添加,加到开单房间的表中去!
****************************************************
public void jComboBox1_actionPerformed(ActionEvent e) {
String aa=jComboBox1.getSelectedItem().toString();
for(int j=0;j<30;j++){
for (int i = 0; i < table.getRowCount(); i++) {
table.removeRow(i);
}
}
try {
Statement s = numclass.numclass().createStatement();
ResultSet rs = s.executeQuery("select idroom,yumoney from room where room1='"+aa+"'");
while(rs.next()){
Object[] cells={rs.getString(1),rs.getString(2)};
table.addRow(cells);
}

} catch (SQLException ex1) {
}
}
public void jButton1_actionPerformed(ActionEvent e) {
int a=jTable1.getSelectedRow();
int b=jTable1.getSelectedColumn();
//table.getValueAt(a,table[b]);
//table1.insertRow(jTable1.getSelectedRow());
}

}
怎么提取房间信息表中的数据

[此贴子已经被作者于2007-8-6 22:58:11编辑过]

搜索更多相关主题的帖子: 数据  

----------------解决方案--------------------------------------------------------
首先获取在“房间表”中选中的列,然后再根据此信息的位置从数据库中提取。
----------------解决方案--------------------------------------------------------
  相关解决方案