Click here to Skip to main content
15,890,982 members
Home / Discussions / Java
   

Java

 
GeneralRe: installshield [ 5xRepost ] Pin
lucky_12216-Jan-11 18:21
lucky_12216-Jan-11 18:21 
GeneralRe: installshield [ 5xRepost ] Pin
Peter_in_27806-Jan-11 19:10
professionalPeter_in_27806-Jan-11 19:10 
QuestionComparing values in the table with the value the user keyed in Pin
pancakeleh5-Jan-11 16:20
pancakeleh5-Jan-11 16:20 
AnswerRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan5-Jan-11 21:46
mveRichard MacCutchan5-Jan-11 21:46 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
pancakeleh5-Jan-11 22:05
pancakeleh5-Jan-11 22:05 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan5-Jan-11 22:48
mveRichard MacCutchan5-Jan-11 22:48 
AnswerRe: Comparing values in the table with the value the user keyed in Pin
Arman S.6-Jan-11 9:39
Arman S.6-Jan-11 9:39 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
pancakeleh6-Jan-11 17:48
pancakeleh6-Jan-11 17:48 
try{

        Connection con = DriverManager.getConnection( );------------------------> Not sure what to include here.

        Statement stmt = con.createStatement();
        ResultSet rs = stmt.executeQuery("SELECT INCIDENTID FROM INCIDENTDATA");
        ArrayList allResults = new ArrayList();

        while (rs.next()) {
       
           int incidentID = rs.getInt("INCIDENTID");

            allResults.add(incidentID);

            }
	}

    catch (Exception ex) {
                  log("ErrorDescription", ex);
              error(ex.getMessage());

 }


My code are as shown above.

i am unsure of how to make use of sql to check/compare values in the table and with the values the user keyed into the textboxes.
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan6-Jan-11 21:49
mveRichard MacCutchan6-Jan-11 21:49 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Arman S.7-Jan-11 6:54
Arman S.7-Jan-11 6:54 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan7-Jan-11 8:26
mveRichard MacCutchan7-Jan-11 8:26 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Arman S.7-Jan-11 8:35
Arman S.7-Jan-11 8:35 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan7-Jan-11 8:58
mveRichard MacCutchan7-Jan-11 8:58 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Arman S.7-Jan-11 9:23
Arman S.7-Jan-11 9:23 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
jschell8-Jan-11 8:59
jschell8-Jan-11 8:59 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan8-Jan-11 21:49
mveRichard MacCutchan8-Jan-11 21:49 
GeneralRe: Comparing values in the table with the value the user keyed in [modified] Pin
pancakeleh9-Jan-11 16:59
pancakeleh9-Jan-11 16:59 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan9-Jan-11 23:00
mveRichard MacCutchan9-Jan-11 23:00 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
pancakeleh10-Jan-11 19:43
pancakeleh10-Jan-11 19:43 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan10-Jan-11 23:21
mveRichard MacCutchan10-Jan-11 23:21 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
pancakeleh12-Jan-11 21:48
pancakeleh12-Jan-11 21:48 
GeneralRe: Comparing values in the table with the value the user keyed in Pin
Richard MacCutchan12-Jan-11 22:06
mveRichard MacCutchan12-Jan-11 22:06 
QuestionNeed urgent help in assignment of JAVA, any idea suggestion plz Pin
aesthetic.crazy5-Jan-11 12:13
aesthetic.crazy5-Jan-11 12:13 
AnswerRe: Need urgent help in assignment of JAVA, any idea suggestion plz Pin
Richard MacCutchan5-Jan-11 21:41
mveRichard MacCutchan5-Jan-11 21:41 
AnswerRe: Need urgent help in assignment of JAVA, any idea suggestion plz Pin
David Skelly5-Jan-11 22:19
David Skelly5-Jan-11 22:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.