gpt4 book ai didi

c# - 使用c#在postgresql DB中插入错误

转载 作者:行者123 更新时间:2023-11-29 12:31:35 24 4
gpt4 key购买 nike

我想在表格的字段中插入字符串 'xxx'xxx'。 ' 字符中的问题。我如何插入这个字符?

最佳答案

您需要复制单引号:

insert into foo (col_name)
values
('xxx''xxx');

但是你应该研究准备好的语句,它不仅可以让事情变得更容易,还可以保护你免受 SQL 注入(inject)(我不懂 C#,所以我无法帮助你了解细节)。

关于c# - 使用c#在postgresql DB中插入错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14938303/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com