Skip to Content
0
Former Member
Nov 27, 2008 at 05:22 PM

Classes not being found in XI3.0

46 Views

Hi

We are upgrading from XI2 to XI3.1.

We have a custom web app that updates values on our Oracle database for reporting purposes using JSP.

It seems as if the Oracle classes can not be loaded in XI3.0. The following code works on our XI2 server but on XI3 we get a " OracleCallableStatement cannot be resolved to a type " error. Any help is appreciated

<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="java.util.*"%>
<%@ page import="java.sql.*"%>
<%@ page import="oracle.sql.*"%>
<%@ page import="oracle.jdbc.*"%>
<%@ page import="java.math.BigDecimal"%>

<%!

public String dbCreateUser()
{
    Connection conn = null;    
    OracleCallableStatement cs = null;
    return "";
}

%>