File tree 1 file changed +2
-2
lines changed
src/main/java/org/mybatis/dynamic/sql/util/mybatis3
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public interface CommonSelectMapper {
50
50
/**
51
51
* Select a single row as a Map of values. The row may have any number of columns.
52
52
* The Map key will be the column name as returned from the
53
- * database (may be aliased if an alias is specified in the select statement). Map entries will be
53
+ * database (the key will be aliased if an alias is specified in the select statement). Map entries will be
54
54
* of data types determined by the JDBC driver. MyBatis will call ResultSet.getObject() to retrieve
55
55
* values from the ResultSet. Reference your JDBC driver documentation to learn about type mappings
56
56
* for your specific database.
@@ -85,7 +85,7 @@ public interface CommonSelectMapper {
85
85
* Select any number of rows and return a List of Maps containing row values (one Map for each row returned).
86
86
* The rows may have any number of columns.
87
87
* The Map key will be the column name as returned from the
88
- * database (may be aliased if an alias is specified in the select statement). Map entries will be
88
+ * database (the key will be aliased if an alias is specified in the select statement). Map entries will be
89
89
* of data types determined by the JDBC driver. MyBatis will call ResultSet.getObject() to retrieve
90
90
* values from the ResultSet. Reference your JDBC driver documentation to learn about type mappings
91
91
* for your specific database.
You can’t perform that action at this time.
0 commit comments