using JCheckBox/JComboBox with JDBC

hello.

i was just wondering does any of you have links to web pages that include tutorials (and source code) on using JCheckBox with JDBC.would any of you who have experience with using JCheckBox and JDBC together be able to give me a few tips on how to select certain data from a table using JCheckBox and JButton? (examples of such data could be CD/DVD/Game data - i want users of my video library system to be able to view CD/DVD/Game information by name, age category, type and year)

thank you very much for your help.

[550 byte] By [james-mcfaddena] at [2007-11-27 10:57:59]
# 1

You could try writing the implementation for something like this:

package persistence;

public interface MediaDao{

public List<Media> search(String tableName, String search);

}

Then on the composite pass the parameter.

shlumpha at 2007-7-29 12:12:41 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2

Sounds like you need to learn the Swing API followed by the JDBC API.

SoulTech2012a at 2007-7-29 12:12:41 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3

hello.

Thanks for the replies. Im wondering do any of you have links to web pages that include tutorials and source code on using JCheckBox, JButton and JTextArea with JDBC. would any of you who have experience with using JCheckBox, JButton, JTextArea and JDBC together be able to give me a few tips on how to select certain data from a table using JCheckBox + JButton and display the data in a JTextArea? examples of such data could be CD/DVD/Game data - i want users of my video library system to be able to view CD/DVD/Game information by name, age category, type and year. Users should be able to click on a check box (e.g. view by name, age category, type or year) and press a button. What would happen then is that data would appear in the text area (which could be placed beneath the check box + button inside a frame).

thanks for the help.

james-mcfaddena at 2007-7-29 12:12:41 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 4

> hello.

> Thanks for the replies. Im wondering do any of you

> have links to web pages that include tutorials and

> source code on using JCheckBox, JButton and JTextArea

> with JDBC.

Wow, another person who's never heard of Google. Amazing!

> would any of you who have experience with

> using JCheckBox, JButton, JTextArea and JDBC together

> be able to give me a few tips on how to select

> certain data from a table using JCheckBox + JButton

> and display the data in a JTextArea? examples of such

> data could be CD/DVD/Game data - i want users of my

> video library system to be able to view CD/DVD/Game

> information by name, age category, type and year.

> Users should be able to click on a check box (e.g.

> view by name, age category, type or year) and press a

> button. What would happen then is that data would

> appear in the text area (which could be placed

> beneath the check box + button inside a frame).

> thanks for the help.

Find the tutorials, go through them, then come back here when you have a specific problem you need help with. Yes we have experience in these areas, but we're not going to post links and code here just because you're too lazy to use Google and find it yourself.

SoulTech2012a at 2007-7-29 12:12:41 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...