java中用Connection引用两个数据库

发布于 2024-12-11 21:44:24 字数 241 浏览 0 评论 0原文

我尝试使用 Java 的 Connection 类连接两个本地数据库。使用以下方法连接到第一个数据库很容易:

public Connection conn;
conn = DriverManager.getConnection(connectionString);

如何将第二个数据库添加到同一连接?它们都在同一台服务器上,所以它应该相当简单,但我找不到正确的命令来执行此操作。

谢谢

I have two local databases I'm trying to connect to using Java's Connection class. It's easy enough to connect to the first database using:

public Connection conn;
conn = DriverManager.getConnection(connectionString);

How can I add a second database to that same connection? They're both on the same server so it should be fairly simple but I can't find the right commands to do it.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

ˉ厌 2024-12-18 21:44:24

连接是与特定数据库的会话。您不能使用一个连接与两个不同的数据库进行通信;为此,您需要两个单独的连接。

Connection conn1 =  DriverManager.getConnection(connectionString1);
Connection conn2 =  DriverManager.getConnection(connectionString2);

A Connection is a session with a specific database. You can't use one Connection to communicate with two different databases; for that, you need two separate Connections.

Connection conn1 =  DriverManager.getConnection(connectionString1);
Connection conn2 =  DriverManager.getConnection(connectionString2);
绿萝 2024-12-18 21:44:24

你有没有尝试过:

public Connection conn1;
conn1 = DriverManager.getConnection(connectionString1);
public Connection conn2;
conn2 = DriverManager.getConnection(connectionString2);

Have you tried:

public Connection conn1;
conn1 = DriverManager.getConnection(connectionString1);
public Connection conn2;
conn2 = DriverManager.getConnection(connectionString2);
檐上三寸雪 2024-12-18 21:44:24
  1. 实例成员不应是公共的。

  2. 连接应该是局部变量,而不是实例成员。

您一次只能使用一个连接连接到一个数据库。因此,您需要另一个连接。

  1. Instance members shouldn't be public.

  2. Connection should be a local variable, not an instance member.

You can only connect to one database at a time with a single Connection. Ergo you need another Connection.

甜宝宝 2024-12-18 21:44:24

我认为你必须使用 J2EE、JTA 事务管理器来完成此任务。

I think you have to use J2EE, JTA transaction manager to accomplish this.

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