首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Informix >

:Infromix Boolean類型無法出錯

2012-03-06 
求救:Infromix Boolean類型無法出錯各位大俠:informix中運行語句insert into testfile values (8,t)出錯

求救:Infromix Boolean類型無法出錯
各位大俠:

informix中

運行語句insert into testfile values (8,'t')出錯(第二個欄位是boolean類型的)
Error: Could not insert new row into the table. (State:S1000, Native Code: FFFFFEF1)
Error: User Defined Routine (cdb_vgfinsert) execution failed. (State:S1000, Native Code: FFFFD9C1)

運行insert into testfile values (8,'true')也出錯 
Error: It is not possible to convert between the specified 
types. (State:22008, Native Code: FFFFFB14)

請幫一下忙,謝謝!

[解决办法]
1、修改成0、1试试;
2、建立一张表,有BOOLEN类型字段,SELECT 此字段看看结果。


[解决办法]
insert into testfile values (8,'t')
这一句没有问题

表上是不是有触发器啊?
[解决办法]
建议不要用Boolean型,用char(1), check 'Y/N'

热点排行