Ext JS に関しては,新しい記事は Sunvisor Lab. ExtJS 別館 にあります。そちらもよろしくお願いいたします。
MySQL
MySQLメモ: DBとユーザーを追加
投稿者:sunvisor 投稿日時:2011/10/18(火) 17:07MySQLで,データベースを作って,そのデータベース用のユーザーを作る。
mysql> create database hoge; Query OK, 1 row affected (0.00 sec) mysql> grant all on hoge.* to hoge@localhost; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.01 sec) mysql> set password for hoge@localhost=password('hoge'); Query OK, 0 rows affected (0.00 sec)
データベースのダンプをとる
$ mysqldump -u user -p hoge > hoge_dump.sql