1

I am using apache cayenne 3.1. I know of one way to update records in the database is to first use select query to find record and then update it, but I don't want to use a select query for updating. How can I directly update the record?

Craig
  • 2,286
  • 3
  • 24
  • 37

1 Answers1

0

EJBQLQuery allows to do direct DB updates. Also SQLTemplate, though in that case you are completely breaking with the object model, and will be writing DB-specific SQL.

andrus_a
  • 2,528
  • 1
  • 16
  • 10