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

Diego Plentz (JIRA) noreply at atlassian.com
Fri Apr 18 16:16:33 EDT 2008


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-2646?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Diego Plentz reassigned HHH-2646:
---------------------------------

    Assignee: Diego Plentz

> Informix 10 dialect with BLOB/CLOB support
> ------------------------------------------
>
>                 Key: HHH-2646
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2646
>             Project: Hibernate3
>          Issue Type: Improvement
>          Components: core
>    Affects Versions: 3.2.4.sp1
>         Environment: Informix 10
>            Reporter: Thomas Much
>            Assignee: Diego Plentz
>            Priority: Minor
>
> 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.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the hibernate-issues mailing list