如何将带有字符串对象的 arrayList 设置为准备好的语句

发布于 2024-12-03 20:22:05 字数 127 浏览 0 评论 0原文

我有一个数据结构的java ArrayList(字符串名称,字符串电子邮件)。任务是将列表保存在数据库中。我的想法是使用 for 循环并使用 statements.setString( i, name) 等。有没有更好的解决方案。提前致谢。

I have a java ArrayList of a datastructure (string name, string email). The task is, to save the list in the database. I have an approach in my mind to use a for loop and use statement.setString( i, name) etc. Is there any better solution. Thanks in advance.

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

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

发布评论

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

评论(1

单身狗的梦 2024-12-10 20:22:05

由于您将使用普通 JDBC,因此批处理语句可能对您有用:

PreparedStatement stmt = connection.prepareStatement(
  "INSERT INTO xx (name, email) VALUES (?, ?)");

for (MyStructure s : list) {
  stmt.setString(1, s.name);
  stmt.setString(2, s.email);
  stmt.addBatch();
}

stmt.executeBatch();

所以您已有的想法对我来说似乎很好。您可以在这里找到更多信息:

http://java.sun.com/developer/Books/ JDBC教程/

Since you're going to use plain JDBC, a batch statement might be useful to you:

PreparedStatement stmt = connection.prepareStatement(
  "INSERT INTO xx (name, email) VALUES (?, ?)");

for (MyStructure s : list) {
  stmt.setString(1, s.name);
  stmt.setString(2, s.email);
  stmt.addBatch();
}

stmt.executeBatch();

So the idea you already have seems good to me. You'll find more info here:

http://java.sun.com/developer/Books/JDBCTutorial/

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