jdbc連線mysql資料庫

2022-09-12 02:42:11 字數 1778 閱讀 5007

//連線mysql資料庫的步驟

//1. 載入驅動

//2.用drivermanager獲得資料庫連線

//3.例項化queryrunner

//4.利用qr.update(),實現增刪改

//5.利用qr.query()得到結果集

1

public

class

utilmysql catch

(classnotfoundexception e) catch

(sqlexception e)

25return

conn;26}

2728

29 }

2.例項類

public

class

peoplebean

public

void setid(int

id)

public

string getname()

public

void

setname(string name)

public

intgetage()

public

void setage(int

age)

}

3.資料庫的增刪改查

import

org.apache.commons.dbutils.dbutils;

import

org.apache.commons.dbutils.queryrunner;

import

org.apache.commons.dbutils.resultsethandler;

import

org.apache.commons.dbutils.handlers.maplisthandler;

import

j**a.sql.connection;

import

j**a.sql.resultset;

import

j**a.sql.sqlexception;

import

j**a.util.list;

import

j**a.util.map;

/*** created with intellij idea.

* user: kinkoo

* date: 14-3-11

* time: 上午11:08

* to change this template use file | settings | file templates. */

public

class

mysqldemo

//刪除

public

static

void delete_sql() throws

sqlexception

//更新

public

static

void update_sql() throws

sqlexception

//查詢

public

static

void select_sql() throws

sqlexception

dbutils.closequietly(con);

}public

static

void main(string args) throws

sqlexception

}

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...