使用 JDBC 插入 Microsoft SQL

发布于 2024-12-09 04:59:41 字数 332 浏览 0 评论 0原文

我有一些来自机器的数据,格式如下: A(某个值) B(某个值) C(某个值)等等。

我在 Microsoft SQL Server 2008 中有一个数据库,其中的列名为 A、B、C 等。

我已经下载了 MS SQL Server 2008 的 jdbc 驱动程序并将其包含在我的类路径中。

当我从不同的机器(端口)接收到 A、B、C 等的值时,我想在 SQL 中插入它。基本上我必须用 Java 设计一个服务器,它监听该端口的值,当它收到值时,它将其插入 MS SQL 数据库。

有人可以帮我用 Java 编写上述代码吗?我是Java新手,因此觉得它有点困难。

谢谢。

I have some data coming from a machine in the following format:
A (some value)
B (some value)
C (some value) and so on.

I have a database in the Microsoft SQL server 2008 with the columns named A, B, C and so on.

I have downloaded the jdbc drivers for the MS SQL server 2008 and included in my classpath.

I want to insert the values of A, B, C, etc in SQL when i receive it over from a different machine(port). Basically i have to design a server in Java which listens to that port for the values and when it receives the values, it inserts it into the MS SQL database.

Can someone help me code the above in Java? I am new to Java, hence finding it a bit difficult.

Thank you.

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

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

发布评论

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

评论(2

稀香 2024-12-16 04:59:41

从 JDBC 教程开始:

http://download.oracle.com/javase/tutorial/jdbc/

它应该可以解决你的问题。

Microsoft 还提供了特定于 SQL Server 的示例:

http://support.microsoft.com/kb/313100

这负责数据库方面。当您说“服务器”时,我会假设您需要一个基于 Web 的服务器,该服务器正在侦听 HTTP 请求的端口。您需要一个在 servlet/JSP 引擎中运行的 servlet就像 Tomcat 一样。

编写一个基于接口的对象来处理数据库工作;彻底测试并将其放在一边。然后编写一个 Servlet,在验证和绑定输入值后调用该对象。

Start with the JDBC tutorial:

http://download.oracle.com/javase/tutorial/jdbc/

It should sort you out.

Microsoft also has examples specific to SQL Server here:

http://support.microsoft.com/kb/313100

That takes care of the database side. When you say "server", I'll assume that you want a web based server that's listening on a port for HTTP requests. You'll need a servlet running in a servlet/JSP engine like Tomcat.

Write an interface-based object that handles your database work; thoroughly test it and put it aside. Then write a servlet that calls that object after validating and binding input values.

泼猴你往哪里跑 2024-12-16 04:59:41

有关 MSSQL 服务器的 Microsoft JDBC 驱动程序的教程和文章。

  1. 适用于 SQL Server 的 Microsoft JDBC 驱动程序
  2. microsoft.com/en-us/library/ms378672.aspx" rel="nofollow">使用 JDBC 驱动程序连接到 SQL Server
  3. 操作方法:启动 Microsoft JDBC
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文