This module offers some components for JDBC-based
database connectivity. The main component is the class
[[Sql]], an instance of which may be obtained for any
given [[javax.sql::DataSource]].
value sql = Sql(newConnectionFromDataSource(dataSource));
You can easily get a query result as a `Sequence` where
each row is a [[Map]]:
value rows = sql.Select("select * from mytable").execute();
for (row in rows) {
assert (is String name = rows["name"]);
assert (is ...
Version1.3.0compared with
Version Details
| 1.2.2 | 1.3.0 | |
|---|---|---|
| Release date | Feb 13, 2021 | Feb 13, 2021 |
| Licenses | Apache 2.0 | Apache 2.0 |
| Vulnerabilities | None | None |
Compile Changes (8)
| 1.2.2 | 1.3.0 | ||
|---|---|---|---|
| Change | Group / Artifact | Previous | Current |
| + Added | ceylon » decimal | - | 1.3.0 |
| + Added | ceylon » whole | - | 1.3.0 |
| ~ Updated | ceylon » collection | 1.2.2 | 1.3.0 |
| ~ Updated | ceylon » language | 1.2.2 | 1.3.0 |
| ~ Updated | ceylon » time | 1.2.2 | 1.3.0 |
| ~ Updated | ceylon » transaction | 1.2.2 | 1.3.0 |
| ~ Updated | ceylon.interop » java | 1.2.2 | 1.3.0 |
| - Removed | ceylon » math | 1.2.2 | - |