[
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1483?page=c...
]
adam commented on HHH-1483:
---------------------------
Wow, I can't believe this issue has been open for over 2 years! I'm using EJB 3
with result set mapping to a text field and am getting the same error. I'm using
MySQL5InnoDBDialect with MySQL Driver 5.0.8, so this dialect does not solve the problem as
stated above.
Is there any way we can get the priority jumped up on this one. Not being able to
retrieve a text column is a pretty big deal (in fact is a blocker for us).
MySQL5: No Dialect mapping for JDBC type: -1
--------------------------------------------
Key: HHH-1483
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1483
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.1.2
Environment: MySQL 5.0.18-nt
Reporter: Sergey Vladimirov
Priority: Minor
MySQL5: No Dialect mapping for JDBC type: -1
SELECT answpos,answer FROM votes_answers WHERE question=? ORDER BY answpos
mysql> describe votes_answers;
+----------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------+------+-----+---------+-------+
| question | int(11) | NO | MUL | | |
| answpos | int(11) | NO | | | |
| answer | text | YES | | NULL | |
+----------+---------+------+-----+---------+-------+
mysql> describe temp;
+---------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------+---------+------+-----+---------+-------+
| answpos | int(11) | NO | | 0 | |
| answer | text | YES | | NULL | |
+---------+---------+------+-----+---------+-------+
Please, let me know what to add to MySQL5Dialect :)
Will it be ok to add? :
registerColumnType( Types.LONGVARCHAR, "text" );
--
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....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira