# RW MySQL Dump 
# version 1.0.5
# http://right-web.net/right-dev/rwmysqldump.shtml
# mailto:developers@right-web.net
#
# Host:       localhost:3306
# User:       test
# Date_Time:  2002-08-19_00-38-06
# MySQL ver:  3.23.45
# Perl ver:   5.6.1
#-------------------------------------------------


#
# Table structure for table 'test_table_1'
#
CREATE TABLE test_table_1 (
id tinyint(4) DEFAULT '' NOT NULL  auto_increment,
text_field text DEFAULT '' NOT NULL  ,
varchar_field varchar(255) DEFAULT '' NOT NULL  ,
enum_field enum('yes','no') DEFAULT 'yes' NOT NULL  ,
timestamp_field timestamp(14) DEFAULT ''   ,
Primary key(id));


#
# Dumping data for table 'test_table_1'	
#
INSERT INTO test_table_1 VALUES ('1','This is a sample text field illustrating auto relpacing (\') character to (\\') inside text field\'s values by RW MySQL Dump because (\') character used in MySQL as text fileds quotation by default and MySQL say "Error..." when you will try restore data from a dump where (\') characters not corrected.','This is a sample varchar value 1','yes','20020531001512');
INSERT INTO test_table_1 VALUES ('2','Russain text (Win-1251) here: Этот текст демонстрирует автоматическую замену символов апостроф (\') на символ  косая черта-апостроф (\\'). Это необходимо во всех текстовых полях, так как символ апострофа без косой черты будет восприниматься MySQL, как границы текстовых полей.','Это просто поле типа varchar','no','20020531001819');


#
# Table structure for table 'test_table_2'
#
CREATE TABLE test_table_2 (
id tinyint(4) DEFAULT '' NOT NULL  auto_increment,
text_field text DEFAULT '' NOT NULL  ,
varchar_field varchar(255) DEFAULT '' NOT NULL  ,
enum_field enum('yes','no') DEFAULT 'yes' NOT NULL  ,
timestamp_field timestamp(14) DEFAULT ''   ,
Primary key(id));


#
# Dumping data for table 'test_table_2'	
#
INSERT INTO test_table_2 VALUES ('1','This is a sample text field illustrating auto relpacing (\') character to (\\') inside text field\'s values by RW MySQL Dump because (\') character used in MySQL as text fileds quotation by default and MySQL say "Error..." when you will try restore data from a dump where (\') characters not corrected.','This is a sample varchar value 1','yes','20020531001512');
INSERT INTO test_table_2 VALUES ('2','Russain text (Win-1251) here: Этот текст демонстрирует автоматическую замену символов апостроф (\') на символ  косая черта-апостроф (\\'). Это необходимо во всех текстовых полях, так как символ апострофа без косой черты будет восприниматься MySQL, как границы текстовых полей.','Это просто поле типа varchar','no','20020531001819');
