How can I make CF9's ORM (aka Hibernate) save strings as unicode string?

I.e. use prefix N'string' in SQL Server

Thanks!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted
<cfproperty name="showName" type="string" sqltype="nvarchar(50)" />
link|improve this answer
but the generated SQL statement still does Not have the N prefix though. Are you saying as long as the sqltype is nVarChar, I don't need the N prefix? – Henry Feb 15 '11 at 22:14
Right, and also read this old blog post: sustainablegis.com/blog/cfg11n/… – scrittler Feb 15 '11 at 22:20
1  
And a more recent Google Groups discussion (you should subscribe to this group if you're going to do a lot more work with CF ORM) groups.google.com/group/cf-orm-dev/browse_thread/thread/… – scrittler Feb 15 '11 at 22:22
ok, I will try and let you know if it works. Thx – Henry Feb 15 '11 at 22:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.