Hi all,
I need to save greek letters input by the user into the SQL Server database.
Table columns are of type nvarchar
Datawindow Update does not work as it saves ??? instead of the letters
I tried to create the update SQL statement with update table_name set columnname = N'greek letter string' and passed the string to a stored procedure
DECLARE lp_sql PROCEDURE FOR sp_execute_sql
@as_sql = :ls_sql
using SQLCA;
Execute lp_sql;
Inside the procedure I execute the passed sql with EXEC @as_sql
It still does not work. Saves ???
I would appreciate if I could get any idea how I can store the greek letters
Thanks
Vinay