RE: Caching data from resultset

2004-06-16 Thread Freddy Villalba Arias
Hi, Yes, indeed. Postgres has something similar. Regards, Freddy. -Mensaje original- De: Pilgrim, Peter [mailto:[EMAIL PROTECTED] Enviado el: miƩrcoles, 16 de junio de 2004 11:51 Para: 'Struts Users Mailing List' Asunto: RE: Caching data from resultset > -Original Message- > F

RE: Caching data from resultset

2004-06-14 Thread Freddy Villalba Arias
I'm sorry, my reply should have been directed to Chris, not Leon. My apologies, Leon. Regards, Freddy. -Mensaje original- De: Freddy Villalba Arias Enviado el: lunes, 14 de junio de 2004 14:22 Para: Struts Users Mailing List Asunto: RE: Caching data from resultset Hi Leon, I su

RE: Caching data from resultset

2004-06-14 Thread Freddy Villalba Arias
Hi Leon, I suppose that, since you're talking about caching the ResultSet, you've already given a thought to the amount of data that you'd be handling, consider it to be feasible and reasonable to cache it. This said, why don't you take a look at CachedRowSet? http://java.sun.com/j2se/1.5.0/do

Job

2004-05-05 Thread Freddy Villalba Arias
Sorry for the spam, everybody. Didn't mean to reply to all of you. Regards, Freddy.

RE: [OT] Job-Posting

2004-05-05 Thread Freddy Villalba Arias
Does it require moving there or is distance working a possibility? What's the job description / responsabilities? Salary? (Euros, please) -Mensaje original- De: Oliver Thiel [mailto:[EMAIL PROTECTED] Enviado el: miƩrcoles, 05 de mayo de 2004 19:35 Para: Struts Users Mailing List CC: [EM

RE: Struts, Business Logic, DAOs

2004-04-15 Thread Freddy Villalba Arias
Hi Paul, I would implement "BusinessRule"s (make that "UseCase"s?) objects that encapsulate the BL behind your app. Then, in an "upper" layer, I would implement "TransactionalOperation"s objects that define a transactional operation (thus encapsulating the begin and the end of your transaction), w

RE: [slightly OT] defensive strategy

2004-04-13 Thread Freddy Villalba Arias
Hi, Just a thought since I have never implemented something like this... I'd prevent users from submitting more than 1 vote from the same IP during a (configurable) period of time. I'd store all votes received in a DB. I'd implement some kind of police-entity, like, for instance, a VoteInspecto

RE: ORM Tools (Ibatis, Hibernate, OJB....)

2004-04-06 Thread Freddy Villalba Arias
Hello, Since you're already discussing this (and it is not the first time, from what I've seen on the ml)... I've used ORM tools (OJB, 2 in-house implementations) but it has always been in small-sized projects (70- tables). It has always been a "good" choice. Has anybody worked in a project that

RE: Connection Pooling

2004-04-06 Thread Freddy Villalba Arias
These are the main 2 reasons that come to me: (1) You are not "closing" the connection once you've finished using it. This signals the pool's manager when to re-assign that connection (i.e. you've finished, so it can be used by someone else). (2) Your connection pool is not big enough. HTH, Fred

RE: Filters..

2004-04-06 Thread Freddy Villalba Arias
more specific about my queries :) -----Original Message----- From: Freddy Villalba Arias [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 7:53 PM To: Struts Users Mailing List Subject: RE: Filters.. Whoa, talk about general questions!!! :) I suppose it depends on what you want them for and the

RE: Filters..

2004-04-06 Thread Freddy Villalba Arias
Whoa, talk about general questions!!! :) I suppose it depends on what you want them for and the overall context... Could you be more specific? Cheers, Freddy. -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Enviado el: martes, 06 de abril de 2004 16:23 Para: [EMAIL

RE: changing two frames at one time

2004-04-01 Thread Freddy Villalba Arias
(When I said response, I meant the GET / POST action) -Mensaje original- De: Freddy Villalba Arias Enviado el: jueves, 01 de abril de 2004 16:05 Para: Struts Users Mailing List Asunto: RE: changing two frames at one time Hi Otto, IMHO, for the sake of transparency / independence

RE: changing two frames at one time

2004-04-01 Thread Freddy Villalba Arias
Hi Otto, IMHO, for the sake of transparency / independence, Struts should know nothing about where (within a web document) is the response being targeted. Why don't you use JavaScript for "hearing" the click on the "child" frame from the "root" document and then load on each frame the URL you wan

RE: Dealing with large ResultSets??

2004-03-29 Thread Freddy Villalba Arias
I'm not sure, but I believe that OJB provides "proxy" objects (I believe that's how they call them) specifically for this kind of problems. I don't know if they work for ResultSet-s that big. However, at least, they seem to claim so. Maybe there is something similar in other O/R mapping tools... -

RE: [OT] JTA, JDBC and data persistence

2004-03-29 Thread Freddy Villalba Arias
x27;s > hideously simple. I suspect your non database literate developers will > be > able to understand it faster than they will JDBC. (If HQL is the > holdup, > iBatis solves that problem). > > I mean, how tough is something like this to understand? > > Session sess

RE: [OT] JTA, JDBC and data persistence

2004-03-29 Thread Freddy Villalba Arias
sh(); session.connection().commit(); this.releaseSession(); -Joe > -Original Message- > From: Freddy Villalba Arias [mailto:[EMAIL PROTECTED] > Sent: Monday, March 29, 2004 2:34 AM > To: Struts Users Mailing List > Subject: RE: [OT] JTA, JDBC and data persistence > &

RE: [OT] JTA, JDBC and data persistence

2004-03-28 Thread Freddy Villalba Arias
ually provide support for transactions, in addition to providing a mapping layer for your objects. Freddy Villalba Arias wrote: > Hello everybody, > > > > An off-topic question (it's Friday, I hope you accept it!): > > > > I want to implement a Business O