瀘沽湖的女兒
美麗的瀘沽湖!
- 前段時(shí)間去瀘沽湖,里格半島碍扔。
第一天就住進(jìn)里格的一家青年旅舍,超級(jí)便宜哈瘩燥,三人間100塊,有電熱毯
沒事兒看看以前寫的代碼:
/**
* @author liushy
*/
import java.sql.*;
public class Sqltest {
public static void main(String args[]) {
try {
Class.forName("com.mysql.jdbc.Driver"); // 加載MYSQL JDBC驅(qū)動(dòng)程序
// Class.forName("org.gjt.mm.mysql.Driver");
System.out.println("Success loading Mysql Driver!");
} catch (Exception e) {
System.out.print("Error loading Mysql Driver!");
e.printStackTrace();
}
try {
Connection connect = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/test", "root", "password");
// 連接URL為 jdbc:mysql//服務(wù)器地址/數(shù)據(jù)庫名 不同,后面的2個(gè)參數(shù)分別是登陸用戶名和密碼
System.out.println("Success connect Mysql server!");
int num = 100;
PreparedStatement Statement = connect
.prepareStatement("INSERT INTO ue VALUES(?,?)");//現(xiàn)在sql端創(chuàng)建表ue以及表的字段屬性
for (int i = 0; i < num; i++) // 定義個(gè)100次的循環(huán)厉膀,往表里插入一百條信息。
{
Statement.setString(1, "student" + i);
Statement.setString(2, "bo" + i);
Statement.executeUpdate();
}
Statement stmt = connect.createStatement();
ResultSet rs = stmt.executeQuery("select * from ue");
// ue 為你表的名稱
while (rs.next()) {
System.out.println(rs.getString("name")+" "+rs.getString("num"));
}
} catch (Exception e) {
System.out.print("get data error!");
e.printStackTrace();
}
}
}
其中的函數(shù)Class.forName("com.mysql.jdbc.Driver")
用于加載MYSQL JDBC驅(qū)動(dòng)程序二拐,
Connection connect = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test", "root", "password");
用來連接URL為 jdbc:mysql//服務(wù)器地址/數(shù)據(jù)庫名服鹅,后面的2個(gè)參數(shù)分別是登陸用戶名和密碼。
(注:本文主要用來熟悉md語法)