@ronin/compiler 0.10.2-leo-ron-1083-experimental-211 → 0.10.2-leo-ron-1083-experimental-212
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
@@ -110,12 +110,13 @@ new Transaction(queries, {
|
|
110
110
|
// names themselves are aliased.
|
111
111
|
//
|
112
112
|
// This ensures the cleanest possible SQL statements in conjunction with the default
|
113
|
-
// behavior of
|
114
|
-
//
|
113
|
+
// behavior of SQL databases, where the result of a statement is a list (array) of
|
114
|
+
// values, which are inherently not prone to conflicts.
|
115
115
|
//
|
116
116
|
// If the driver being used instead returns an object for every row, the driver must
|
117
117
|
// ensure the uniqueness of every key in that object, which means prefixing duplicated
|
118
118
|
// column names with the name of the respective table, if multiple tables are joined.
|
119
|
+
//
|
119
120
|
// Drivers that return objects for rows offer this behavior as an option that is
|
120
121
|
// usually called "expand columns". If the driver being used does not offer such an
|
121
122
|
// option, you can instead activate the option in the compiler, which results in longer
|
package/package.json
CHANGED