can someone tell me how does preparedstatement works? its
an interface and where is the implementation?
Answers were Sorted based on User's Feedback
Answer / sk.bilal ahmed
A SQL statement is precompiled and stored in a
PreparedStatement object. This object can then be used to
efficiently execute this statement multiple times.
Note: The setter methods (setShort, setString, and so on)
for setting IN parameter values must specify types that are
compatible with the defined SQL type of the input
parameter. For instance, if the IN parameter has SQL type
INTEGER, then the method setInt should be used.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / krishna
suppose if the string contains same select statement with
different set of values then fo for PreparedStatement..
ex:String str="select ename,eage from emp where ename=?";
yes it is interface provided by java soft people in their
api specification
| Is This Answer Correct ? | 2 Yes | 0 No |
1. Yes PreparedStatement is and interface. It was in
java.sql package.
2. PreparedStatement interface creates an object that
represents a precompiled SQL statement. By using this we
can protect from SQL Injection.
| Is This Answer Correct ? | 1 Yes | 3 No |
What is api in j2ee?
i developed a Stateless Session bean program.And created a client by a common java class as class m {p s v m(String s[]){....}} And i called the bean deployed in weblogic.from cmd prompt And that run. mind it i have to set setenv,seting classpath for that bean jar file before compile and run it. ok when i do a servlet programme deployed in tomcat and call that bean then it give classdefnotfoundException and NoInitialContext like this.So how i sucessfully do this? Ok when i call that bean from java class from the console like i previously told, if i don't set setenv i found the same error on the cmd prompt. pls help to get out of it
what is jvm? how can it is useful in java?
What are java front end tools?
What are the advantages of object-relational mapping (orm)?
What is java full stack developer?
What are the advanced technologies in java?
What are the component of java?
What is cmp in j2ee?
What is meant by applet in java?
What is java gui?
when i m calling java for web browser . so browser it's not support. show error in browser: internal error occur. java.lang.NoClassDefFoundError. will you give me solution why it's not starting browser.? is there any consult with .net framework2.0?