Advertisement
Guest User

Untitled

a guest
Jun 11th, 2016
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. Establishing SSL connection without server's identity verification is not recommended.
  2. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be
  3. established by default if explicit option isn't set. For compliance with
  4. existing applications not using SSL the verifyServerCertificate property is
  5. set to 'false'. You need either to explicitly disable SSL by setting useSSL=false,
  6. or set useSSL=true and provide truststore for server certificate verification.
  7.  
  8. import java.sql.*;
  9. public class JdbcCreateTable {
  10. public static void main(String args[])
  11. {
  12. try
  13. {
  14. Class.forName("com.mysql.jdbc.Driver");
  15. }
  16. catch(ClassNotFoundException e)
  17. {
  18. e.printStackTrace();
  19. }
  20. try{
  21. Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/INTtech","root","root");
  22. Statement st=con.createStatement();
  23. int i=st.executeUpdate("create table Author(AID int primary key,Aname varchar(20),AContact no int,ACountry string)");
  24. System.out.println("Table is created"+i);
  25. con.close();
  26. }
  27. catch(SQLException e)
  28. {
  29. e.printStackTrace();
  30. }
  31. }
  32. }
  33.  
  34. Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/INTtech?useSSL=false","root","root");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement