Java + Base de Datos + Hostgator
Publicado por alejandro zapata (1 intervención) el 08/12/2017 20:14:23
Hola buenas a todos, les comento el problema, en estos dias contrate un servicio de hosting hostgator para probar Java+Netbeans mediante esta linea de comandos:
y cuando lo ejecuto me tira un error
com.mysql.jdbc.PacketTooBigException: Packet for query is too large (5526600 > 1048576). You can change this value on the server by setting the max_allowed_packet' variable.
queria saber en que parte estoy haciendo mal el llamado, muchas gracias
1
2
3
4
5
6
7
8
9
10
11
12
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException ex) {
Logger.getLogger(conexionDBweb.class.getName()).log(Level.SEVERE, null, ex);
}
try {
conn= DriverManager.getConnection("jdbc:mysql://gator4199.hostgator.com:2083/foxithos_codoacodo","foxithos_cacalum","12345");
System.out.println("conexion exitosa via web");
} catch (SQLException ex) {
Logger.getLogger(conexionDBweb.class.getName()).log(Level.SEVERE, null, ex);
}
com.mysql.jdbc.PacketTooBigException: Packet for query is too large (5526600 > 1048576). You can change this value on the server by setting the max_allowed_packet' variable.
queria saber en que parte estoy haciendo mal el llamado, muchas gracias
Valora esta pregunta
0