使用 AIDE 实现高效率,第 5 部分: 构建自主计算系统
2010-04-06 00:00:00 来源:WEB开发网如果接触点在运行,而且单击了 Create & browse(请参见图 2),则应该看到与清单 5 类似的内容。
清单 5. 运行客户机程序成功
Starting Sample client program
Got a client connection via the DriverManager.
connection from datasource; getDriverName = Apache Derby Network Client JDBC Driver
Got a client connection via a DataSource.
Testing the connection obtained via DriverManager by executing a sample query
number of rows in sys.systables = 16
Testing the connection obtained via a DataSource by executing a sample query
number of rows in sys.systables = 16
Goodbye!
如果仍然看到错误,则可能遇到了防火墙问题(如果使用了防火墙)。如果是这样,则需要和系统管理人员联系了。不过,在联系他们之前,请尝试关闭防火墙。
我们已经看到 Derby 示例程序能够与接触点成功地进行通信了。接下来,我们将使用一个能修改接触点中 Derby 数据库的 Derby 客户机。
针对接触点运行修改 Derby 客户机
与上面相比,针对接触点运行此 Derby 程序要进行的工作并不太多。清单 6 显示了此程序的输出。正如您看到的,它实际上是对数据库进行 SQL 更改。程序最后将删除更改,并关闭事务。因此,最后得到的是一个干净的数据库。
清单 6. 修改接触点数据库
SimpleApp starting in derbyclient mode.
Loaded the appropriate driver.
Connected to and created database derbyDB
Created table derbyDB
Inserted 1956 Webster
Inserted 1910 Union
Updated 1956 Webster to 180 Grand
Updated 180 Grand to 300 Lakeshore
Verified the rows
Dropped table derbyDB
Closed result set and statement
Committed transaction and closed connection
SimpleApp finished
更多精彩
赞助商链接