JAva,jdbc方式接続mysql

2788 ワード

テストに使用するコードは、正常に実行され、その後の作業はパッケージ化され、使いやすくなります.
maven:
ここに奇妙な問題があります:5.1.25;5.1.24死活はすべてダウンロードして問題があります

<dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.1.23</version>
    </dependency>

java:

try {
	    Class.forName("com.mysql.jdbc.Driver").newInstance(); 
	    //Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/pandora?user=root&password=hustacm!@#$%");
	    String url = "jdbc:mysql://localhost/pandora"; 
	    String user = "root"; 
	    String password = "hustacm!@#$%"; 
	    Connection conn = DriverManager.getConnection(url, user, password); 
	    
	    stmt = conn.createStatement(); 
	    rs = stmt.executeQuery("SELECT * from account"); 
	    
	    
	    System.out.println("in account "); 
	    while (rs.next()) {
		System.out.println(rs.getInt(1) + " " + rs.getString(2) + " " + rs.getString(3)); 
	    }
	    
	    //good way 1
	    stmt.execute("INSERT INTO account (username, password) VALUES('tigerhy2', 'tigerhyx')"); 
	    
	    //good way 2
	    stmt.execute("INSERT INTO account VALUES(19, 'tigerhy3', 'tigerhyx')");
	    
	    //good way 3
	    String sql = "INSERT INTO account (username, password) VALUES (?,?)";
	    
	    pstmt = conn.prepareStatement(sql); 
	    
	    pstmt.setString(1, "tigerhy4");
	    
	    pstmt.setString(2, "tigerhy4"); 
	    
	    int x = pstmt.executeUpdate(); 
	    
	    //stmt.execute(arg0, arg1);
	    
	    
	} catch (SQLException ex) {
	    System.out.println("SQLException: " + ex.getMessage());
            System.out.println("SQLState: " + ex.getSQLState());
            System.out.println("VendorError: " + ex.getErrorCode());

	} finally {
	    if (rs != null) {
		try{
		    rs.close(); 
		} catch (SQLException sqlEx) {
		}
		rs = null; 
	    }

	    if (stmt != null) {
		try {
		    stmt.close();
		} catch (SQLException sqlEx) {
		}
		stmt = null; 
	    }
	}

この兄弟たちが書いたチュートリアルは悪くありません.
http://tutorials.jenkov.com/jdbc/index.html
最大の収穫は、PreparedStatementで、データベースを操作するときに、これを多く使うことです.