Please help me:
I want create dbproc with unicode parameter, but
the following sql
CREATE DBPROC test (IN par1 VARCHAR(20) UNICODE) AS RETURN 1;
is generate error message : Syntax error or access violation;-3008 pos(42);
invalid keyword or missing delimiter
if i try the next then everyting is ok
CREATE DBPROC test (IN par1 VARCHAR(20)) AS RETURN 1;
parameter _UNICODE is YES, and i can create table with unicode filed.
|