Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

one JCheckBoxwill be insert into the database

String R=chckbxRsidentel.getSelectedObjects().toString();
String A=chckbxAffaire.getSelectedObjects().toString();
share|improve this question
What's the question? – John Farrelly Apr 9 '12 at 23:05
I want to insert either "R" or "A" into the database depending on which checkbox is selected. – user1308236 Apr 9 '12 at 23:15

1 Answer

up vote 1 down vote accepted

I'm assuming that you want to insert either "R" or "A" into the database depending on which checkbox is selected. Perhaps you also want to insert, say, " " if neither is selected.

You could do this:

char check = chckbxRsidentel.isSelected() ? "R" :
             chckbxAffaire.isSelected() ? "A" : " ";
share|improve this answer
Type mismatch: cannot convert from String to char – user1308236 Apr 9 '12 at 23:13
Fixed the string / char mismatch – samlewis Apr 9 '12 at 23:22
and in the request what I write for the variable – user1308236 Apr 9 '12 at 23:26
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException – user1308236 Apr 9 '12 at 23:32
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; – user1308236 Apr 9 '12 at 23:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.