JSONArray represents an array of any type (`[]interface{}`) that is compatible with MySQL's JSON type. JSONArray satisfies sqlbuilder.ScannerValuer.
| 109 | // compatible with MySQL's JSON type. JSONArray satisfies |
| 110 | // sqlbuilder.ScannerValuer. |
| 111 | type JSONArray []interface{} |
| 112 | |
| 113 | // Value satisfies the driver.Valuer interface. |
| 114 | func (a JSONArray) Value() (driver.Value, error) { |