如何将带有字符串对象的 arrayList 设置为准备好的语句
我有一个数据结构的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您将使用普通 JDBC,因此批处理语句可能对您有用:
所以您已有的想法对我来说似乎很好。您可以在这里找到更多信息:
http://java.sun.com/developer/Books/ JDBC教程/
Since you're going to use plain JDBC, a batch statement might be useful to you:
So the idea you already have seems good to me. You'll find more info here:
http://java.sun.com/developer/Books/JDBCTutorial/