两个多线程对象可以从数据库调用两个不同的存储过程吗?
这是我的第一条消息。
我正在尝试创建一个 Windows 服务,它有三个表,其中两个表存储坐标,最后一个存储来自 google api 的地址信息。系统有两个调用 SP 的线程,该 SP 调用用于将数据发布到 google 的参数值。另一个SP用于存储检索到的数据。但我需要对我的线程进行编码以使用不同的 SP(完全执行相同的工作)。
我如何编码我的线程类以使其行为与其他线程类不同? (一个使用 SP1,一个使用 SP2)
谢谢..
This is my first message.
I am trying to create a windows service that have three tables which two of them are stores coordinates and the last one stores the address information came from google api. System have two threads calling a SP that call parameter values for posting data to google. Another SP is used for storing retrieved data. BUT i need to code my threads to use different SPs(doing the same work at all).
how can i code my thread class to behave differently from others? (one use SP1 and one use SP2 like)
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
启动两个不同的线程,每个线程都有自己的 threadstart 函数。不要使用相同的函数启动线程。
请查看此处的示例代码:
http://msdn.microsoft。 com/en-us/library/system.threading.threadstart.aspx
Start two different threads each with their own threadstart function. Don't start the threads using the same function.
Look at the example code here:
http://msdn.microsoft.com/en-us/library/system.threading.threadstart.aspx