xodepp said:
i [sic] am having problem in JDBC.there are two different class[es] within same package name.one class is dbconnect and another is login. I need to call the dbconnect class within login class and i [sic] need to call the connection object from the dbconnect class in the login class.
You don't call classes in Java, you call methods.
You don't call objects in Java, you call methods.
What methods did you need to call?
I'm betting you spelled those class names wrong. If you created those classes,
then you failed to follow the Java naming conventions.
Spelling is crucial in Java, and the conventions are important.
Please provide an SSCCE.
http://sscce.org/
Arved's right. You need to start from the beginning. There's a lot of
material available for free, just an online search away.