RE: How to extract columnNames values

2004-07-13 Thread Indra Gunawan
ck out the hibernate forums on hibernate.org. Regards, David -Original Message----- From: Indra Gunawan [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 2:27 AM To: 'Struts Users Mailing List' Subject: How to extract columnNames values Dear Hibernate Users, I want to write a compone

How to extract columnNames values

2004-07-13 Thread Indra Gunawan
Dear Hibernate Users, I want to write a component or hopefully find one if there is any that can create a Swing table model based on query results . I could achieve this using resultset metadata (jdbc brute force way) . And I want to use Hibernate to do the same . But the difficulty is Hibernate

How to extract columnNames values

2004-06-10 Thread Indra Gunawan
Dear Hibernate Users, I want to write a component or hopefully find one if there is any that can create a Swing table model based on query results . I could achieve this using resultset metadata (jdbc brute force way) . And I want to use Hibernate to do the same . But the difficulty is Hibernate

Oracle 10g Apps Dev Framework

2004-05-21 Thread Indra Gunawan
Hi all, I want to implement business service layer using session bean and eliminate the need for entity beans as I plan to replace them with Hibernate . But, when I write the session bean component ... I don't have support from ADF for implementing Create, Remove, and the like only iterator f

RE: Row

2004-04-14 Thread Indra Gunawan
if you want the transfer of data is also limited , you have to use paging techniques ... there are choices and one of them is to use iBATIS DataLayer component . you can fetch records starting from row n and fetch x records using SqlMap class . -Original Message- From: Andrew Hill [mailto:

RE: Row

2004-04-14 Thread Indra Gunawan
If you use jsp pages you can try taglib from http://jsptags.com/tags/navigation/pager/index.jsp good luck -Original Message- From: Iwan Soenarto (IT) [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 10:01 AM To: [EMAIL PROTECTED] Subject: Row I have 100 records. How do I limit t

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

2004-04-11 Thread Indra Gunawan
Hibernate will be great if you want to port database from one platform to another as it relies on its own QL (not SQL) ... just like entity bean CMP . -Original Message- From: Mathew Ring [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 10:38 PM To: [EMAIL PROTECTED] Subject: RE:

RE: Dealing with large ResultSets??

2004-03-29 Thread Indra Gunawan
The most reasonable solution is to use paging . You can display your range as in Google search page and each unit contains say ... 100 records . Then using iBATIS you can specify position and max records you want to retrieve . But , there are also improvement you can do in your query . For example