C数据库线程安全
我正在使用 CDatabase 与 ODBC 数据库建立连接。我担心的是
CDatabase
和相关类的操作线程安全吗?
其中一个线程将在程序启动时打开一个连接(使用 OpenEx),然后其他线程将执行 CRUD 数据库操作。在没有任何线程问题的情况下,这可以正常工作吗
?我在哪里可以获得更多有关这方面的信息?
I am using CDatabase
to establish connection with a ODBC database. My concerns are
Are operations on CDatabase
and related classes thread safe?
one of threads will open a connection (using OpenEx
) on program stratup and then other threads will perform CRUD database operations. Will thiswork fine without any threading issues
Where could I get more information on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CDatabase
上的操作不是完全线程安全的,CRecordset
更不安全。每个线程都应该使用它自己的 CRecordset 对象实例。http://msdn.microsoft.com/en-us/library/xx6t3y0x.aspx
Operations on
CDatabase
are not fully thread safe, andCRecordset
even less. Each thread should use it's own instance of aCRecordset
object.http://msdn.microsoft.com/en-us/library/xx6t3y0x.aspx