you should be able to do this. we are using oracle w/ clob fields here. i know in 
hibernate, you need to use a work around for this, but there should be no issue using 
cmp. 

here is a brief snippet of what our impl class looks like, complete w/ it's xdoclet 
tags. you should make sure you are using the latest oracle drivers as well (i believe 
the lastest is the ojdbc14.jar)


  |    /**
  |     * Returns the data
  |     *
  |     * @return the data
  |     *
  |     * @ejb.interface-method view-type="local"
  |     * @ejb.persistent-field
  |     * @ejb.persistence column-name="DATA"
  |     * @jboss.jdbc-type CLOB
  |     * @jboss.sql-type CLOB
  |     */
  |    public abstract java.lang.String getData();
  | 
  |    /**
  |     * Sets the data
  |     *
  |     * @param data the new data value
  |     * @ejb.interface-method view-type="local"
  |     */
  |    public abstract void setData(java.lang.String data);
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3839709#3839709

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3839709


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to