Search:

Type: Posts; User: JaiBharath; Keyword(s):

Search: Search took 0.00 seconds; generated 10 minute(s) ago.

  1. Answers
    2
    Views
    7,836

    Re: JDBC driver and datasource

    Java DataBase Connectivity API provides only interfaces so that using JDBC in your application will be independent of different types of Databases like Oracle, MySQL etc. And the database vendor like...
  2. Answers
    1
    Views
    3,349

    Re: Dialect in Hibernate

    dialect is meant for providing database details of which ur making use in ur application to hibernate. In this manner only, hibernate will decide about the SQL statements those have to be used...
  3. Answers
    8
    Views
    9,707

    Re: Overload main method

    i agree with the reply from Rajan. That is the way to overload main()

    Even if u give any command line argument other than String type, JVM will consider it as String only..and obviously it starts...
  4. Answers
    2
    Views
    12,405

    Re: Unsupported class version error

    Try the below link

    http://www.artima.com/forums/flat.jsp?forum=1&thread=158813
  5. JSP Re: Writing Bussiness Logic using struts framework

    Never think of putting business logic in the action classes. Its not the way to work using struts. Action classes r only to act as a controller which delegates the control to some DAO, EJB objects....
  6. Answers
    10
    Views
    25,472

    JSP Re: Why We need JSP

    JSP is actually developed to
    1. lower the burden on the developer as the Servlet coding developement will be taken care by jsp compiler and can make use of some implicit variables.
    2. allow a...
  7. Answers
    15
    Views
    7,853

    JSP Re: Regarding Servlets

    hey dudes,

    In this discussion, I agree with eswar_ambati. I tested his code. Its the correct example for this discussion....

    Cheers,
    Jai
  8. Answers
    12
    Views
    292,961

    Re: What is Difference between List and ArrayList

    For the handling of objects collection in Java, Collection interface have been provided. This is avail in java.util package.

    "List" is an interface, extends collection interface, provides some...
  9. Answers
    4
    Views
    6,770

    Re: Differance between "==" & string.equals()

    In Java, "==" is used for comparing the premetive data types, and for objects "equals()" must be used. if u use "==" for objects comparison, it wiil just compare the reference of the objects not the...
  10. Answers
    1
    Views
    6,211

    Re: How to inherit class in Java progamming

    For extending a class in java programming, u should make use of 'extends' keyword.

    Ex: ClassA is the class which u would like to inherit in ClassB. Code is as follows

    //CODE
    public class...
  11. Answers
    4
    Views
    20,557

    Oracle Re: Package oracle.jdbc.driver does not exist

    It really means that it cant find the corresponding package in the classpath, make sure to include the ojbdc14.jar(or anything else that contain the implimentation class files of jdbc interface) in...
  12. Thread: System.exit

    by JaiBharath
    Answers
    4
    Views
    3,551

    Re: System.exit

    both results in terminating our program execution. But below are the diffs:

    System.exit(0): The User intentionally terminating the program.
    System.exit(1): Some error caused for the termination....
Results 1 to 12 of 12
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact