This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我有一个使用 OpenMP 并行化的 c++ 中的 for 循环。在循环中,我正在访问一个 sql server 数据库。有人告诉我,如果我在线程之间共享相同的 ODBC 驱动程序,数据访问将不会是并行的。如果我为每次迭代定义不同的驱动程序,那将非常耗时。(?)有没有办法让不同的线程以安全的并行方式访问相同的数据?