code to insert values/rows into oracle database from a java
swing textfield when a button is pressed(using
preparedstatements)
No Answer is Posted For this Question
Be the First to Post Answer
Is JDBC a language or Application?
If you are given a choice to implement the code to either insert a record or update if already exist, which approach will you follow ?
Is jpa faster than jdbc?
Hi my doubt is that preparedStatement is a interface means which has no implemenation.plz go thru the code below String sql = "SELECT * FROM movies WHERE year_made = ?"; prest = con.prepareStatement(sql); prest.setInt(1,2002); ResultSet rs1 = prest.executeQuery(); Now setInt and executeQuery how it works since it is interface it does not have implementation how it works, how executeQuery returns result from database as executequery method has no implementation even in Statement interface.
4 Answers Cybermate, Hexaware,
What class.forname will do while loading drivers of jdbc?
Expalin the method of calling a stored procedure from jdbc.
Explain the two tier and three tier architecture of jdbc.
If iam using JDBC API, do I also have to use ODBC?
How to move the cursor in scrollable resultset ?
What is a jdbc url?
What are the flow statements of jdbc?
Why do you use a data source object for a connection?