Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> how pass french characters or extended characters to a stored procedure by odbc
how pass french characters or extended characters to a stored procedure by
odbc
error: ORA-01756: quoted string not properly terminated
une chaine entre apostrophhes ne se termine pas correctement
oracle Retrieving extended characters thru ODBC
PL/SQL procedure parameters
hi, i hope you can help to me.
I have a problem with french and german characters. i have a little stored procedure than return what i'm passing to him.
see these example: (the second one work fine on plsql)
first exemple:
i receive this error:
Error: ORA-01756: quoted string not properly terminated (State:S1000, Native Code: 6DC)
French_France.WE8ISO8859P1
but without any success..
i trying all latest odbc driver from oracle website.
second exemple:
SQL> variable mytest refcursor;
SQL> exec ksp_test (0,'HéLLO ORACLE',:MYTEST);
PL/SQL procedure successfully completed. SQL> PRINT MYTEST; Your Database Value
CREATE OR REPLACE PACKAGE KSP_PLSQLRSETPKG
AS
TYPE RCT1 IS REF CURSOR;
END;
;
CREATE OR REPLACE PROCEDURE KSP_TEST (
PATCH INT DEFAULT 0,
PONC VARCHAR2,
RC1 IN OUT KSP_PLSQLRSETPkg.RCT1
)
AS
BEGIN
OPEN RC1 FOR
SELECT PONC "Your Database Value" FROM DUAL;
FROM DUAL;
RETURN ;
END;
Received on Wed Jun 12 2002 - 14:07:27 CDT
![]() |
![]() |