DBA > Job Interview Questions > DERBY Java Database FAQs

What is Statements?

More DBA job interview questions and answers at http://dba.fyicenter.com/Interview-Questions/

(Continued from previous question...)

What is Statements?

To execute SQL statements against a database, an application uses Statements (java.sql.Statement) and PreparedStatements (java.sql.PreparedStatement), or CallableStatements (java.sql.CallableStatement) for stored procedures. Because PreparedStatement extends Statement and CallableStatement extendsPreparedStatement, this section refers to both as Statements. Statements are obtained from and are associated with a particular Connection

(Continued on next question...)

Other Job Interview Questions