RE: p6spy in webapp

2004-02-19 Thread Cory L Hubert
http://www.p6spy.com/documentation/install.htm#tomcat The properties file is the spy.properties file (a sample should be in your p6spy download). You can put that anywhere in the classpath. P6Spy will use the classloader to pick it up. In the spy.properties you'd speci

RE: p6spy in webapp

2004-02-19 Thread Cory L Hubert
http://www.p6spy.com/documentation/install.htm#tomcat The properties file is the spy.properties file (a sample should be in your p6spy download). You can put that anywhere in the classpath. P6Spy will use the classloader to pick it up. In the spy.properties you'd specif

Create Table in OJB

2003-09-16 Thread Cory L Hubert
I need to develop an application that will create tables dynamically. Is there a way to do that in OJB without using QueryBySQL. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

MS SQL Server Sequence Solution

2003-07-15 Thread Cory L Hubert
My Dev group is planning on implementing the MSSQL sequence solution describe here http://db.apache.org/ojb/sequencemanager.html#Oracle-style%20sequencing One of our developers raised a concern about using this method within transactions. What happens during a rollback?

select column criteria

2003-04-02 Thread Cory L Hubert
Hey I am trying to limit the columns returned in a select query. Instead of doing a "select * from table" I'd like to do a "select id from table" the reason is that the table is HUGE. And returning all the rows would probably kill the VM. Anyone know how?

How to do Max Query

2003-03-20 Thread Cory L Hubert
I am trying to do the equivilant of select * from account where date_last_updated IN (Select max(date_last_updated) from account ) IN OJB. I am using the PersistanceBroker. Does anyone know who to do this? - T