[hibernate-issues] [Hibernate-JIRA] Commented: (HHH-2646) Informix 10 dialect with BLOB/CLOB support

Robson Poffo (JIRA) noreply at atlassian.com
Tue Jul 19 07:18:15 EDT 2011


    [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-2646?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=42980#comment-42980 ] 

Robson Poffo commented on HHH-2646:
-----------------------------------

Hello,

I would like to know when this correction will be released on Hibernate final release.

Thanks,

Robson Poffo

> Informix 10 dialect with BLOB/CLOB support
> ------------------------------------------
>
>                 Key: HHH-2646
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2646
>             Project: Hibernate Core
>          Issue Type: Improvement
>          Components: core
>    Affects Versions: 3.2.4.sp1
>         Environment: Informix 10
>            Reporter: Thomas Much
>            Assignee: Diego Plentz
>            Priority: Minor
>         Attachments: Informix10Dialect.java
>
>
> We discovered that Informix 10 works well with mapping types "blob" and "clob" if we use our own dialect that's simply derived from the existing Informix dialect by adding the two missing types:
>     public class Informix10Dialect extends InformixDialect {
>         public Informix10Dialect() {
>             super();
>             registerColumnType( Types.BLOB, "blob" );
>             registerColumnType( Types.CLOB, "clob" );
>         }
>     }
> We suggest adding this new dialect to Hibernate Core. (This is similar to issue HHH-2523, but here "clob" is mapped, too.)

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list