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 ...
💡
Newer Version Available

Scope:
Scope:
Format:
Scope:
Scope:
Scope:
Scope:
Scope:
Scope:

Note: this artifact is located at Ceylon repository (https://modules.ceylon-lang.org/maven/1/)

Licenses

LicenseURL
Apache Software License 2.0

Developers

NameEmailDev IdRolesOrganization
Enrique Zamudio