Small fixes
A selection of 80 fixes from 174 pull requests.
28.An uncaught SQL error
Uncached statement preparation ran outside Effect’s error capture. Its errors became defects rather than SqlError. Use the same preparation helper as the cached path.
11) => runStatementValuesUnprepared(db.prepare(sql), params)) => Effect.flatMap(prepare(sql), (statement) => runStatementValuesUnprepared(statement, params))