在 SQL Server 中保存上标符号
我想通过我的 .Net Windows 应用程序将 alpha、beta、theta 和所有超级脚本符号保存在 SQL Server 数据库中。我需要再次获取并希望在标签控件上显示。我必须做什么?我正在使用 C#。
I want to save alpha, beta, theta and all super script symbols in SQL Server database through my .Net windows application. And I need to fetch again and want to show on label control. What do I have to do? I am using C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将它们存储在 sql server 中的 nchar(n) 或 nvarchar(n) 字段中。不要忘记字符串的 N' ' 表示法。要表示标签中的字符,您需要 unicode 字体。
我认为存储、检索字符串值以及将字符串值放置在标签上的其他操作都是相同的。
Store them in a nchar(n) or nvarchar(n) field in sql server. Don't forget the N' ' notation for strings. To represent the characters in you label, you'll need a unicode font.
I think everything else is the same for storing, retrieving and placing string values on a label.