在 SQL Server 中保存上标符号

发布于 2024-10-16 20:48:24 字数 114 浏览 5 评论 0原文

我想通过我的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔戏命师 2024-10-23 20:48:24

将它们存储在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文