moving your cursor to a particular row instead of using next is a feature of JDBC2, if the driver did not implement JDBC2, then try to download a driver that support it.

解决方案 »

  1.   

    moving your cursor to a particular row instead of using next is a feature of JDBC2, if the driver did not implement JDBC2, then try to download a driver that support it.try this:
    www.com.inet
    it's free
      

  2.   

    参考:http://www.csdn.net/expert/topic/718/718791.xml?temp=.7611658
      

  3.   

    真是奇怪,我换了microsoft的驱动后,总是说我要的表不存在或不可达,可是我用的是sa,而且默认数据库也设定了
      

  4.   

    在建立对像的时候 Statement stmt 使用 Connection com 对像的方法 createStatement(ResultSet.TYPE_SCROL_INSENSITIVE,ResultSet.CONCOR_READ_ONLY);
    参数 ResultSet.TYPE_SCROL_INSENSITIVE 代表记录集带有滚动功能,可以上下移动记录集,可以移动游标到指定的行数。如果不带的话只能向前移动游标。
    连接SQL 2000 的驱动程序我也没有找到一个能好用的。可以通过JDBC连接ODBC,
    在通过ODBC 连接SQL2000 这个驱动程序在JDK里面就有!这个驱动程序是 sun.jdbc.odbc.JdbcOdbcDriver , 连接URL = "jdbc:odbc:ODBC数据源的名"
      

  5.   

    zeroc(笨小孩) :我以前也遇到过这个问题
    我 CREATE TABLE 时是用普通用户,就报错说找不到表
    但当我换用 sa 用户去建表后就再也没有出现过这种问题祝好运
      

  6.   

    还有, MS JDBC 比其它的 Driver  好用一点,虽然性能不怎么样
      

  7.   

    shingle(迅恒)
    我注意到,我建的库所属是ado,而我创建一个用户并设为databaseowner也不行
    难道一定要创建者才能用那个jdbc来控制么?