Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: try { Class.forName("com.mysql.jdbc.Driver"); //Abrindo a conexão: ATENÇÃO OS DOIS PARÂMETROS VAZIOS("") SÃO USUÁRIO E SENHA, RESPECTIVAMENTE. Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/pet", "root", "edson"); //Executa a query de inserção java.sql.Statement st = conn.createStatement(); st.executeUpdate("INSERT INTO cliente VALUES ('"+this.TFcpf.getText() + "','" + this.TFnome.getText() + "','" + this.TFendereco.getText() + "','" + this.TFbairro.getText() + "','" … |
The End.