Ashu Patel

Greenhorn
+ Follow
since Sep 15, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Ashu Patel

thanks a lot for quick answer but
didnt get you what do we mean by form for paging..please give little detials

thanks
20 years ago
JSP
how to Setnumber of rows per page and max number of rows in jsp

I want 20 rows per page and then it should show the 1,2,3, next etc..
dont know how to go about it..any thought to put on right track will be great help
20 years ago
JSP
Hi friends help me out please
i am getting a string as an out put which looks like this
" cindy,martha,terreca"
i am getting this as a whole string..
what i want to do is parse this and get individual name
Any logic,any snipplet will be a great help
Sincerly
Ashish
20 years ago
Hi to all.
I am wondering can we retrive Applications from the SourceSafe using Ant?
or in otherwords can we fetch the latest code from VSS using Ant.
If yes ..How?
Where will I find tutorial or information about this..
Please help me out..
20 years ago
Thanks Murthy..
It helped
21 years ago
Select to_char(tran.CRTN_DT, 'mm/dd/yyyy') outboundMsg,
ResultSet rs = pstmt.executeQuery();
while (rs.next()){
TranInfo vo = new TranInfo();
dateFormatter = DateFormat.getDateInstance();
String dateOut = dateFormatter.format((Timestamp)getTimestamp"outboundMsg"));
vo.setDateOut(dateOut);
);
vo.setCrtnDate((Timestamp) rs.getTimestamp("outboundMsg"));
this throws error stating
[java.sql.SQLException: java.lang.IllegalArgumentException: Timestamp format must be yyyy-mm-dd hh:mm:ss.fffffffffat java.sql.Timestamp.valueOf(Timestamp.java:133)
at oracle.jdbc.driver.OracleStatement.getTimestampValue(OracleStatement.
java:3860)
at oracle.jdbc.driver.OracleResultSetImpl.getTimestamp(OracleResultSetIm
--------
please help out..what to do dont know
21 years ago
I have a a collection of the UserId which I want to populate into the dropdown menu
this collection of UserIds I am geting from database using the SQL and saving it into collection object
I am wondering how will i generate the dropdown menu using this to incorportate into jsp page so user can select valuse from the dropdown menu which comes from the Collection object so
USERID Collection ---> Dropdown menu---->let user Select it and ---> return result based of chosed Id....
Help will be greatly appriciated
Thanks
21 years ago
Hi Friends.
In my action handler I am expecting the month and year from the dropdown menu of the HTML form( all user can do is select month and year from respective drop down menu on htmlform..they dont have choice for date. I will providing the query based on the whole month)
My question is how will I make a string of that Date function by just using those month and year parameters passed by form..
becuase I need to pass that date string into PrepareStatement to run Query.
Can any one please help me out..
thanks in advance
Ashu
21 years ago
Thanks Andres Gonzalez
It looks like big lerning curve here, I m goin throught it, meanwhile if anyone has any snippet or sample working code that will be life saving..
once again thanks Andres
Ashu
21 years ago
JSP
I have jsp pages that generates dynamically.
I wanted to email this information.
I have no clue how to go about it..
Any suggestion in right direction or code snippet will be great help
thanks in advance
21 years ago
JSP