I find out about Sun's RowSet implementation, but I can't find Object Rowset
in this implementation?
Is it possible to develop Object RowSet and is it useful?
I know about O/R tools like Hibernate, but Object RowSet can be useful?
Run SQL query and get Objects, or maybe even run Object query (like EJB or
Hibernate or JDO have) and get Objects.
No XML mapping mess and simmilar, like with EJB or Hibernate or JDO?
frebe - 27 Feb 2005 17:48 GMT
> I know about O/R tools like Hibernate, but Object RowSet can be useful?
> Run SQL query and get Objects, or maybe even run Object query (like EJB or
> Hibernate or JDO have) and get Objects.
> No XML mapping mess and simmilar, like with EJB or Hibernate or JDO?
Look at http://butler.sourceforge.net. Butler has a RecordList class
that is a List implementation containing Records. You obtain a record
list by creating and running an instance of Query. With the Query
object, you create a select statement using API calls, not a query
string.
/Fredrik