:::¸Þ¸ðÀ帮½ºÆ®::::::::::::::::::::::::::: //memolist.html// New Document "; } ?>
¹øÈ£ À̸§ À̸ÞÀÏ ¸Þ¸ð ¼öÁ¤
$row[0] $row[1]  $row[2]  $row[3]  ¼öÁ¤

¸Þ¸ðÀÔ·Â :::¸Þ¸ðÀÔ·Ââ::::::::::::::::::::::::::: //memoinput.html// New Document
À̸§
À̸ÞÀÏ
¸Þ¸ð
   
:::¸Þ¸ðÀÔ·Ââ::::::::::::::::::::::::::: //memoinput.php// "; echo "³Ñ¾î¿Â¸ÞÀÏ --- $email
"; echo "³Ñ¾î¿Â¸Þ¸ð --- $memo
"; $connect=mysql_connect("localhost","apple","1234"); $db=mysql_select_db("appledb",$connect); $query="insert into mymemo values(NULL,'$name','$email','$memo')"; $result=mysql_query($query,$connect); if($result){ echo "µ¥ÀÌŸ ÀԷ¼º°ø!"; }else { echo "µ¥ÀÌŸ ÀԷ½ÇÆÐ!"; } echo "" ?> :::¸Þ¸ð¼öÁ¤Ã¢::::::::::::::::::::::::::: //memomodifry.html// New Document "; include "connect.php"; $query="select * from mymemo where num='$num'"; $result=mysql_query($query,$connect); $row=mysql_fetch_array($result); ?>
>
À̸§ >
À̸ÞÀÏ >
¸Þ¸ð >
   
:::¸Þ¸ð¼öÁ¤Ã¢::::::::::::::::::::::::::: //memomodifry.php// "; include "connect.php"; $query="update mymemo set name='$name', email='$email', memo='$memo' where num='$num'"; $result=mysql_query($query,$connect); echo ""; ?> :::¸Þ¸ðÀå-DB¿¬°á::::::::::::::::::::::::::: //connect.php// :::¸Þ¸ðÀå-DB-Table»ý¼º-MYSQL::::::::::::::::::::::::::: Microsoft Windows 2000 [Version 5.00.2195] (C) Copyright 1985-2000 Microsoft Corp. C:\Documents and Settings\Administrator>mysql ERROR 1045: ODBC@localhost »ç¿ëÀÚ´Â Á¢±ÙÀÌ °ÅºÎ µÇ¾ú½À´Ï´Ù. (Using password: ¾Æ´Ï¿À) C:\Documents and Settings\Administrator> C:\Documents and Settings\Administrator> C:\Documents and Settings\Administrator>mysql -u root -p mysql Enter password: ******** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 to server version: 4.0.21-nt Type help; or \h for help. Type \c to clear the buffer. mysql> create database appledb; Query OK, 1 row affected (0.13 sec) mysql> grant all on appledb.* to apple@localhost identified by 1234; Query OK, 0 rows affected (0.16 sec) mysql> exit Bye C:\Documents and Settings\Administrator>mysql -u apple -p Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 to server version: 4.0.21-nt Type help; or \h for help. Type \c to clear the buffer. mysql> \s -------------- mysql Ver 12.22 Distrib 4.0.21, for Win95/Win98 (i32) Connection id: 3 Current database: Current user: apple@localhost SSL: Not in use Server version: 4.0.21-nt Protocol version: 10 Connection: localhost via TCP/IP Client characterset: latin1 Server characterset: latin1 TCP port: 3306 Uptime: 48 min 7 sec Threads: 1 Questions: 8 Slow queries: 0 Opens: 8 Flush tables: 1 Open tables: 2 Queries per second avg: 0.003 -------------- mysql> show databaes; ERROR 1064: SQL ±¸¹®¿¡ ¿À·ù°¡ ÀÖ½À´Ï´Ù. ¿¡·¯ °°À¾´Ï´Ù. (databaes ¸í·É¾î ¶óÀÎ 1) mysql> show databases; +----------+ | Database | +----------+ | appledb | +----------+ 1 row in set (0.00 sec) mysql> use appledb; Database changed mysql> show tables; Empty set (0.00 sec) mysql> mysql> create table mymemo(num int not null auto_increment primary key, -> name varchar(20) not null, -> email varchar(30) not null, -> memo varchar(100) not null); Query OK, 0 rows affected (0.06 sec) mysql> mysql> memo varchar(100) not null); ERROR 1064: SQL ±¸¹®¿¡ ¿À·ù°¡ ÀÖ½À´Ï´Ù. ¿¡·¯ °°À¾´Ï´Ù. (memo varchar(100) not null) ¸í·É¾î ¶óÀÎ 1) mysql> mysql> select * from mymemo; +-----+------+-------+------+ | num | name | email | memo | +-----+------+-------+------+ | 1 | 22 | 22 | 22 | +-----+------+-------+------+ 1 row in set (0.02 sec) mysql> ------------------------ mysql> mysql> mysql> create database appledb; Query OK, 1 row affected (0.09 sec) mysql> grant all on appledb. * to apple@localhost identified by 1234; Query OK, 0 rows affected (0.16 sec) mysql> exit Bye C:\>mysql -u apple -p Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 to server version: 4.0.22-nt Type help; or \h for help. Type \c to clear the buffer. mysql> c ------------------------------ mysql> mysql> mysql> mysql> mysql> create database appledb; Query OK, 1 row affected (0.09 sec) mysql> grant all on appledb. * to apple@localhost identified by 1234; Query OK, 0 rows affected (0.16 sec) mysql> exit Bye C:\>mysql -u apple -p Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 to server version: 4.0.22-nt Type help; or \h for help. Type \c to clear the buffer. mysql> exit Bye C:\>cd mssql ÁöÁ¤µÈ °æ·Î¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù. C:\>cd mysql C:\mysql>cd bin C:\mysql\bin>mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 80 to server version: 4.0.22-nt Type help; or \h for help. Type \c to clear the buffer. mysql> create database JspTestDB; Query OK, 1 row affected (0.02 sec) mysql> use database ERROR 1049: Unknown database database mysql> use database; ERROR 1049: Unknown database database mysql> use JspTestDB Database changed mysql> create table starcraft(id varchar(20), -> name varchar(30), -> price int(10)); Query OK, 0 rows affected (0.06 sec) mysql> insert into statcraft values (aa1, ¸¶¸°, 50); ERROR 1146: Table jsptestdb.statcraft doesn exist mysql> insert into starcraft values (aa1, ¸¶¸°, 50); Query OK, 1 row affected (0.00 sec) mysql> insert into starcraft values (aa2, µå·¡°ï,250); Query OK, 1 row affected (0.00 sec) mysql> insert into starcraft values (aa3, ĵµð,150); Query OK, 1 row affected (0.00 sec) mysql> insert into starcraft values (aa4, È÷µå¶ó,75); Query OK, 1 row affected (0.00 sec) mysql> insert into starcraft values (aa5, »½ÀÌ¿ä,150); Query OK, 1 row affected (0.00 sec) mysql> select * from starcraft; +------+--------+-------+ | id | name | price | +------+--------+-------+ | aa1 | ¸¶¸° | 50 | | aa2 | µå·¡°ï | 250 | | aa3 | ĵµð | 150 | | aa4 | È÷µå¶ó | 75 | | aa5 | »½ÀÌ¿ä | 150 | +------+--------+-------+ 5 rows in set (0.00 sec) mysql>