@ronin/compiler 0.10.2-leo-ron-1083-experimental-211 → 0.10.2-leo-ron-1083-experimental-212

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +3 -2
  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 SQLite (and all other SQL databases), where the result of a statement is
114
- // a list (array) of values, which are inherently not prone to conflicts.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.10.2-leo-ron-1083-experimental-211",
3
+ "version": "0.10.2-leo-ron-1083-experimental-212",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {