package com.chinasofti.se.homework0703;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class App2 {
private static final String URL = "jdbc:mysql://localhost:3306/数据库名?useUnicode=true&characterEncoding=utf8";
private static final String USER = "root";
private static final String PASSWORD = "root";
public static void main(String[] args) {
Connection conn = null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(URL,USER,PASSWORD);
Statement statement = conn.createStatement();
boolean isResult = statement.execute("sql语句");
System.out.println(isResult);
ResultSet rs = statement.executeQuery("sql语句");
System.out.println("第一个字段名\t第二个字段名\t第三个字段名");
while(rs.next()){
String s = rs.getString(1);
long l = rs.getLong(2);
int i = rs.getInt(3);
System.out.println(s+"\t"+l+"\t"+i);
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}finally{
if(conn != null){
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
}