Return-Path: Delivered-To: apmail-db-torque-user-archive@www.apache.org Received: (qmail 66028 invoked from network); 11 Nov 2003 20:59:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 11 Nov 2003 20:59:13 -0000 Received: (qmail 81552 invoked by uid 500); 11 Nov 2003 20:58:56 -0000 Delivered-To: apmail-db-torque-user-archive@db.apache.org Received: (qmail 81521 invoked by uid 500); 11 Nov 2003 20:58:55 -0000 Mailing-List: contact torque-user-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Apache Torque Users List" Reply-To: "Apache Torque Users List" Delivered-To: mailing list torque-user@db.apache.org Received: (qmail 81458 invoked from network); 11 Nov 2003 20:58:55 -0000 Received: from unknown (HELO mx201.mysite4now.com) (216.250.116.238) by daedalus.apache.org with SMTP; 11 Nov 2003 20:58:55 -0000 Received: (qmail 12828 invoked by uid 104); 11 Nov 2003 20:58:04 -0000 Received: from rs@reazon.com by localhost.localdomain by uid 110 with qmail-scanner-1.14 (spamassassin: 2.43-cvs. Clear:. Processed in 0.249235 secs); 11 Nov 2003 20:58:04 -0000 Received: from adsl-67-112-246-202.dsl.lsan03.pacbell.net (HELO RSC640) (67.112.246.202) by mx201.mysite4now.com with SMTP; 11 Nov 2003 20:58:04 -0000 From: "Ramesh Sabeti" To: "'Apache Torque Users List'" Subject: RE: How to update multiple rows Date: Tue, 11 Nov 2003 12:58:55 -0800 Message-ID: <000b01c3a896$9ebc7ee0$800101df@rsccd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 In-Reply-To: <20031111205306.32648.qmail@web12402.mail.yahoo.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I understand that. I can't explain how the example works. Looking at it, I'd say that both c.add(...) calls add the criteria to the WHERE clause. How do you interpret it? =20 Criteria c =3D new Criteria(); c.add(BookPeer.BOOK_PRICE, 0); c.add(BookPeer.BOOK_ID, 100, Criteria.LESS_THAN); BasePeer.doUpdate(c); > -----Original Message----- > From: Tulsi Das [mailto:quixote_arg@yahoo.com] > Sent: Tuesday, November 11, 2003 12:53 PM > To: Apache Torque Users List > Subject: RE: How to update multiple rows >=20 > The criteria is just a hashtable extension to store all the mappings, > later on, when calling the methods, the SQL generator knows where to > insert them ( if you are lucky ;) ) >=20 > tulsi >=20 > --- Ramesh Sabeti escribi=F3: > > I meant in the example provided by Bill. If you set the criteria as > > suggested, Torque would use it in the WHERE clause and not in the SET > > clause, right? > > > > > -----Original Message----- > > > From: Tulsi Das [mailto:quixote_arg@yahoo.com] > > > Sent: Tuesday, November 11, 2003 12:45 PM > > > To: Apache Torque Users List > > > Subject: RE: How to update multiple rows > > > > > > It doesn=B4t know untill you call > > > > > > doSelect() > > > or > > > doUpdate() > > > or even > > > doDelete() methods > > > > > > that=B4s why it=B4s only called "Criteria" > > > > > > regards > > > > > > Tulsi > > > > > > --- Ramesh Sabeti escribi=F3: > > > > How does torque know that c.add(BookPeer.BOOK_PRICE, 0) is to SET > > a > > > > value and not for comparison purposes? > > > > > > > > > -----Original Message----- > > > > > From: Bill Leng [mailto:wleng@metatomix.com] > > > > > Sent: Tuesday, November 11, 2003 6:18 AM > > > > > To: Apache Torque Users List > > > > > Subject: Re: How to update multiple rows > > > > > > > > > > You can do something like this > > > > > Criteria c =3D new Criteria(); > > > > > c.add(BookPeer.BOOK_PRICE, 0); > > > > > c.add(BookPeer.BOOK_ID, 100, Criteria.LESS_THAN); > > > > > BasePeer.doUpdate(c); > > > > > > > > > > Ramesh Sabeti wrote: > > > > > > > > > > >I have a very simple question: How do you do something like > > this > > > > with > > > > > >Torque? > > > > > > > > > > > > Update book set book_price =3D 0 where book_id < 100 > > > > > > > > > > > >Wish there were more online resources. > > > > > > > > > > > >Thanks, > > > > > > > > > > > >Ramesh. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >--------------------------------------------------------------------- > > > > > >To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org > > > > > >For additional commands, e-mail: > > torque-user-help@db.apache.org > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Bill Leng > > > > > Sr. Software Engineer > > > > > Metatomix, Inc. > > > > > Tel: (901)261-8911 > > > > > Fax: (901)261-8901 > > > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > > To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org > > > > > For additional commands, e-mail: torque-user-help@db.apache.org > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org > > > > For additional commands, e-mail: torque-user-help@db.apache.org > > > > > > > > > > ------------ > > > =A1Ayud=E1 a los chicos navegando! > > > En noviembre, Yahoo! dona un plato de comida por cada nuevo usuario > > que > > > nevegue gratis con Yahoo! Conexi=F3n. > > > Conectate ya en http://conexion.yahoo.com.ar > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org > > > For additional commands, e-mail: torque-user-help@db.apache.org > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org > > For additional commands, e-mail: torque-user-help@db.apache.org > > >=20 > ------------ > =A1Ayud=E1 a los chicos navegando! > En noviembre, Yahoo! dona un plato de comida por cada nuevo usuario que > nevegue gratis con Yahoo! Conexi=F3n. > Conectate ya en http://conexion.yahoo.com.ar >=20 > --------------------------------------------------------------------- > To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org > For additional commands, e-mail: torque-user-help@db.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: torque-user-unsubscribe@db.apache.org For additional commands, e-mail: torque-user-help@db.apache.org