Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. davidrv

    Hi Guys ! I don't really know w

    select table2.column2,... from table1, table2 where table1.column1 = table2.column1 and...
  2. davidrv

    Why won't this image rotate a code example

    you should notice that many objects methods does not alter the state of the object... for example look at this example with the BigDecimal BigDecimal num1 = new BigDecimal( 1.0 ); System.out.println( num1 ); // the output is 1.0 num1.add( new BigDecimal( 1.0 ) ); System.out.println( num1 ); //...
  3. davidrv

    Loops

    Besides The beginblock and ending block of if and loop statement are in a wrong place... The right place is while( boolean_expression ) { // statements excecuted when the condition is true } if( boolean_expression ) { // statements excecuted when the condition is true } if(...
  4. davidrv

    Loops

    Ok...:-) I think that the solution to your problem is undertanding that for String comparation you must use the equals or equalsIgoneCase methods defined in the class String... Your loop condition actually compares references to object not the content of the String object, you'd rather...

Part and Inventory Search

Back
Top