Dave Rodger

Greenhorn
+ Follow
since Mar 29, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Dave Rodger

Why didn't you take the new exam? It covers all the new material. SCWCD 5 is material from 4 years ago...
12 years ago
Hi

There is a fixed amount of data that can be written to each of the fields in the database. Obviously if one of the fields in the data[] is too long to fit into the database record (without writing onto the next field) an exception should be thrown. The only exception that is listed in the interface is the RecordNotFoundException however throwing this type of exception does not seem the correct solution. However I understand that no additional exceptions may be added to Sun's Data interface. Should I throw an unchecked RuntimeException instead?

Thanks