RE: make DB call for every new connection

2006-01-05 Thread Steven Pannell
Hi Nathan, Well in oracle you can set the CLIENT_INFO user variable for a session. BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO ('JOB UPDATE STOCK'); END; This means you can view which applications are running on your database by querying the session view client_info column. If you have many ja

The future of iBatis

2006-01-05 Thread Jose Luis Monteagudo
Hello all, friends, I'm working on my projects with iBatis two years ago more or less, and I found that iBatis was the best way to map my SQL's to Objects. Now we have a new persistence standar, EJB3, that promises that persistence will be very easy to implement in our new projects. EJB3 is quite s

Re: The future of iBatis

2006-01-05 Thread Clinton Begin
iBATIS will always be different for one simple reason:  iBATIS is not an ORM.  As you've said, EJB3 is basically a specification designed by a committee including Hibernate, Toplink and other vendors.  All the reasons you've chosen to use iBATIS will stand true when you compare against EJB3, Hib

Re: sql joins in ibatis

2006-01-05 Thread radha rukmani
Hi   Can you please give more elaborate explanation.   I changed person.java to look like   public class Person{  private int id;  private String firstName;  private String lastName;  private Date birthDate;  private double weightInKilograms;  private double heightInMeters;  private int dept

RE: make DB call for every new connection

2006-01-05 Thread seyhan.basmaci
if your db side procedures depends on some package settings you MUST process connection just after getting connection from connection pool, may be you can use AOP (like Spring AOP) for intercepting connection, fist you must know which class and method is gettting connection , then define a po

Re: sql joins in ibatis

2006-01-05 Thread Nathan Maves
Where to start.ClassNotFound is a java error.  You have either misspelled you class name and or package.  Check that you full class name including package is correct.The second problem that I see is in your result map.  You specify dept.name when there is no property named that in your Dept.cla

Abator installation

2006-01-05 Thread Sergey Livanov
Can I install abator on the WebSphere Studio 5.1.2 ? -- regards, Sergey mailto:[EMAIL PROTECTED]

Re: sql joins in ibatis

2006-01-05 Thread radha rukmani
Thanks Nathan,   You are right, I changed the resulMap as, dept.deptName,   Thanks Nathan Maves <[EMAIL PROTECTED]> wrote: Where to start.ClassNotFound is a java error.  You have either misspelled you class name and or package.  Check that you full class name including package is corr

Re: Abator installation

2006-01-05 Thread Jeff Butler
No (sorry).  Abator is dependant on Eclipse 3.0 or higher, so it won't work on WSAD.  It does work well in Rational Application Developer (WSAD's successor).   The next version of Abator will be able to run outside of Eclipse, so that would be an answer for WSAD, but it won't be a plugin.  It will

Re[2]: Abator installation

2006-01-05 Thread Sergey Livanov
Hi, Jeff. Thank you a lot for your answer!, Can I ask you to send the example of easy table to me. ( employee, name, age ). -- regards, Sergey mailto:[EMAIL PROTECTED] JB> No (sorry). Abator is dependant on Eclipse 3.0 or higher, so it won't work JB> on WSAD.

CMT and iBatis transactionManager

2006-01-05 Thread Jay Blanton
I am trying to introduce iBatis into our current architecture to simplify the DAO layer.   We currently use a SLSB as a Session Facade that may contact a DAO EJB (really a Transfer Object Assembler) and it contacts individual DAOs (written with JDBC) to create composite Transfer Objects.  Transacti