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 is the requirement of thread in java?
Is vector ordered in java?
What is the map interface in java programming?
can we access the super class method using subclass object?
What is the basic concepts of OOPS?
i need source code for income tax program using java inheritance
What is append in java?
What is the importance of main method in Java?
please write java program of instanceOf keyword implementation
Can we have try without catch block?
What is use of set in java?
int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;