Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试转义整个字符串以插入 longtext 或 varchar。基本上我有一个包含所有类型的特殊字符和特殊词(例如 LIKE)的字符串,我只想逃避整个事情,以便我可以将它插入到我的 H2 数据库中。
我问了几个朋友,他们说我应该尝试序列化数据。这是将随机字符串插入数据库的正确方法吗?我应该尝试使用准备好的语句来做到这一点吗?
对不起,我是 H2 的新手,对 SQL 不是很好。我在这里先向您的帮助表示感谢!
使用 aPreparedStatement并将字符串作为参数传递。
PreparedStatement
如果您正在寻找有关如何使用 a 的示例PreparedStatement: