Subject Use of params in where clause on 'BLOB SUB_TYPE 1' fields?
Author flipmooooo
Hi,

Ik get 'internal error' on executing the following query below.
DESCRIPTION is a 'BLOB SUB_TYPE 1' field. Is this syntax supported?
When i use constants instead of params the query works.

select
ID
from
ART_OMS
where
DESCRIPTION = :AString

This works.

select
ID
from
ART_OMS
where
DESCRIPTION = 'blablabla'

Greetings,
Filip Moons