如何使用 Perl 和 DBI 将包含特殊字符的数据正确插入数据库字段?

发布于 2024-09-07 17:22:57 字数 146 浏览 6 评论 0原文

我有一个表单,与我想发布到数据库中的字段的本网站上的发布问题/评论不同。

但是,如果有人在其中放置诸如 @#;"| 之类的特殊字符,则失败或未正确插入。有没有一种方法可以将所述数据插入数据库,而 Perl 不会尝试将某些字符视为运算符?

I have a form, not unlike the post question/comment on this site that I want to post to a field in a database.

However if someone where to put special characters such as @#;"| either fails or does not insert correctly. Is there a way to insert said data into a database without Perl trying to treat certain characters as operators?

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

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

发布评论

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

评论(1

滥情哥ㄟ 2024-09-14 17:23:17

您可以使用 quote 数据库处理方法。引用文档:

报价

$sql = $dbh->quote($value);
$sql = $dbh->quote($value, $data_type);

引用字符串文字以用作 SQL 语句中的文字值,
通过转义包含的任何特殊字符(例如引号)
在字符串内并添加所需类型的外引号
标记。

$sql = sprintf "从 bar WHERE baz = %s 中选择 foo", $dbh->quote("不要");

更好的做法是使用占位符并绑定值:

$dbh->do("INSERT INTO foo VALUES(?)", undef, "@#;|");

You could use the quote database handle method. To quote the documentation:

quote

$sql = $dbh->quote($value);
$sql = $dbh->quote($value, $data_type);

Quote a string literal for use as a literal value in an SQL statement,
by escaping any special characters (such as quotation marks) contained
within the string and adding the required type of outer quotation
marks.

$sql = sprintf "SELECT foo FROM bar WHERE baz = %s", $dbh->quote("Don't");

A better practice is to use placeholders and bind values though:

$dbh->do("INSERT INTO foo VALUES(?)", undef, "@#;|");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文