import java.sql.*;
Connection con=null;
Statement st=null;
try{
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/fishgame","root","admin");
st=con.createStatement();
st.executeUpdate("create database System");
}catch(Exception ex){
System.out.println(ex.getMessage());
}