mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-12-21 23:08:52 -05:00
Fix documentation markdown
This commit is contained in:
parent
08b9348447
commit
22fad7f487
@ -139,10 +139,10 @@ otherwise noted the ResultSet is closed before these methods return:
|
|||||||
* for the collection, any class implementing java.util.Collection can be used, java.util.List is popular
|
* for the collection, any class implementing java.util.Collection can be used, java.util.List is popular
|
||||||
* All mapping behavior is the same as `java.util.Map<E, T>`, except the value is used to aggregate all values with
|
* All mapping behavior is the same as `java.util.Map<E, T>`, except the value is used to aggregate all values with
|
||||||
the same key
|
the same key
|
||||||
* Example: you want to look up all firstNames for a given lastName, return type is Map<String, List<String>>,
|
* Example: you want to look up all firstNames for a given lastName, return type is `Map<String, List<String>>`,
|
||||||
query might be `SELECT last_name, first_name FROM person`, returned value might be something like
|
query might be `SELECT last_name, first_name FROM person`, returned value might be something like
|
||||||
`{Monroe=[Marilyn, James], Washington=[George]}`
|
`{Monroe=[Marilyn, James], Washington=[George]}`
|
||||||
* Example: you want to look up all People with a given lastName, return type is Map<String, List<Person>>,
|
* Example: you want to look up all People with a given lastName, return type is `Map<String, List<Person>>`,
|
||||||
query might be `SELECT last_name, first_name, person_no FROM person`, returned value might be something like
|
query might be `SELECT last_name, first_name, person_no FROM person`, returned value might be something like
|
||||||
`{Monroe=[Person{firstName=Marilyn,lastName=Monroe,personNo=1}, Person{firstName=James,lastName=Monroe,personNo=2}], Washington=[Person{firstName=George,lastName=Washington,personNo=3}]}`
|
`{Monroe=[Person{firstName=Marilyn,lastName=Monroe,personNo=1}, Person{firstName=James,lastName=Monroe,personNo=2}], Washington=[Person{firstName=George,lastName=Washington,personNo=3}]}`
|
||||||
8. `java.sql.ResultSet`
|
8. `java.sql.ResultSet`
|
||||||
|
Loading…
Reference in New Issue
Block a user