两个多线程对象可以从数据库调用两个不同的存储过程吗?

发布于 2024-11-11 15:41:49 字数 248 浏览 4 评论 0原文

这是我的第一条消息。

我正在尝试创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟凡古楼 2024-11-18 15:41:49

启动两个不同的线程,每个线程都有自己的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文