標籤

顯示具有 MySQL 標籤的文章。 顯示所有文章
顯示具有 MySQL 標籤的文章。 顯示所有文章

2011年8月16日 星期二

MySQL連線 練習

import java.sql.*;

public class DBConnectionDemo {
    public static void main(String[] args) {
        String driver = "com.mysql.jdbc.Driver";
        String url = "jdbc:mysql://localhost:3306/My108";
        String user = "root";
        String password = "1234";
        Connection conn = null;
        Statement stmt = null;