当前位置: 代码迷 >> Android >> 异常: 无法访问Referenceable 找不到javax.naming.Referenceable的类文件
  详细解决方案

异常: 无法访问Referenceable 找不到javax.naming.Referenceable的类文件

热度:37   发布时间:2016-04-28 01:07:40.0
错误: 无法访问Referenceable 找不到javax.naming.Referenceable的类文件
    public static void connectionDB(){
        Connection con = null;
        CallableStatement cstmt = null;
        ResultSet rs = null;

        try {
            // Establish the connection.
            SQLServerDataSource ds = new SQLServerDataSource();
            ds.setIntegratedSecurity(false);
            ds.setUser("comup");
            ds.setPassword("1024");
            ds.setServerName("172.19.149.250");
            ds.setPortNumber(1433);
            ds.setDatabaseName("Tetris");
            con = ds.getConnection();

            // Execute a stored procedure that returns some data.
            cstmt = con.prepareCall("{call dbo.uspGetEmployeeManagers(?)}");
            cstmt.setInt(1, 50);
            rs = cstmt.executeQuery();

            // Iterate through the data in the result set and display it.
            while (rs.next()) {
                System.out.println("EMPLOYEE: " + rs.getString("LastName") +
                        ", " + rs.getString("FirstName"));
                System.out.println("MANAGER: " + rs.getString("ManagerLastName") +
                        ", " + rs.getString("ManagerFirstName"));
                System.out.println();
            }
        }

        // Handle any errors that may have occurred.
        catch (Exception e) {
            e.printStackTrace();
        }

        finally {
            if (rs != null) try { rs.close(); } catch(Exception e) {}
            if (cstmt != null) try { cstmt.close(); } catch(Exception e) {}
            if (con != null) try { con.close(); } catch(Exception e) {}
        }
    }

用的android studio


------解决思路----------------------
大兄弟这个是Java的吧,你应该去Java论坛发会好点
------解决思路----------------------
这个是java方面的东西
  相关解决方案