[SOLVED]
I finally got solve the problem, is everything alright with the connection...
The problem was in a SQL Query, i was doing a select in table with name "arduinoData" and the really name is "arduinodata".
That way works locally, but when i tried online, it doesn't.
Because this, the return was 'null', and Java was trying to parsetoInt that and was showing error.
I'm so sorry for trouble, thank you to all.
I'm using JDBC to connect my program to a MySQL database.
I already put the port number and yes, my database have permission to access.
When i use localhost work perfectly, but when i try connect to a remote MySQL database, show this error on console.
java.lang.ExceptionInInitializerError
Caused by: java.lang.NumberFormatException: null
at java.lang.Integer.parseInt(Integer.java:454)
at java.lang.Integer.parseInt(Integer.java:527)
at serial.BDArduino.<clinit>(BDArduino.java:25)
Exception in thread "main" Java Result: 1
CONSTRUÍDO COM SUCESSO (tempo total: 1 segundo)
Thank you in Advance !
