I have created a jframe using net beans and add combo box to that. I just want to load values from one of my my sql table. I need entire field from that table to load to the combo box. what is the simplest code possible. (or the graphical method in netbeans).
Thank You!
You may either use the
Vector<T>orComboBoxModelobject. Take a look at JCombobox tutorial.PS: You should have to use mysql JDBC connector API to fetch the database result.