Trying to use database connectivity, I would like to import java.sql.*, i.e.
<%@ page import="java.sql.*" %>
<%! static Connection conn; %>
But it returns an unspecified error. When I replace it with the line:
<%! static java.sql.Connection conn; %>
everything works fine.
What is going on, where is my error ???
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".