mysql超级_Mysql 超级快速入门
安裝之后。進入命令行
mysql -uroot
默認密碼是空的,所以不需要寫。
有密碼登錄:
mysql -uroot -pxxxxx
修改密碼:
mysqladmin -uroot password xxxxx
已經有密碼之后,再修改
mysqladmin -uroot -pxxxxx password yyyyyy
顯示數據庫
show databases;
use test;
show tables;
使用myeclipse database driver鏈接數據庫:
drivername = 隨便
connection url :?jdbc:mysql://localhost:3306/biz?user=root&password=123456
username:root
password: 123456
driver jars =??mysql-connector-java-5.1.13.jar
driver classname = ?com.mysql.jdbc.Driver
啟動hibernate出現錯誤:
警告: Could not obtain connection metadata
java.sql.SQLException: null, ?message from server: "Host '1455863CAF9F409' is not allowed to connect to this MySQL server"
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1055)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
原因:
你使用的連接用戶id沒有權限連接到你的host上去阿。查一下你的用戶找好啊,看看這個用戶是不市被限定只能在你的host上面了阿,如果用的是root的話,默認情況下root只能在localhost上使用。
讓hibernate自動建表:
在配置文件配置:create
hibernate-daos.xml
總結
以上是生活随笔為你收集整理的mysql超级_Mysql 超级快速入门的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: MPa等于多少kgf
- 下一篇: java中arges.length_ja