Skip to content
Advertisement

JAVA ERROR : package com.sun.rowset is not visible : com.sun.rowset is declared in module java.sql.rowset, which does not export it

I’m simply try to run this code:

import com.sun.rowset.CachedRowSetImpl;

public class Test {
    public static void main(String[] args) throws Exception{
        CachedRowSetImpl crs = new CachedRowSetImpl();
    }
}

When I run it I get:

Error:(1, 15) java: package com.sun.rowset is not visible (package com.sun.rowset is declared in module java.sql.rowset, which does not export it)

I’m using IntelliJ and I tried to import rs2xml.jar, and that still doesnt help.

Advertisement

Answer

As of Java 9, you can not access this class directly. And in the ideal way you shouldn’t do that. That is because this class’s package is not exported in the module javax.sql.rowset.

The proper way to do that in Java 9+ is the use of RowSetProvider to access a RowSetFactory to produce an instance of an implementation of CachedRowSet

import javax.sql.rowset.*; 

public class Test {
    public static void main(String[] args) throws Exception {

        CachedRowSet crs = RowSetProvider.newFactory().createCachedRowSet();
    }
}

To understand that we can go to the module description (module-info.java) and find a list of exported packages:

exports javax.sql.rowset;
exports javax.sql.rowset.serial;
exports javax.sql.rowset.spi;
Advertisement