Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> INSERT unicode parameters error
Working with myTable:
create table myTable( Name NVARCHAR2(127) not
null)
I try to insert a new row with an ODBC application with two different
methods:
-with a dynamic parameter:
INSERT INTO mytable (Name) VALUES (?)
I get "character set mismatch"
-with a hard coded parameter:
INSERT INTO mytable (Name) VALUES (N'toto')
that's ok
What's wrong with the first method ??
ODBC driver = SQORA32.DLL(08.00.5600) on NT 4.0
thanks,
vincent
Received on Thu Sep 02 1999 - 07:37:59 CDT
![]() |
![]() |