- Vinay Batra
- PowerBuilder
- Monday, 27 January 2020 04:07 PM UTC
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
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.