Hi there...
I need to load/store/delete a single String value in a table (one column). I didn't want to go through the ORM stuff because of the simplicity of the needs. So I thought I could use getSession().createSQLQuery("...").executeUpdate() but it bounces me off saying "Update queries only supported through HQL".
From the Hibernate Reference Documentation ($16) and examples from the web I get the impression that it should work, but it goes a little back and forth so I'm not sure anymore.
Anyway, I moved to createQuery("...").executeUpdate() but I can't start with "INSERT".
I'm sure there's an easy way of doing this but apparently I'm looking in the wrong direction. Can anyone help me out?
Thanks, Lino
|