what is type of statement in jdbc connection?
Answers were Sorted based on User's Feedback
Answer / sukanta
1. Statement
2. PrepareStatment
3. CallableStatement
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / manoj kumar sahu(secon pvt.ltd
There are three types of statements
1.statement
2.precompiled/predefined statement
3.collable statement.
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / qim2010
Once a connection is obtained we can interact with the
database. The JDBC Statement, CallableStatement, and
PreparedStatement interfaces define the methods and
properties that enable you to send SQL or PL/SQL commands
and receive data from your database.
They also define methods that help bridge data type
differences between Java and SQL data types used in a database.
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi, This is ravi i have a question like this i have string "UNDERSTAND" now i want to count the letters how many times it occures.i.e from the above string the out put should be like this U-1,N-2,D-2,E-1,R-1,S-1,T-1,A-1. how can i achieve this Thnaks in advance for your response ..
What is a instance variable?
What is garbage collection? What is the process that is responsible for doing that in java?
Can an abstract class have a constructor?
What are the characteristics provided in jdk1.6 apart from other versions?
What is a for loop in java?
Can a double value be cast to a byte?
What is serial version uid and its importance in java?
Can we call thread start () twice?
What is a null point?
What is method in java with example?
What is quick sort in java?