安裝之後。進入命令列
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)
原因:
http://topic.csdn.net/u/20070529/11/7a7da552-1370-4834-aaf3-2b5f8dd25912.html
你使用的串連使用者id沒有許可權串連到你的host上去阿。查一下你的使用者找好啊,看看這個使用者是不市被限定只能在你的host上面了阿,如果用的是root的話,預設情況下root只能在localhost上使用。
讓hibernate自動建表:
在設定檔配置:<prop key="hibernate.hbm2ddl.auto">create</prop>
hibernate-daos.xml