Hi Support,
I have a insertion using iBatis previous was working fine. After I downloaded the latest version, I cannot perform insertion. Below is my iBatis configure file. IT's a very simple logic.
insert into Trial_Lot_Mast
PLANTNAME
YYYYWW
Create_Date
Create_By
File_ID
Update_Date
Update_By
)
values
#PLANTNAME:VARCHAR#
#YYYYWW:VARCHAR#
Now()
#create_By:VARCHAR#
#file_ID:VARCHAR#
Now()
#update_By:VARCHAR#
)
|
What's your error message?
Because
# v3.2.116 checks whether varchar column and longvarchar column allows zero length for INSERT operation.
# v3.2.116 checks foreign key constraint for INSERT operation.
Maybe the latest package think your insert value hasn't obeyed some constraint rules.
|