I am new to HSQL and BASE. I am trying to update a column in my table with the following commands using the Direct SQL mode.
I receive the following error " Unexpected token: “ in statement [UPDATE ]"
Here is my code:
UPDATE “HookDescriptor"
SET “HookDescriptor".“DescrTest” = “Temp”
WHERE “HookDescriptor”.“Use_ID” > 2
DescrTest type is Text, Use_ID type is Integer
What am I missing?