Yitzchok / subsonicproject

Automatically exported from code.google.com/p/subsonicproject
0 stars 0 forks source link

ScriptData incorrect for unicode columns #64

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Output generated by sonic.exe does not prefix unicode columns with N.

What steps will reproduce the problem?
1. Use sonic.exe scriptdata on a database with unicode columns (for example
northwind, Categories table)

What is the expected output? What do you see instead?
Expected:
INSERT INTO [Categories] ([CategoryID], [CategoryName], ...) VALUES (1,
N'Beverages', ....)
But I get:
INSERT INTO [Categories] ([CategoryID], [CategoryName], ...) VALUES (1,
'Beverages', ....)

Original issue reported on code.google.com by marell...@gmail.com on 15 Apr 2009 at 9:45

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by canof...@gmail.com on 4 May 2009 at 8:31

GoogleCodeExporter commented 9 years ago
Thanks for the patch! The changes will be reflected in my next check-in...

Original comment by canof...@gmail.com on 4 May 2009 at 8:34

GoogleCodeExporter commented 9 years ago
Patch applied in Revision 522.

Original comment by canof...@gmail.com on 4 May 2009 at 9:06