使用简单引号创建 XML SCHEMA COLLECTION 问题

发布于 2024-11-24 22:20:33 字数 360 浏览 1 评论 0原文

我正在尝试在 Microsoft SQL Server 中执行以下操作:

CREATE XML SCHEMA COLLECTION [dbo].[XYZSchema] AS 
N'schema content'
GO 

问题是 schema content 在正则表达式中包含引号 (') 并且破坏了指令:

 N' ..... <xsd:pattern value="\w+([-+.'] ..... '

有没有办法转义引号并保持正则表达式的正确性,或者以其他方式声明 CREATE XML SCHEMA COLLECTION 的表达式?

I'm trying to do the following in Microsoft SQL Server:

CREATE XML SCHEMA COLLECTION [dbo].[XYZSchema] AS 
N'schema content'
GO 

The problem is that schema content contains a quote (') in a regexp and is breaking the instruction:

 N' ..... <xsd:pattern value="\w+([-+.'] ..... '

Is there a way to escape the quote and maintain the correctnes of the regexp, or declare the Expresion of CREATE XML SCHEMA COLLECTION in some other way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

分开我的手 2024-12-01 22:20:33

您正在编写 varchar(好吧,nvarchar)文字。在此类文字中转义单引号的方法是将它们加倍:

N' ..... <xsd:pattern value="\w+([-+.''] ..... '

来自 Constants< /a>:

如果单引号括起来的字符串中包含嵌入式单引号,则用两个单引号表示嵌入式单引号。

You're writing a varchar (well, nvarchar) literal. The way to escape single quotes within such a literal is to double them up:

N' ..... <xsd:pattern value="\w+([-+.''] ..... '

From Constants:

If a character string enclosed in single quotation marks contains an embedded quotation mark, represent the embedded single quotation mark with two single quotation marks.

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