瀏覽量:58次
1、MySQL安裝,創(chuàng)建一個數(shù)據(jù)。
復(fù)制代碼代碼如下:
mysql>CREATE DATABASE test; //創(chuàng)建一個數(shù)據(jù)庫mysql>use test; //指定test為當(dāng)前要操作的數(shù)據(jù)庫mysql>CREATE TABLE user (name VARCHAR(20),password VARCHAR(20)); //創(chuàng)建一個表user,設(shè)置兩個字段。mysql>INSERT INTO user VALUES('huzhiheng','123456'); //插入一條數(shù)據(jù)到表中
2、打開Eclipse,創(chuàng)建一個項目。 操作:右鍵點擊my--->build Path--->add external Archiver...選擇jdbc驅(qū)動,點擊確定。
3、驅(qū)動已經(jīng)導(dǎo)入,下面我們來寫一個程序驗證一下
復(fù)制代碼代碼如下:
import java.sql.*;public class MysqlJdbc {public static void main(String args[]) {try {Class.forName("com.mysql.jdbc.Driver"); //加載MYSQL JDBC驅(qū)動程序//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","198876");//連接URL為 jdbc:mysql//服務(wù)器地址/數(shù)據(jù)庫名 ,后面的2個參數(shù)分別是登陸用戶名和密碼 System.out.println("Success connect Mysql server!");Statement stmt = connect.createStatement();ResultSet rs = stmt.executeQuery("select * from user");//user 為你表的名稱while (rs.next()) {System.out.println(rs.getString("name"));}}catch (Exception e) {System.out.print("get data error!");e.printStackTrace();}}}
點擊運行程序:
復(fù)制代碼代碼如下:
Success loading Mysql Driver!Success connect Mysql server!huzhiheng
出現(xiàn)上面結(jié)果,說明你連接數(shù)據(jù)庫成功。
4、可以查看到MySQL里面的內(nèi)容,那我們是不是想往MySQL中插入數(shù)據(jù)呢。下面的例子,往MySQL的user表中插入100條數(shù)據(jù)
復(fù)制代碼代碼如下:
import java.sql.*;public class Myjproject {public static void main(String args[]){try {Class.forName("com.mysql.jdbc.Driver"); //加載MYSQL JDBC驅(qū)動程序//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","198876");
int num=100;PreparedStatement Statement=connect.prepareStatement("INSERT INTO user VALUES(?,?)");for(int i=0;i 5、下面我們打開MySQL數(shù)據(jù)庫進行查看 復(fù)制代碼代碼如下: mysql> show tatabases; //查看所數(shù)據(jù)庫mysql> use test; //使test為當(dāng)前要操作的數(shù)據(jù)庫mysql> show tables; //查看當(dāng)前數(shù)據(jù)庫的所有表mysql> select *from user; //查看當(dāng)前表(user)的所有信息 如果不能正常連接你的數(shù)據(jù)庫,請檢查你代碼中,驅(qū)動、用戶名、密碼、表等信息是否對應(yīng)無誤
[聲明]本網(wǎng)轉(zhuǎn)載網(wǎng)絡(luò)媒體稿件是為了傳播更多的信息,此類稿件不代表本網(wǎng)觀點,本網(wǎng)不承擔(dān)此類稿件侵權(quán)行為的連帶責(zé)任。故此,如果您發(fā)現(xiàn)本網(wǎng)站的內(nèi)容侵犯了您的版權(quán),請您的相關(guān)內(nèi)容發(fā)至此郵箱【779898168@qq.com】,我們在確認(rèn)后,會立即刪除,保證您的版權(quán)。
官網(wǎng)優(yōu)化
整站優(yōu)化
渠道代理
400-655-5776