Andrey Kuznetsov
Andrey Kuznetsov

Reputation: 11830

Scala dbc update statement

Where can I see example of scala.dbc update statement? I have found select statement example only...

select fields (
                ("url" of characterVarying(32)) and
                ("name" of characterVarying(32)) and
                ("last_update" of integer)) from ("feeds")

Upvotes: 1

Views: 540

Answers (1)

Jon McAuliffe
Jon McAuliffe

Reputation: 3157

A search turned up this old wiki page, I haven't tested it though. As other people have mentioned in the past, there are possibly more up to date / actively maintained database persistence options for scala.

Upvotes: 3

Related Questions