使用 JDBC 插入 Microsoft SQL
我有一些来自机器的数据,格式如下: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 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.
有关 MSSQL 服务器的 Microsoft JDBC 驱动程序的教程和文章。
Tutorials and articles on Microsoft JDBC driver for MSSQL server.