mSQL Database Dumper
DATABASE : hypers
This page will dump the contents and structure of a table or entire database
in ASCII format. If you do not give a table name, all tables in your database
will be dumped.
Table Name:
Output:
#
# mSQL Dump (requires mSQL-1.0.6 or better)
#
# Host: localhost Database: hypers
#--------------------------------------------------------
#
# Table structure for table 'friend'
#
CREATE TABLE friend (
number CHAR(10) NOT NULL PRIMARY KEY,
first_name CHAR(10),
last_name CHAR(10),
address CHAR(10)
) \g
#
# Dumping data for table 'friend'
#
INSERT INTO friend VALUES ('1','太郎','鈴木','東京')\g
INSERT INTO friend VALUES ('2','二郎','佐藤','大阪')\g
back to mSQL menu.