> Hi,
> I am using MySQL Connector/J JDBC Driver to support the=20
> ResultSet.CONCUR_UPDATABLE. I am using J2sdk 1.4 Tomcat 4.1.1 with =
> MySQL:
>
> I am using a jsp file to use the Driver. After running the JSP file =
> following Error has been generated.=20
> org.apache.jasper.JasperException:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
LS wrote:
> Where does Connector/J fit into the MySQL3.23.x versus MySQL4.x client
libraries?
> Someone mentioned to me today that mod_php is still compiled with the
old 3.23
> client even though it may be talking to a 4.x server, so I'm wondering if
Where does Connector/J fit into the MySQL3.23.x versus MySQL4.x client libraries?
Someone mentioned to me today that mod_php is still compiled with the old 3.23
client even though it may be talking to a 4.x server, so I'm wondering if
Connector/J does anything different depending on whether it's ta
I think you're missing a few things:
1) Does your user have a password set? If it does, u need to use the
following line to pass your username and password:
Connection connection = java.sql.DriverManager.getConnection(
"jdbc:mysql://localhost:3306/test", "username", "password");
2) You n