ORA-01461: can bind a LONG value only for insert into a LONG column-Occurs when querying

前端 未结 15 1813
野的像风
野的像风 2020-11-30 02:44

When I try to query objects, I end up with following error:

ORA-01461: can bind a LONG value only for insert into a LONG column

Could someo

15条回答
  •  余生分开走
    2020-11-30 03:13

    I had the same problem with Entity Framework database first on all CLOB columns.

    As a workaround, I filled the text values with spaces to be at least 4000 in width in insert operations (did not come with any better solution).

提交回复
热议问题