how a programmer confirms that the data submitted has been
succesfully inserted into the database(either oracle or my
sql).. How a programmer confirm if there is any problem with
the program he wrote for insertion
Answers were Sorted based on User's Feedback
Answer / guest
executeupdate method is having boolean return type, if
anything goes wrong in data insertion or data updation, it
would return false. otherwise, if it successfully inserts
data into the database, it would return true
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / ravi
executeupdate method have is boolean typeand if want to
check that data insert for this after statement we print a
statement that record successfully inserted if record
inserted this statement execute and otherwise print
statement not execute.
| Is This Answer Correct ? | 2 Yes | 0 No |
what are the different access specifiers that can be used by interfaces and abstract classes? can anyone give me detailed description on this
11 Answers IBM, L&T,
What is meant by class and object in java?
What is join () in java?
Why deletion in linkedlist is fast than arraylist?
class a extends b { } class b extends a { } why java doesn't support cyclic pls explain me with example
Explain JPA in Java.
Does treeset use compareto?
Is JRE required to compile Java files ?
Write a program to check string is palindrome without using loop?
Difference between a class and an object?
what is business objects?
What is advantage of using threads?