Shoba Ramachandran

Ranch Hand
+ Follow
since Mar 29, 2001
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 Shoba Ramachandran

You need to clear the parameters after inserting a row and then set the fresh set of parameters again.
20 years ago
private String getFromCLOB(CLOB clob) throws IOException
{
String sFile = "";
Reader reader = clob.getCharacterStream();
BufferedReader in = new BufferedReader(reader);
String buffer;
StringBuffer output = new StringBuffer();
while (!(null == (buffer = in.readLine())))
{
output.append(buffer);
}
sFile = new String(output);
return sFile;
}
20 years ago
Hi,
Has anyone tried Lucene open source tool?
Could anyone please let me know how to index the word documents?
Thanks
Shoba
Thanks for sharing Prashant,
Regards
Shoba
Thanks everybody for all your wishes.
Shoba
Hi guys,
I have passed the Test 141 today with 85%.
I would like to thank all javaranchers for being so helpful to one another and motivating new comers to acheive their goal of passing XML exam.
I would like to thank Mapraputa Is and Zeeshan Aziz for letting us know about the book "Essential XML Quick Reference". This book is too good and very useful. I studied only this book and took all the mock exams available on-line. I also bought Professional XML 2nd edition, but did not go through except for Xlinks which is not in XML Quick Reference book.
Thanks very much
Shoba
No Sridhar, I haven't got my voucher yet. It's 2 days since I have taken the test.
Shoba
Thanks Ashish, let me hope I'll get the voucher.
Shoba
I took the test yesterday around noon and passed with 84%. I did not receive the voucher yet, probably limit of 1000 users has crossed.
Shoba
Thanks for your reply Scott. Hope I get the voucher since I took the test only today around noon.
Thanks
Shoba
Hi,
After taking the test 141, do I have to mail IBM saying that I have passed the test or will I be receiving the voucher automatically. I did not save any time information when I took the test.
Would I be getting the free voucher?
Thanks
Shoba
Hi,
After taking the test 141, do I have to mail IBM saying that I have passed the test or will I be receiving the voucher automatically. I did not save any time information when I took the test.
Would I be getting the free voucher?
Thanks
Shoba
Roseanne,
In anchor tag also you can point to a specific location in a html document using "#"
Example:
<a href="test.html#section1">Go to Section 1</a>
What do you think?
Thanks
Shoba
Hi,
When I try to bring all preceding-siblings for Sku element, nothing returns

Shouldn't it return the following
<Description >and <Price> elements

Could somebody pl. explain did I understand here.
Thanks
Shoba
Adrian,
I tried yours with "#IMPLIED", it still gives me the error.
Dan,
Yes, I'm using XML spy and I expected it to complain for the first example. It didn't and added tried the second example and it gave me some other error other than the one it should have as you menioned.
So I guess that the statement "Parameter entities may not be referenced within other declarations in the internal subset" is TRUE and XML spy is not satisfying this condition.
Thank you both for your response.
Shoba