Link to home
Start Free TrialLog in
Avatar of sakthikumar
sakthikumar

asked on

How to refer columns with lower case, columns of blob/clob datatype in a trigger?

I am creating a trigger for a table

where in the columns are in lower case like
description
title
even when I refer as :new.description or :new.title
I am getting error bad bind variable.
How to refer these in triggers.

Also, Is it possible to get new or old blob columns in a trigger.

Thanks,
Sakthi.




Avatar of OP_Zaharin
OP_Zaharin
Flag of Malaysia image

- use doublequote to wrap the lowercase columnnames eg:

SELECT "description", "title" FROM tablename
Avatar of Naveen Kumar
Can you give the full trigger code here to review ?
ASKER CERTIFIED SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial