final JComboBox destination= new JComboBox();
destination.setModel(new DefaultComboBoxModel(new String[] {"city1", "city2", "city3"}));
destination.setBounds(413, 11, 147, 20);
int selectedIndex1=destination.getSelectedIndex();
contentPane.add(destination);
和
final JComboBox departure= new JComboBox();
departure.setModel(new DefaultComboBoxModel(new String[] {"city1", "city2", "city3"}));
departure.setBounds(413, 11, 147, 20);
int selectedIndex1=departure.getSelectedIndex();
contentPane.add(departure);
我正在为我的家庭作业编写一个巴士预订系统,但我无法用 Java 编写正确的 SQL 查询。
我有 3 个组合框。
我想编写一个 SQL 查询来显示可用的公交车及其时间。我的意思是这样的:
select busid,bustime
from table1
where des=destination.getSelectedItem()
&& dep=departure.getSelectedItem()
&& date=date.getSelectedItem()
你能帮我吗?