在使用 Tomcat 作为服务器并使用 Derby 作为数据库时,我进行了查找并执行了如下查询:
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/PollDatasource");
Connection connection = ds.getConnection();
// write the query that tells the current weight of actor
String currentWeightQuery = "SELECT " + justPolled + ",total FROM pollresult";
PreparedStatement currentWeight = connection.prepareStatement(currentWeightQuery);
ResultSet cwSet = currentWeight.executeQuery();
现在我使用Microsoft SQL Server 2005并且必须从 java 桌面应用程序查询数据库。我需要做什么来查询 sql server 2005 ?我已经加载了 sqlserver-jdbc 驱动程序并连接到数据库,但我不知道如何从数据库中获取数据。