mySQL WindowsXP 構築?

ダウンロード

Windows 32bit(x86)版のダウンロード
version 2006-01-11付 > Windows (x86) 4.0.26 25.4M

動作確認(コマンドプロンプト)

C:\>cd \mysql\bin
C:\mysql\bin\>mysql test

下記が出ると成功

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 4.0.22-nt

Type 'help;' or '\h' for help. Type '\c' to clear the buffer

終わる時は

mysql> quit

PHP メモ

DB作成
mysql_query("CREATE DATABASE IF NOT EXISTS ".'データベース名');
テーブル作成
mysql_query("CREATE TABLE IF NOT EXISTS テーブル名 (,,[].....);
#IF NOT EXISTS は存在した場合作成しないというお呪ない?