Pranit Saha

Ranch Hand
+ Follow
since Sep 09, 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 Pranit Saha

How to assign big SQL statements in a String variable.. The excerpts given below..

String rsString=
"SELECT SO_NUM,ORDERING_CODE,FIN_QTY
FROM
CCTPL_RAWMATS_ISSUE_DETAIL
WHERE ORDERING_CODE=
(
SELECT ORDERING_CODE_REAL
FROM
CCTPL_SALES_QUOT_DETAILS
WHERE ORDERING_CODE='099-0004'
AND QUOT_NO=
(SELECT QUOT_NO
FROM
CCTPL_SALES_PO_MASTER
WHERE PO_NO='004'
)
)
AND PO_NO LIKE '004'";

In Compilation above code gives multiple "Unclosed character literal" error..

Pranit..
It'll be easier to figure out the error if you specify what problem you are facing.. Coding seems to be all rite..

Pranit..
Thanks for your reply.. I'll try with code and let you know..

Pranit..

Originally posted by Joe Ess:


And you'll have to do something similar for the ButtonCellEditor too.
The Java Tutorial: How to use Tables is a good source for info.

19 years ago
Hi,
Can anybody tell me how to embedd a Button in a Table Cell..
I am using Java Swing..

Pranit..
19 years ago
Put your code inside <HTML></HTML> tag..

Originally posted by Jeroen Wenting:
your code is NOT HTML.
The text before the doctype deslaration causes the browser to interpret all of it as plain text.

19 years ago
JSP
How to implement Copy, Cut and Paste facilities..
How to show a font dialog in response to a "Font" menu click..
Thanks and regards,
Pranit..
21 years ago

Originally posted by Barkat Mardhani:
Where about in New Jersey?


Hi,
Would you like to take an Indian Citizen..
Pranit..
21 years ago
Hi,
You can do like this..
if(session.getValue(" ")==null)
{
response.sendRedirect("logon.jsp");
}
Thanks
Pranit..
21 years ago
JSP
Hi,
Just i've compleated 1 year contract in Dhaka.. I am an indian guy, need a job in J2EE anywhere in the world..
Thanks and regards,
Pranit..
21 years ago
Hi,
Thanks a lot for your reply.. It has helped me a lot..
Pranit..
21 years ago
JSP

Originally posted by Bosun Bello:
i.e. Availability, Extensibility, and Scalability of what?


Acatually i m referring to the features of Web-Servers..
Thanks
Pranit..
21 years ago
JSP
Hi,
What is ThreadSafe and what does this feature do..
Thanks in advance..
Pranit..
21 years ago
JSP
Hi,
Whenever we are dealing with Connection in JSP, can we put the connection in the session and use it through the session..
like:
Connection conn=DriverManager.getConnection(url,user,password);
session.putValue("conn",conn);
And in another page:
Connection conn=(Connection)session.getValue("conn");
So we need to create another connection rite..
Just taking it from session..
Is it recommended insteadof Connection Pooling..
Thanks in advance..
Pranit..
21 years ago
JSP
Hi,
Is there any way to run Tomcat automatically when my machine starts..
Pranit..
21 years ago
JSP
Hi,
can you pls explain me the terms- "Availability, Extensibility, Scalability"..
Thanks in advance..
Pranit..
21 years ago
JSP