java 1.4:如何使用executeBatch一次点击即可在数据库中插入多条记录?
我正在从文件中读取记录数据(记录数最多可达数千)。现在我想将每条记录插入到数据库中。我想一次插入所有记录以减少性能损失。如果我在语句对象上使用 addBatch(String sqlQuery ),我的 sql 查询应该是静态的。但在我的情况下,查询将是非静态的。请告诉我可能的性能最佳的解决方案?
平台 爪哇1.4 SQL Server 2000。
i am reading records data from a file(records count can be up to thousands ).Now i want to insert each record in to database.I want to insert all of records in one hit to reduce performance hit. If i use addBatch(String sqlQuery ) on statment object,my sql query should be static .but in my case query will be non static.Please tell me possible solutions with best performance?
platform
java 1.4
sql server 2000.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Wiki
SQL 功能(自 SQL-92 起)是使用 row值构造函数在单个 SQL 语句中一次插入多行:
From Wiki
A SQL feature (since SQL-92) is the use of row value constructors to insert multiple rows at a time in a single SQL statement: