tags:

views:

70

answers:

1

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")
+3  A: 

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.

Jon McAuliffe
Thanks. I have made task using jdbc.
SMiX