| bio | website | ubuntuasviewedbylogan.wordpre… |
|---|---|---|
| location | Ahmadabad, India | |
| age | 24 | |
| visits | member for | 3 years, 5 months |
| seen | 2 days ago | |
| stats | profile views | 154 |
A Software Engineer who loves Java. I have sound knowledge of J2SE,J2EE,JSF 1.2,Seam and basic knowledge about Spring 3.0, Hibernate.
Other than that I have also worked with SAX API, Spring Social, Scribe-Java (library for OAuth).
|
Jun 4 |
answered | java jdbc connection - result set output problems |
|
Jun 4 |
comment |
java jdbc connection - result set output problems Also, can you edit the question to so that we can know what rs4 is? Since you are selecting only imagelocation in stm5, using rs5.getString(2) will throw exception. |
|
Jun 4 |
comment |
java jdbc connection - result set output problems Are you getting some exception or something? Your problem is not clear enough. |
|
May 31 |
comment |
java:After entering id whole information should display You also have to put the code if(id.equals(rs1.getString(6))) after you have called rs1.next(). |
|
May 31 |
comment |
Read two textfile line by line simultaneously -java Do you have to print the lines only or also have to store them? |
|
May 30 |
comment |
Spring MVC + Session attributes and multiple tabs Also, if you don't want to show these fields, then just don't use the EL to show them. This way they will automatically be hidden, hence no need to make them hidden explicitly. |
|
May 30 |
comment |
Spring MVC + Session attributes and multiple tabs It is not necessary to make the non-editable fields as hidden. You can show them on UI (if needed), in non-editable forms, like by just using the EL rather them putting them inside any editable component. |
|
May 29 |
answered | Spring MVC + Session attributes and multiple tabs |
|
May 29 |
comment |
retrieve selected Row data in JSF In order to pass the current row value to the function, use the var attribute of the ui:repeat, and pass it as parameter in the function. |
|
May 28 |
comment |
jstl output doesn't work What is the result of ${pageContext.request.remoteUser} if you directly print it using <c:out> tag, that is outside <input> tag? It is possible that the value is not stored in the variable that you are using hence it is using the default value. |
|
May 28 |
comment |
Condition for redirecting to different page? @JBNizet: Thanks for the help. Yes, I agree that the resultset will not be null in that case, rather it will an empty one. |
|
May 28 |
comment |
Condition for redirecting to different page? Add rd.forward(req,res) below the initialization of the RequestDispatcher. |
|
May 28 |
comment |
Condition for redirecting to different page? @shareef: Thanks for adding the link. |
|
May 28 |
reviewed | Approve suggested edit on Condition for redirecting to different page? |
|
May 28 |
comment |
Condition for redirecting to different page? @JBNizet: That will not be true in all the cases. Here, it is a possibility, but in other cases, the executeQuery can return an empty result set. An Example will be calling a SP using CallableStatement, which instead of returning any data just returns by executing the return; statement. |
|
May 28 |
comment |
Condition for redirecting to different page? Yes, it is. It will check whether your resultset rs is null/empty or not. In the case when the userid and firstname will not match, the resultset rs will be empty and hence the condition will fail resulting in the statements in the else block to be executed. |
|
May 28 |
answered | Condition for redirecting to different page? |
|
May 28 |
comment |
retrieve selected Row data in JSF How is the table generated? Have you hard coded it, or are using JSTL or some other tag to iterate over the data to be shown in the table? |
|
May 28 |
answered | retrieve selected Row data in JSF |
|
May 28 |
comment |
retrieve selected Row data in JSF How does the user select the row? By clicking on it, or you are using selectBooleanCheckbox or some other tag for the same? |