| Author |
which to follow when the instruction and the DB interface conflict to each other
|
Alexandra Zhang
Greenhorn
Joined: Jun 08, 2007
Posts: 16
|
|
For the searching part specifications I've got are in two versions in the instruction and the DB interface.
The instruction said:"It must allow the user to search the data for all records, or for records where the name and/or location fields exactly match values specified by the user."
The DB interface said in comment:"
//A non-null value in criteria[n] matches any field
// value that begins with criteria[n]. (For example, "Fred"
// matches "Fred" or "Freddy".)"
I guess I should follow the instruction, shouldn't I?
|
 |
Sean Keane
Ranch Hand
Joined: Nov 03, 2010
Posts: 581
|
|
Alexandra Zhang wrote:I guess I should follow the instruction, shouldn't I?
Yep . There's lots of info about this topic on the forum.
|
SCJP (1.4 | 5.0), OCJP (6.0), OCMJD
|
 |
Alexandra Zhang
Greenhorn
Joined: Jun 08, 2007
Posts: 16
|
|
|
Thanks a lot for your quick response.
|
 |
Roel De Nijs
Bartender
Joined: Jul 19, 2004
Posts: 4389
|
|
I think it's by far the most frequently asked question on this forum.
And the answer is simple: for your Data class implement what's asked (startsWith matching) and then you have to do some extra filtering to only show the exactly matching records.
|
SCJA, SCJP (1.4 | 5.0 | 6.0), SCJD
http://www.javaroe.be/
|
 |
 |
|
|
subject: which to follow when the instruction and the DB interface conflict to each other
|
|
|