Forum: JSP May 7th, 2007 |
| Replies: 6 Views: 6,109 if you want to compare strings use compareTo() method ex: oneString.compareTo(anotherString). if oneString is greater then anotherString the method will return value >0, it it is less --> value <0,... |
Forum: JSP May 7th, 2007 |
| Replies: 2 Views: 1,026 //after you execute the query
while (rs.next()){
System.out.println(rs.getString("studentid"));
System.out.println(rs.getString("studentname"));
}
... |
Forum: Java Apr 4th, 2007 |
| Replies: 4 Views: 4,291 You first have to create the Class file(t.e *.java)
then inside you shoud define properties, constructor and methods
after that yiuo should write the main method, in it to make an instance of a... |
Forum: C++ Mar 31st, 2007 |
| Replies: 5 Views: 1,860 Hi! someone else had a problem like yours. you can see my solution for palindrom writen in java.visit the JAVA tab, that may help you
Regards,Andrijana |
Forum: Java Mar 30th, 2007 |
| Replies: 7 Views: 9,619 Hi! I hope that my solution for your problem will help you.Write me back if you are satisfate with the code.:lol:
Regards,
Andrijana Denkovic
andrijana_denkovic@yahoo.co.uk
... |