What are static and dynamic queries?
Answer / shera ahmad khan
Queries that are fiered by using Statement interface are
called Static queries.
Queries that are fiered by using PreparedStatement interface
are called Dynamic queries.
| Is This Answer Correct ? | 3 Yes | 0 No |
What is jdbc? Describe the steps needed to execute a sql query using jdbc.
Which jdbc driver is the fastest driver?
How we store procedure in oralce for callable statements in jdbc
How can we maintain the integrity of a database by using jdbc?
How can you load the drivers in jdbc?
Why we use jdbc instead of odbc?
What are drivers available?
What is Normalization?
4 Answers Accenture, Atos Origin,
Can you define a foreign key, with a key from the same table?
Statement, PrepareStatement and Callable all these are interfaces. Thought it is a interface how come we are creating objects and calling methods("preparestatement()") in it. In which class this method is defined. Please let me know. Thanks in advance. example: PreparedStatement pre = con.prepareStatement( "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");
Does the database server have to be running Java or have Java support in order for my remote JDBC client app to access the database?
What is a jdbc connection string?