Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Invalid
-
DataMapper 1.6.1
-
None
-
C#, Oracle 10.1.5
Description
Hi,
I have the following enumeration:
public enum ESearchProfile
{
temp = 'T',
permanent = 'P'
}
If i want to save an ESearchProfile-value i got an error. The database throws the error "value too large for column" (actual 2, maximum 1). I guess iBatis sends as value 'T to the stored procedure instead of T.
I use a parameterMap with the following line:
<parameter property="Art" column="p_art"/>