hibernate連線mysql資料庫

2021-07-14 13:52:20 字數 768 閱讀 3650

1.首先匯入hibernate的lib包

2.匯入mysql的驅動

3建立mysql的配置hibernate.cfg.xml,內容如下

<?xml version="1.0" encoding="utf-8"?>

org.hibernate.dialect.mysqldialect

com.mysql.jdbc.driver

jdbc:mysql://localhost:3306/資料庫的表名

賬號密碼

true

thread

4.建立model

public class usermodel

public void setuid(integer uid)

public string getuname()

public void setuname(string uname)

public string getupwd()

public void setupwd(string upwd)

}5.使用hibernate配置model

6.測試

public class test

}親測成功,

注意事項:

1.在配置model時要注意大小寫

2.在表有主外來鍵的時候要在***.hbm.xml中宣告

3.在hibernate.cfg.xml中配置model時如有com.test.test的包結構下resource寫成com/test/test/***.hbm.xml

Python基礎 Python連線MySQL

什麼是 pymysql?pymysql 是在 python3.x 版本中用於連線 mysql 伺服器的乙個庫,python2中則使用mysqldb。pymysql 遵循 python 資料庫 api v2.0 規範,幷包含了 pure python mysql 客戶端庫。pymysql 安裝 在使用...

Windows上Python連線MySQL資料庫

python連線mysql資料庫示例 usr bin python import mysqldb conn mysqldb.connection 127.0.0.1 root root test cur conn.cursor cur.execute insert into testok id va...

phpMyAdmim和Yii 連線Mysql報錯。

之前phpmyadmim和yii連線mysql都好著的。某天,同一時候出現例如以下報錯 1 linux下phpmyadmin 出現 缺少 mysqli 擴充套件,請檢查 php 配置。2 yii 出現cdbconnection failed to open the db connection cou...