"无效的游标状态"从数据库读取时出错

时间:2015-09-09 11:20:42

标签: java ms-access selenium jdbc webdriver

我正在尝试从Access数据库中获取详细信息并在我的selenium脚本中使用这些值,但不知何故我无法这样做..虽然我能够成功连接到数据库并在控制台中打印值。我无法在脚本中使用相同的值。这是我正在使用的代码。请告诉我,我出错了。

package AccessDB;

import java.sql.Connection;
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Test;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.AfterTest;

public class Sample_Access_DB_Test {
    public static WebDriver driver;
    public static String dbLocation;
    public static Connection con;
    public static Statement smt;
    public static ResultSet rs;
  @Test
  public void f() throws Exception {
      //Database Location
      dbLocation = "D:\\AccessDB's\\Userinfor1.accdb";

      //Connecting to the Database
      con = DriverManager.getConnection("jdbc:odbc:ADB");
      System.out.println("Connection Establised Successfully");

      //Creating DB statement
      smt = con.createStatement();
      System.out.println("Statement Successfully Created");

      //Executing Created Statement
      rs = smt.executeQuery("Select * from Userinfor1");
      System.out.println("Query Executed");

      while(rs.next()){
         System.out.println(rs.getString(2));
         //System.out.println(rs.getString(3));
         //System.out.println(rs.getString(4));
        }
      driver.findElement(By.id("login-username")).sendKeys(rs.getString(2));
      /*
      driver.findElement(By.id("login-username")).sendKeys("gopi_krishna28");
      driver.findElement(By.id("login-passwd")).sendKeys("gopikrishna28");
      driver.findElement(By.id("login-signin")).click();*/
  }
  @BeforeTest
  public void beforeTest() {
      driver = new FirefoxDriver();
      driver.get("http://www.yahoomail.com/");
  }

  @AfterTest
  public void afterTest() {
  }

}

这是抛出的错误

java.sql.SQLException:[Microsoft] [ODBC驱动程序管理器]无效的游标状态

1 个答案:

答案 0 :(得分:1)

执行SELECT查询后,while(rs.next()){循环遍历ResultSet中的行并将值转储到控制台。在该循环退出后,ResultSet的当前位置未指向有效行; 位于最后一行之后。

所以,在下一行

driver.findElement(By.id("login-username")).sendKeys(rs.getString(2));

当您尝试使用rs.getString(2)时,您会收到错误,因为ResultSet未定位在有效行中。

您需要:

  1. 摆脱while(rs.next()){循环,也许只做一个rs.next()将ResultSet定位在第一行(假设存在一个),然后从那里继续,或者< / p>

  2. 如果你的SELECT查询返回多行,并且你想对每一行进行一些处理,那么保持while(rs.next()){循环,但将你的Selenium代码移到循环中,在那里调用rs.getString(2)将能够返回ResultSet当前行的值。