Posts by David_Ferreira • 1 point
2 posts
-
-4
votes2
answers5634
viewsQ: How do I call another screen in java, I’m not getting
Follows code of the Telaprincipal class package telas; import java.awt.BorderLayout; import java.awt.EventQueue; import javax.swing.JFrame; import javax.swing.JPanel; import…
javaasked David_Ferreira 1 -
0
votes1
answer2768
viewsQ: How do I connect a java program with oracle 10g?
I tried to make the code below but it didn’t work, I’m using Oracle 10g. import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet;…