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.
如何创建一种方法来播放数组中的所有数据,并创建一段时间或将来自该数组的所有记录包含在 BD 上。由于每个记录器由数据库表中的两列组成。我有 1000 条记录。我如何将这个阵列插入播放给 BD?谢谢你
您可以使用准备好的语句(搜索 java.sql.PreparedStatement)来定义通用 INSERT 语句,并循环您的数据以放置每个数据的每个特定值,然后执行准备好的语句。