shilpa kulkarni

Ranch Hand
+ Follow
since Jun 07, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by shilpa kulkarni

Sorry for hijacking this hijack ...
Dave, try this site -
FreeAutoAdvice
21 years ago
Try this -
21 years ago
JSP
Check this link. On the left hand side of the page, look under the heading of Tourist Attractions for the beaches...

http://travel.indiamart.com/goa/
21 years ago
I used Turbo Pascal (I think it was version IV...)long long ago - in '93 actually. Felt nice to see it being mentioned after long... I just had to post a reply to this one
21 years ago
I had originally asked the question in relation to an income tax deduction. I finally called up their 1-800... number and they said that freshman and sophomore years after high school count as first 2 years of post-secondary education as mentioned in their forms.
Funny how they use a term in their forms which is not widely used otherwise!
Thanks Jamie / Jim / Jason.
21 years ago
I was wondering what is considered as "post-secondary education" in the U.S. I know high school is till the 12th Grade...
21 years ago
We have state and city taxes as well as sales tax in Ohio.
I am curious - how is it that some states do not have tax at all? Why should some pay and some not, is there some logic behind the levy of taxes?
I read an article that says that IRS itself is illegal according to the Constitution of America. Is this true?
22 years ago

Originally posted by Nanhesru Ningyake:
Afaik, we don't have an equivalent in India.


I have heard of "Jug Jug Jeeyo" (have a long life ??) when someone sneezes!
22 years ago
me too!

Originally posted by Suresh Ray:
As for as registration goes, I think, am one of the earlier ones..
Posts not that many, though I read/spend a lot of time on Javaranch.

22 years ago
This piece of code returns date as 14 Feb 2001.
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, 2001);
cal.set(Calendar.DAY_OF_YEAR, 45);
System.out.println(cal.get(Calendar.DATE));
System.out.println(cal.get(Calendar.MONTH)+1);
System.out.println(cal.get(Calendar.YEAR));
22 years ago
This piece of code returns date as 14 Feb 2001.
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, 2001);
cal.set(Calendar.DAY_OF_YEAR, 45);
System.out.println(cal.get(Calendar.DATE));
System.out.println(cal.get(Calendar.MONTH)+1);
System.out.println(cal.get(Calendar.YEAR));
22 years ago
May be this is what you are looking for in place of your '?':
ResultSet rs = ((OracleCallableStatement)cs).getCursor(1);
22 years ago
JSP
The number of '?' in your prepared statement should match the number of setXXX() method calls you make. It sounds like you have not set values for all the place holders.
Are you using request.getQueryString() method to get your parameters?
When you use POST, request.getQueryString() does not work, since there is no queryString. You have to use request.getParameter("param1").
Hope this helps.
22 years ago
JSP