hsqldb server component for kosmos (used for testing purposes)
Add something like this to your kosmos config:
:server
{
:kosmos/init :kosmos.server/HsqlDbServerComponent
:port "9005"
:database "file:target/db/test"
:dbname "test"
}
then connect with jdbc using one of its database specs
example:
{
:classname "org.hsqldb.jdbc.JDBCDriver"
:subprotocol "hsqldb"
:protocol "hsql"
:host "localhost"
:port 9005
:database "test"
:user "SA"
:password ""
}
Kosmos is distributed under the Eclipse Public License, the same as Clojure.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close