JDBC連線MySQL資料庫並實現簡單功能

2021-09-22 02:07:29 字數 1311 閱讀 8239

簡單說說mysql :乙個資料庫軟體,實質是資料庫管理系統(不夠準確的表達),作用是可以建立n個資料庫,每個資料庫裡又可以建立n個表

use test;//使用test資料庫

create table user_info(//在test資料庫中建立一張,名為user_info的表,表中設定id,user_name和password屬性

id char(36),

user_name varchar(12) unique,//unique約束user_name欄位的唯一性

password varchar(15)

)//此處需注意char和varchar的區別:都是用於儲存字串;如果表中字段長度始終相同,則使用char型別,否則使用varchar型別。

**示例如下

public static void main(string args) //while迴圈每執行一次,遍歷一條資料

} catch (exception e) finally

} catch (sqlexception e)

try

} catch (sqlexception e)

try

} catch (sqlexception e)

} }

新增部分**示例:

connection connection=null;

statement statement=null;

resultset resultset=null;

try

} catch (exception e) finally

} catch (sqlexception e)

try

} catch (sqlexception e)

try

} catch (sqlexception e)

}

刪除和修改功能的部分**:

//		實現刪除的sql語句為:

delete * from user_info;//此語句為刪除表中所有資料

delete * from user_info where name='tom';//此語句為刪除表中姓名是admin的所有資料

// 實現修改的sql語句為:

update user_info set id='42b56e41-ebcf-47ae-a636-569ce02f7c73',user_name='tom',password='666666';

jdbc 連線mysql資料庫

class.forname org.postgresql.driver newinstance 裝載資料庫驅動 string url jdbc postgresql localhost 5432 postgres connection con drivermanager.getconnection ...

JDBC 連線MYSQL資料庫

1.載入驅動 class.forname com.mysql.jdbc.driver com.mysql.jdbc 包名 driver 驅動名,驅動包需要引入進來 mysql com.mysql.jdbc.driver oracle oracle.jdbc.driver.oracledriver s...

JDBC連線MySQL資料庫

在學習jdbc過程中,用idea連線資料庫時出現的問題記錄,來來回回找了好多資料,現在把相應的解決辦法記錄下來。通過localhost連線mysql資料庫時,可能會遇到時區的問題,簡單設定一下就可以了,但是通過localhost一般都是可以連上的。string url jdbc mysql loca...