The script created needs to add the letter N before string of the text being inserted when the field type is nchar or nvarchar. For example, currently the program creates:
INSERT INTO [dbo].[MyTable] ([ID], [SomeField]) VALUES (14 'Text in foreign tongue')
it should be:
INSERT INTO [dbo].[MyTable] ([ID], [SomeField]) VALUES (14 N'Text in foreign tongue')
Otherwise all the inserted text turns into question marks when inserting none English text (Tried with Hebrew and Arabic)
I did not find a setting that fixes this.