Posts by Monari • 329 points
4 posts
-
2
votes1
answer186
viewsA: could not Convert | Error returning object
One of the errors is happening in the method Scanner::getToken(). The method signature indicates that an object of the type will be returned Token, however, in the implementation of the method is…
-
7
votes1
answer210
viewsA: Is it possible to give Insert with select?
Yes, it is possible to perform a insert using a select. `INSERT INTO software (HARDWARE_ID, PUBLISHER, NAME, VERSION) SELECT ID, 'TEXTO PUBLISHER', 'TEXTO NAME', 'TEXTO VERSION' FROM hardware hw…
-
2
votes1
answer79
viewsQ: Java, difference between Integer.TYPE and int.class
What is the difference between using Integer.TYPE and int.class? I did some tests and both can be passed as a parameter to a Class<?>.
-
7
votes3
answers633
views