我想编写一个程序,允许用户连接,查看,添加或删除数据库中的值。我被摇摆部分困住了。当我选择一个组合框选项没有任何反应,但我想创建一个像mysql工作台的视图。它假设是那样的;用户从组合框中选择一个表名,可以查看该表和文本字段中的列名,以在列名称上添加新值或现有值。
到目前为止我的代码是这样的:
public class DBC extends JFrame{
static String tablo;
static JTextField tf = new JTextField(20);
static int columnCount;
static JPanel tfPanel = new JPanel();
static JLabel depName = new JLabel("Name");
static JLabel depLocation = new JLabel("Location");
static Box box = new Box(BoxLayout.Y_AXIS);
public static void main(String[] args) throws Exception {
Class.forName("com.mysql.jdbc.Driver");
Connection connect = DriverManager.getConnection("jdbc:mysql://localhost:3306/project"
,"root","123456789");
final Statement statement = connect.createStatement();
JLabel tabloSec = new JLabel("Tablo Seçin:");
final JComboBox<String> tablolar = new JComboBox<String>();
DatabaseMetaData md = connect.getMetaData();
final ResultSet rs = md.getTables(null, null, "%", null);
while (rs.next()) {
tablolar.addItem(rs.getString(3));
}
tablolar.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0) {
tablo = tablolar.getSelectedItem().toString();
try {
columnCount = rs.getMetaData().getColumnCount();
for(int i=0;i<=columnCount;i++ ){
box.add(tf);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
JButton ekle = new JButton("Ekle");
ekle.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
try {
switch(tablo){
case "department":
statement.executeUpdate("INSERT INTO department(Name,Location) VALUES('"+tf.getText()+"')");
case "employee":
statement.executeUpdate("INSERT INTO employee(Id,FirstName,LastName,Sex,Address,Email,Salary,BirthDate,JoinDate) VALUES('"+tf.getText()+"')");
case "engineer":
statement.executeUpdate("INSERT INTO engineer(EngineerType) VALUES('"+tf.getText()+"')");
case "manager":
statement.executeUpdate("INSERT INTO manager(Department) VALUES('"+tf.getText()+"')");
case "project":
statement.executeUpdate("INSERT INTO project(Name,Number,Value) VALUES('"+tf.getText()+"')");
case "secretary":
statement.executeUpdate("INSERT INTO secretary(TypingSpeed) VALUES('"+tf.getText()+"')");
}
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
});
JButton cik = new JButton("Çık");
cik.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
});
JPanel panel = new JPanel(new GridLayout(4,3));
panel.add(tabloSec);
panel.add(tablolar);
panel.add(box);
panel.revalidate();
panel.add(ekle);
panel.add(cik);
JFrame frame = new JFrame("Deneme");
frame.setSize(600,600);
frame.setLocationRelativeTo(null);
frame.add(panel);
frame.pack();
frame.setVisible(true);
}
}
答案 0 :(得分:1)
在迭代结果集的元数据时,您似乎在添加相同的文本字段:box.add(tf);
。这将仅添加相同的文本字段一次。在向其添加新控件后,您还需要validate()
和repaint()
box
容器。请注意,在选择新表时,还需要从box
容器中删除所有控件。您可能需要引入滚动窗格。另外,SQL语句执行指的是同一个文本字段。除非当然只有一列,而且总是应该更新一个值。
总而言之,除非这是针对一组非常特定的表的非常具体的解决方案,否则您可以考虑为此使用更友好的控件,可能是列表或表。也许类似于属性表的东西,其中第一列指定属性的名称,第二列是该属性的值。值列可编辑。选择新的SQL表后,可以重新填充属性表。然后在语句执行时,只收集所有必要的值。作为替代方案,您还可以显示SQL表的相关视图,并让用户调整任何值,然后在完成后更新SQL。请查看@camickr的Table From Database。
另请注意,您不应在Event Dispatch Thread
上执行SQL语句,这可能会冻结您的UI,因为长时间的操作会阻止EDT。应在辅助工作线程上处理这些操作。见Event Dispatch Thread。通常使用SwingWorker来处理这么长的任务。