如何使用 Perl 和 DBI 将包含特殊字符的数据正确插入数据库字段?
我有一个表单,与我想发布到数据库中的字段的本网站上的发布问题/评论不同。
但是,如果有人在其中放置诸如 @#;"|
之类的特殊字符,则失败或未正确插入。有没有一种方法可以将所述数据插入数据库,而 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
quote
数据库处理方法。引用文档:更好的做法是使用占位符并绑定值:
You could use the
quote
database handle method. To quote the documentation:A better practice is to use placeholders and bind values though: