First pass at adding key files

This commit is contained in:
dsainty
2024-06-17 21:49:12 +10:00
commit aa25e9347f
1274 changed files with 392549 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/sh
# Remove compiled files
rm -f templates/compiled/*.*
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
find . \( -name '*.pl' -or -name '*.cgi' -or -name '.perms' -or -name '*.sh' \) -exec chmod a+x {} \;
find templates -maxdepth 1 -exec chmod a+wX {} \;
chmod a+x .perms

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,296 @@
# ==================================================================
# MySQLMan - web based MySQL manager.
#
# Website : http://gossamer-threads.com/
# Support : http://gossamer-threads.com/scripts/support/
# CVS Info : 087,071,086,086,085
# Revision : $Id: README,v 1.4 2002/01/04 01:39:53 alex Exp $
#
# Copyright (c) 2000 Gossamer Threads Inc. All Rights Reserved.
# Redistribution in part or in whole strictly prohibited.
# ==================================================================
#
# COPYRIGHT NOTICE:
#
# Copyright 2000 Gossamer Threads Inc. All Rights Reserved.
#
# This program is being distributed as shareware. It may be used and
# modified free of charge for personal, academic or non-profit
# use, so long as this copyright notice and the header above remain intact.
# Any commercial use should be registered. Please also send me an email,
# and let me know where you are using this script. By using this program
# you agree to indemnify Gossamer Threads Inc. from any liability.
#
# Selling the code for this program without prior written consent is
# expressly forbidden. Obtain permission before redistributing this
# program over the Internet or in any other medium. In all cases
# copyright and header must remain intact.
#
# Please check the README file for full details on registration.
# =====================================================================
Revision History:
Jan 2, 2002: Version 1.09 Released
- Previous versions where bug fixes only released inside Links
SQL and Gossamer Mail
- Fixes template path problems many people have had.
Dec 28, 2000: Version 1.05 Released
- queries can now be saved in the SQL Monitor
- results of searches/browse can now be dumped to a file
or to a screen.
- revamped to use GT libs, and removed CGI.pm use
Aug 31, 2000: version 1.04 Released
- made if possible to save results from browse/search(select)
to a delimited file.
- save query option implemented in SQL monitor
- modified insert so that the script supports older
versions of mySQL as well.
- made it optional to hide fields with type TIMESTAMP
- made it optional to confirm delete action
when deleting a single record.
- on the INSERT form, if the column type is a TEXT/BLOB,
<TEXTAREA> form is used instead of a regular input type.
Aug 23, 2000: version 1.03 Released
- modified fields select feature to import/export.
- added local import.
- added export to screen.
- made SQL monitor capable of reading local files.
- comments allowed in SQL Monitor.
- help documents available.
- tab-index added to insert record form.
- field order selection when adding fields.
- if a database names is needed for connections, then
the user will be prompted to enter a database name
for connection.
July 07, 2000: version 1.02 Released
- added direct link to database specified in config file.
- added SQL Dump
- added fields select feature to import/export.
- fixed bugs in table properties/insert new records.
May 19, 2000: version 1.01 Released
- Fixed login bug that returns incorrect "back" link.
- Made MySQLMan dirctory automatically stored in @INC.
- Made $script_url in mysql.cfg set to MySQLMan directory
automatically.
May 16, 2000: Version 1.0 Released
TABLE OF CONTENTS
1. Welcome
1.1 About the Script
1.2 Registration
2. Installation
3. Customizing the look.
4. Problems
1. Welcome
----------------------------------------------------
MySQLMan is a web based database manager. It allows you to
perform common maintenance and administration tasks in Mysql
(Mysql is a great mostly-free SQL database server). MySQLMan
was based off of PHPmyadmin, but written in Perl. It allows
you to do common tasks like:
- browse/create/drop databases
- browse/search/create/drop/alter tables
- import/export/dump data
- add/remove/alter table columns
- adsd/remove/alter table keys
1.1 Registration
MySQLMan is free to download, modify and use, however you
are not allowed to redistribute MySQLMan in any form without
prior written consent. Also, you are not allowed to remove the
MySQLMan link.
We ask that if you use MySQLMan, please let us know at:
http://www.gossamer-threads.com/scripts/register/.
2. Installation
----------------------------------------------------
You should find the following files in the archive (mysql)
and they should have the following permissions
Files:
----------
mysql.cgi (755) -rwxr-xr-x
html.pl (644) -rw-r--r--
mysql.cfg (644) -rw-r--r--
bases.pm (644) -rw-r--r--
constants.pm (644) -rw-r--r--
GT/ (755) -rwxr-xr-x
GT/* (644) -rw-r--r--
README.txt (644) -rw-r--r--
Directory:
----------
templates (755) -rwxr-xr-x
alter_col.html (644) -rw-r--r--
confirm.html (644) -rw-r--r--
create_field.txt (644) -rw-r--r--
create_table.html (644) -rw-r--r--
database.html (644) -rw-r--r--
demo_prompt.html (644) -rw-r--r--
edit.html (644) -rw-r--r--
fields_selection.txt (644) -rw-r--r--
functions.txt (644) -rw-r--r--
header.txt (644) -rw-r--r--
insert.html (644) -rw-r--r--
login.html (644) -rw-r--r--
login_back.html (644) -rw-r--r--
logout.html (644) -rw-r--r--
message.txt (644) -rw-r--r--
op_add_fields.html (644) -rw-r--r--
op_create_db.html (644) -rw-r--r--
op_create_table.html (644) -rw-r--r--
op_export.html (644) -rw-r--r--
op_import.html (644) -rw-r--r--
op_mysqldump.html (644) -rw-r--r--
op_rename_table.html (644) -rw-r--r--
op_sql_monitor.html (644) -rw-r--r--
page_jump.txt (644) -rw-r--r--
property.html (644) -rw-r--r--
sqlerr.html (644) -rw-r--r--
table.html (644) -rw-r--r--
table_browse.html (644) -rw-r--r--
table_select.html (644) -rw-r--r--
help (755) -rwxr-xr-x
(MySQLMan HTML help pages. You may need to save the 2 .jpg
files outside of the cgi-bin and change help_column_def.html
and help_insert.html accordingly.)
help_add_col.html (644) -rw-r--r--
help_browse.html (644) -rw-r--r--
help_column_def.html (644) -rw-r--r--
help_confirm.html (644) -rw-r--r--
help_create_db.html (644) -rw-r--r--
help_create_table.html (644) -rw-r--r--
help_db_list.html (644) -rw-r--r--
help_demo.html (644) -rw-r--r--
help_edit.html (644) -rw-r--r--
help_edit_col_def.html (644) -rw-r--r--
help_export.html (644) -rw-r--r--
help_home.html (644) -rw-r--r--
help_import.html (644) -rw-r--r--
help_insert.html (644) -rw-r--r--
help_login.html (644) -rw-r--r--
help_login_back.html (644) -rw-r--r--
help_login_dbname.html (644) -rw-r--r--
help_logout.html (644) -rw-r--r--
help_no_page.html (644) -rw-r--r--
help_properties.html (644) -rw-r--r--
help_rename.html (644) -rw-r--r--
help_select.html (644) -rw-r--r--
help_sql_dump.html (644) -rw-r--r--
help_sql_monitor.html (644) -rw-r--r--
help_sqlerr.html (644) -rw-r--r--
help_table_list.html (644) -rw-r--r--
help_toolbar.html (644) -rw-r--r--
col_def.jpg (644) -rw-r--r--
insert.jpg (644) -rw-r--r--
The only file that should be accessible from the net is mysql.cgi.
All requests to the script will go through mysql.cgi.
Make sure you edit mysql.cgi and check that the path to perl points to
Perl 5.003 or better.
Edit mysql.cfg and set "script_url" in %config to the URL
that mysql.cgi resides in. Please note that you may leave it as
"mysql.cgi" to make the path relative.
Now you can open your browser and go the the URL where mysql.cgi resides
in to run the script.
NOTE:
i. For all other options available in MySQLMan, please refer to the
config file mysql.cfg.
ii. All files in the "templates" directory are used for displaying HTML pages.
Please refer to section 3 "Customizing the look" of this readme file
for detail.
iii. All files in the "help" directory are HTML pages for MySQLMan.
3. Customizing the look
------------------------
alter_col.html - Change field/column specification page.
confirm.html - Confirm action page.
create_table.html - Lets the user to construct the specificaitons.
of fields/columns of the new table being created.
database.html - List the databases in MySQL.
demo_prompt.html - The demo message prompted in demo mode.
edit.html - Edit record page.
insert.html - Insert new record.
login.html - The log-in page.
login_back.html - The feedback page when a new login info is entered.
logout.html - Displays logout message.
op_add_fields.html - Prompts the user the number of new fields to be added.
op_create_db.html - Prompts the user for a name for the new database to be created.
op_create_table.html - Prompts the user for a name for the new table to be created
and the number of columns in the new table.
op_export.html - Displays the input fields for export.
op_import.html - Displays the input fields for import.
op_mysqldump.html - Displays the input fields for SQL Dump.
op_rename_table.html - Prompts the user for a new name for the current table.
op_sql_monitor.html - Displays the SQL Monitor text box.
property.html - Display the property table of the current table.
sqlerr.html - Displays error message.
table.html - Displays the list of tables in the database chosen.
table_browse.html - Search page that allows the user to compose a SELECT query.
table_select.html - This will display the result of any query that requires
records to be displayed.
create_field.txt - Sets up the input fields used when adding/updating columns
in a table.
fields_selection.txt - field selection (select lists) for import/export.
functions.txt - The list of functions that are available when inserting/editing
a record.
header.txt - The header of each page (menu bar)
message.txt - Feedback message of each action performed.
page_jump.txt - Input text field that takes the user to the page specified
in the field when viewing the the records in a table.
MySQLMan is template based. html.pl is used together with GT_Base.pl
and GT_Template to substitude variables in the templates with real
values. Variables in the templates are in the form <%variable_name%>.
For more detailed usage of GT_Templates please refer to the bottom of
GT_Templates.pm.
Each page in MySQLMan is saved as HTML pages. Therefore, if you are
comfortable with HTML tags, it should be a breeze to change the look to
the way you like it to be. Values are passed into the page where the
variables are located. As a result, all you need to do to change the
look is to move the variables around or remove them if you don't
want them to be displayed.
However, all of the tables generated by the script is created in mysql.cgi.
If you would like to change the layout of the tables, then you will have go
through the functions where the tables are created.
4. Problems
----------------------------------------------------
If you have any problems during the setup, please visit the support
forum of our website at:
http://www.gossamer-threads.com/perl/forum/
Good Luck!
Alex

View File

@ -0,0 +1,43 @@
#!/usr/local/bin/perl
# ==================================================================
# MySQLMan - web based MySQL manager.
#
# Website : http://gossamer-threads.com/
# Support : http://gossamer-threads.com/scripts/support/
# CVS Info : 087,071,086,086,085
# Revision : $Id: mysql.cgi,v 1.54 2003/09/25 04:13:08 jagerman Exp $
#
# Copyright (c) 2000 Gossamer Threads Inc. All Rights Reserved.
# Redistribution in part or in whole strictly prohibited.
# ==================================================================
#
# Auto set the path. If the path is not set automatically then
# change the following line and fill in the full path.
use lib '/var/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin';
use strict;
# (You may need change the auto set path part of mysql.cfg as well.)
#
use MySQLMan;
$|=1;
BEGIN {
$SIG{__DIE__} = sub {
require Carp;
print "Content-type: text/html\r\n\r\n<pre>";
print "Died: @_\n";
Carp::confess("@_\n");
};
}
main();
sub main {
# ---------------------------------------------------
# The main program.
#
my $mysql = new MySQLMan;
$mysql->process;
}

View File

@ -0,0 +1,16 @@
#!/bin/sh
# This script creates the symlinks needed for a checked out GMail to run
# properly, including fileman.
die() {
echo "$*" 1>&2
exit 1
}
[ "`basename \`pwd\``" = "mysqlman" -a -e "symlink.sh" ] || die "Must be run from mysqlman directory"
[ -d ../library/GT ] || die "Could not find library modules; perhaps you don't have library checked out?"
ln -snf ../library/{GT,*.pm} . || die "Could not link library modules; perhaps you don't have library checked out?"
echo "Good to go!"

View File

@ -0,0 +1,110 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Change Column Specification
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Change Column Specification</b>
</td></tr>
<tr><td>
<%include header.txt%>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='alter_table'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=col VALUE="<%col%>">
<INPUT TYPE="hidden" NAME=action VALUE="do_alter_col">
<INPUT TYPE="hidden" NAME=num_of_fields VALUE="1">
<table border="2" BGCOLOR="#FFFFCC">
<tr>
<th>Field</th>
<th>Type</th>
<th>Length/Set</th>
<th>Attributes</th>
<th>Null</th>
<th>Default</th>
<th>Extra</th>
</tr>
<tr>
<td width="103" height="1">
<INPUT TYPE="text" NAME="field_0" VALUE="<%field%>">
</td>
<td width="103" height="1" valign="middle" align="center">
<select size="1" name="type_0" VALUE="<%type%>">
<%type_select%>
<option>TINYINT</option>
<option>SMALLINT</option>
<option>MEDIUMINT</option>
<option>INT</option>
<option>BIGINT</option>
<option>FLOAT</option>
<option>DOUBLE</option>
<option>DECIMAL</option>
<option>DATE</option>
<option>DATETIME</option>
<option>TIMESTAMP</option>
<option>TIME</option>
<option>YEAR</option>
<option>CHAR</option>
<option>VARCHAR</option>
<option>TINYBLOB</option>
<option>TINYTEXT</option>
<option>BLOB</option>
<option>TEXT</option>
<option>MEDIUMBLOB</option>
<option>MEDIUMTEXT</option>
<option>LONGBLOB</option>
<option>LONGTEXT</option>
<option>ENUM</option>
<option>SET</option>
</select>
</td>
<td width="103" height="1">
<INPUT TYPE="text" NAME="length_set_0" VALUE="<%length_set%>">
</td>
<td width="103" height="1">
<select size="1" name="attributes_0" VALUE="<%attributes%>">
<%attribute_select%>
<option></option>
<option>BINARY</option>
<option>UNSIGNED</option>
<option>UNSIGNED ZEROFILL</option>
</select>
</td>
<td width="103" height="1">
<select size="1" name="null_0" VALUE="<%null%>">
<%null_select%>
<option>NULL</option>
<option>NOT NULL</option>
</select>
</td>
<td width="103" height="1">
<INPUT TYPE="text" NAME="default_0" VALUE="<%default%>">
</td>
<td width="103" height="1" valign="middle" align="center">
<select size="1" name="extra_0" VALUE="<%extra%>">
<%extra_select%>
<option></option>
<option>AUTO_INCREMENT</option>
</select>
</td>
</tr>
</table><P>
<table>
<tr><td><INPUT TYPE="submit" value=" Update Column Specification ">
</FORM>
</td><td><FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='property'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="submit" value=" Cancel ">
</FORM></td></table>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,47 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Confirm Action
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Confirm Action</b>
</td></tr>
<tr><td>
<%include header.txt%>
<P>
<UL>
<FONT COLOR="red"><B>Do you really want to perform the following action?</B></FONT><P>
<TABLE BORDER="2" CELLPADDING=10>
<TR><TD>
<%query%>
</TD></TR>
</TABLE>
<P>
<Table><TR>
<TD>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE="<%do%>">
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=db VALUE="<%db%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=action VALUE="<%action%>">
<INPUT TYPE="hidden" NAME=query VALUE="<%query_param%>">
<INPUT TYPE="hidden" NAME=comfirmed VALUE="1">
<INPUT TYPE="hidden" NAME=col VALUE="<%col%>">
<INPUT TYPE="hidden" NAME=key_name VALUE="<%key_name%>">
<INPUT TYPE="submit" VALUE=" YES ">
</FORM>
</TD>
<TD>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="button" onclick="history.go(-1)" VALUE=" NO ">
</FORM>
</TD>
</TR>
</TABLE>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,69 @@
<tr>
<td width="103" height="1">
<INPUT TYPE="text" NAME="field_<%field_num%>">
</td>
<td width="103" height="1" valign="middle" align="center">
<select size="1" name="type_<%field_num%>">
<option>TINYINT</option>
<option>SMALLINT</option>
<option>MEDIUMINT</option>
<option>INT</option>
<option>BIGINT</option>
<option>FLOAT</option>
<option>DOUBLE</option>
<option>DECIMAL</option>
<option>DATE</option>
<option>DATETIME</option>
<option>TIMESTAMP</option>
<option>TIME</option>
<option>YEAR</option>
<option>CHAR</option>
<option>VARCHAR</option>
<option>TINYBLOB</option>
<option>TINYTEXT</option>
<option>BLOB</option>
<option>TEXT</option>
<option>MEDIUMBLOB</option>
<option>MEDIUMTEXT</option>
<option>LONGBLOB</option>
<option>LONGTEXT</option>
<option>ENUM</option>
<option>SET</option>
</select>
</td>
<td width="103" height="1">
<INPUT TYPE="text" NAME="length_set_<%field_num%>">
</td>
<td width="103" height="1">
<select size="1" name="attributes_<%field_num%>">
<option></option>
<option>BINARY</option>
<option>UNSIGNED</option>
<option>UNSIGNED ZEROFILL</option>
</select>
</td>
<td width="103" height="1">
<select size="1" name="null_<%field_num%>">
<option>NULL</option>
<option>NOT NULL</option>
</select>
</td>
<td width="103" height="1">
<INPUT TYPE="text" NAME="default_<%field_num%>">
</td>
<td width="103" height="1" valign="middle" align="center">
<select size="1" name="extra_<%field_num%>">
<option></option>
<option>AUTO_INCREMENT</option>
</select>
</td>
<td width="54" height="1" align="center" valign="middle">
<input type="checkbox" name="primary_<%field_num%>" value="ON"></p>
</td>
<td width="45" height="1" valign="middle" align="center">
<input type="checkbox" name="index_<%field_num%>" value="ON"></p>
</td>
<td width="51" height="1" valign="middle" align="center">
<input type="checkbox" name="unique_<%field_num%>" value="ON"></p>
</td>
</tr>

View File

@ -0,0 +1,52 @@
<HTML>
<HEAD>
<TITLE>MySQLMan: Create New Table</TITLE>
</HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Create New Table</b>
</td></tr>
<tr><td>
<%include header.txt%>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE=<%do%>>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=num_of_fields VALUE="<%num_of_fields%>">
<INPUT TYPE="hidden" NAME=action VALUE="add_col">
<INPUT TYPE="hidden" NAME=position VALUE="<%position%>">
<table border="2" bgcolor="#FFFFCC">
<tr>
<th>Field</th>
<th>Type</th>
<th>Length/Set</th>
<th>Attributes</th>
<th>Null</th>
<th>Default</th>
<th>Extra</th>
<th>Primary</th>
<th>Index</th>
<th>Unique</th>
</tr>
<%columns%>
</table><P>
<%if do eq create_table%>
<INPUT TYPE="submit" value=" Create Table ">
<%endif%>
<%if do eq alter_table%>
<INPUT TYPE="submit" value=" Add Column ">
<%endif%>
</FORM>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,45 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Database list
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Database list</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<%if feedback%>
<%include message.txt%>
<P>
<%endif%>
<FONT SIZE= "3">
<%ifnot db_table_cnt%>
<TABLE BORDER=2 CELLPADDING=10>
<TD>There are no Databases in MySQL _OR_<BR>
The Server may not be Running.
</TD>
</TABLE>
<%else%>
<TABLE BORDER=2><TR><TH>DATABASE</TH><TH>ACTION</TH></TR>
<%loop db_table%>
<TR>
<TD>
<a href="<%script_url%>?<%do_param%>=tables&data_source=DBI:mysql:<%name%>"><%name%></a>
</TD>
<TD>
<a href="<%script_url%>?<%do_param%>=database&data_source=DBI:mysql:<%name%>&action=drop_db&db=<%name%>">Drop</a>
</TD>
</TR>
<%endloop%>
</TABLE>
<%endif%>
</FONT>
</UL>
</td></tr>
</table>
</BODY>
</HTML>

View File

@ -0,0 +1,25 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Demo Message
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Demo Message</b>
</td></tr>
<tr><td>
<%include header.txt%>
<P>
<UL>
<table border=1 width=50% cellpadding=10>
<TR><TD colspan="2"><b>Demo Prompt</b></TD></TR>
<TR><TD colspan="2">This is only a demo of the real script.
Your request would normally have been executed.
Please click back to go back to the previous page<P>
<B><%demo_message%></B></TD></TR>
<TR><TD width=20%><a href="javascript:history.go(-1)">Back</a></TD><TD Width=80%></TD></TR>
</table>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,36 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Edit Record
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Edit Record</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='modify'>
<INPUT TYPE="hidden" NAME=action VALUE='update'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=browse_action VALUE="<%browse_action%>">
<INPUT TYPE="hidden" NAME=record_modify VALUE="<%record_modify%>">
<INPUT TYPE="hidden" NAME=page VALUE="<%page%>">
<INPUT TYPE="hidden" NAME=sort_index VALUE="<%sort_index%>">
<INPUT TYPE="hidden" NAME=fields VALUE="<%fields%>">
<INPUT TYPE="hidden" NAME=where VALUE="<%where%>">
<INPUT TYPE="hidden" NAME=example VALUE="<%example%>">
<%form_hidden%>
<table>
<TD bgcolor="#FFFFCC">
<%include insert_fields.html%>
</TD>
</table>
<P>
<INPUT TYPE="submit" value=" Go "></FORM>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,26 @@
<table width=80%>
<tr>
<td width=45% align="center"><U><B>Fields in table <%table%></B></U></td>
<td width=10%></td>
<td width=45% align="center"><U><B>Fields selected</B></U></td>
<tr>
<tr>
<td align="center" valign="center">
<select size="<%size%>" name="ImportLeft">
<option value="">----------------------------</option>
<%field_options%>
</select></td>
<td align="center" valign="center">
<!-- <input type="button" value="Add All &gt;" onclick="AddAll('ImportLeft', 'ImportRight');"><br> -->
<input type="button" value="Add &gt;" onclick="AddIt('ImportLeft', 'ImportRight');"><BR><BR>
<input type="button" value="Clear" onclick="Clear('ImportRight');"><br>
</td>
<td align="center" valign="center" rowspan="4">
<select size="<%size%>" name="ImportRight" multiple>
<option value="">----------------------------</option>
<%empty_options%>
</select></td>
</tr>
</table>

View File

@ -0,0 +1,17 @@
<select name=*insert*_<%field%>_function><option>
<option>ASCII
<option>CHAR
<option>SOUNDEX
<option>CURDATE
<option>CURTIME
<option>FROM_DAYS
<option>FROM_UNIXTIME
<option>NOW
<option>PASSWORD
<option>PERIOD_ADD
<option>PERIOD_DIFF
<option>TO_DAYS
<option>USER
<option>WEEKDAY
<option>RAND
</select>

View File

@ -0,0 +1,57 @@
<table border="1" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td width="80%"><b><font face="Verdana, Arial, Helvetica" size="4"><A href="<%home_url%>">Top</A> :
<A href="<%script_url%>">MySQL</A>
<%if db%> : <A href="<%script_url%>?<%do_param%>=tables&data_source=<%data_source%>"><%db%></A><%endif%>
<%if table%><%ifnot do eq create_table%>: <%table%> <%if page > 1%> (page <%page%>) <%endif%> <%endif%> <%endif%>
</td>
<td width="20%" align="right">
<font face="Verdana, Arial, Helvetica" size="2">
<b>Help:</b>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home" target="a">Home</a> |
<a href="<%script_url%>?<%do_param%>=help&help_topic=<%help_topic%>" target="a">Page</a>
</font>
</td>
</tr>
<tr>
<%ifnot db%><td width="80%" valign=top><%endif%>
<%if db%><td width="80%"><%endif%><font face="Verdana, Arial, Helvetica" size="2"><b>Databases:</b>
<A href="<%script_url%>?<%do_param%>=show_dbs">List</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&action=create_db">Create</A>
<%if db%>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&table=<%ifnot do eq create_table%><%table%><%endif%>&action=sql_monitor">SQL Monitor</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&table=<%ifnot do eq create_table%><%table%><%endif%>&action=mysqldump">SQL Dump</A>
<%endif%>
| <A href="<%script_url%>?<%do_param%>=login&data_source=<%data_source%>&table=<%ifnot do eq create_table%><%table%><%endif%>">Login</A>
| <A href="<%script_url%>?<%do_param%>=logout">Logout</A>
<br>
<%if db%>
<b>Tables:</b>
<A href="<%script_url%>?<%do_param%>=tables&data_source=<%data_source%>">List</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&action=create_table">Create</A>
<%if table%>
<%ifnot do eq create_table%>
| <A href="<%script_url%>?<%do_param%>=browse&data_source=<%data_source%>&table=<%table%>&page=1&action=browse">Browse</A>
| <A href="<%script_url%>?<%do_param%>=select&data_source=<%data_source%>&table=<%table%>&page=1&action=select">Search</A>
| <A href="<%script_url%>?<%do_param%>=property&data_source=<%data_source%>&table=<%table%>">Properties</A>
| <A href="<%script_url%>?<%do_param%>=insert&data_source=<%data_source%>&table=<%table%>">Insert</A>
| <A href="<%script_url%>?<%do_param%>=modify&data_source=<%data_source%>&table=<%table%>&action=empty_table&skip_url=1">Empty</A>
| <A href="<%script_url%>?<%do_param%>=modify&data_source=<%data_source%>&table=<%table%>&action=drop_table&skip_url=1">Drop</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&table=<%table%>&action=import">Import</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&table=<%table%>&action=export">Export</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&table=<%table%>&action=rename_table">Rename</A>
| <A href="<%script_url%>?<%do_param%>=top_level_op&data_source=<%data_source%>&table=<%table%>&action=add_fields">Add_Fields</A>
<%endif%>
<%endif%>
<%endif%>
</font></td>
<td width="20%">
<p align="right"><a href="http://www.gossamer-threads.com/scripts/"><font face="Verdana, Arial, Helvetica" size="1">MySQLMan
v. <%version%><br>
<20> 2000 Gossamer Threads Inc.</font></a></td>
</tr>
</table>
<P>

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,79 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Add Fields</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Add Fields</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Add more columns/fields to an existing table. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
Before defining the <a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">structure</a> of the columns, you are required to enter the number of fields to be added and the position of these new fields first. Enter the number of fields to be added in the input text field and choose a position from the drop-down menu. Press "Go" to continue.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define column structure</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,112 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Record Display</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Record Display</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Browse displays all the records in the table specified. If the page is arrived from the <a href="<%script_url%>?<%do_param%>=help&help_topic=select">select/search</a> form,
then records that satisfy the searching criteria are displayed here.
</P>
<P>
If the page is arrived from <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>,
then the result of the query entered is displayed here as well. The moniter text
window is present on top of the result table so that another query can be entered conveniently.
</P>
<UL>
<li><B>Delete / Edit</B>
<BR>You can delete/edit a record at a time by clicking on "delete"/"<a href="<%script_url%>?<%do_param%>=help&help_topic=edit">edit</a>" link at the end of each record.
However, there must be a primary key in the table. If there is not a primary key, then the links are disabled.
By default, you will be prompted to confirm your action before deleting a record. However, you can turn
the option off by setting <i>confirm_delete_record</i> to 0 in the config file (mysql.cfg).
<P>
Also, these actions are not available if a query was sent to mySQL using <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>.
</li>
<P>
<li>
<B>Jumping though pages</B>
<BR>If the number of records displayed is greater than <i>page_length</i>, then you can go to a page directly by entering the page number in the input box next to "Goto Page:". Then, click "Go" to go to page. You can also "flip" through the pages by clicking on "Next page"/"Privious page"/"Top page" to goto next/previous/first page. Please refer to <B>Number of records per page</B> for more details on how to set <i>page_length</i>.
</li>
<P>
<li>
<B>Null values</B>
<BR>If a cell is null, then <font color=green>NULL</font> will be displayed in the cell. If you would like the cell to be blank instead, you can turn the option off in the config file (mysql.cfg). Set <i>show_null</i> in <font color=brown>%config</font> to <B>0</B> to turn the option off.
</li>
<P>
<li>
<B>Number of records per page</B>
<BR>The number of records per page can be set in the config file (mysql.cfg). This can be changed by
changing <i>page_length</i> in <font color=brown>%config</font>. The default value is 20.
</li>
<P>
<li>
<B>Sort by column</B>
<BR>The records can be sorted by different fields. The this can be done by clicking on the column names. By default, the result is sorted by the first column.
Please note that results from <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL monitor</a> cannot be
sorted this way. ORDER BY... clause needs to be specified by the user in the query.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL monitor</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=edit">Edit</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,144 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Define Column Structure</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Define Column Structure</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
After having specified the name of the table to be
<a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">created</a> or the number of fields to <a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">add</a> to existing table,
you will be prompted to define the structure of the table.
The number of rows of the form will equal to the number fields you specified in the previous page. Fill the fields accordingly to specify the structure of the table and press "Create Table"/"Add Column" to create
the table/add the columns. Please note that all rows must be filled, otherwise an error will occur.
<P>
For more details regarding to CREATE TABLE... query, please refer to mySQL online reference at <a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#CREATE_TABLE">
http://www.mysql.com/Manual_chapter/manual_Reference.html#CREATE_TABLE</a>
<P>
For more details regarding to ALTER TABLE... ADD [COLUMN]... query, please refer to mySQL online reference at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#ALTER_TABLE">
http://www.mysql.com/Manual_chapter/manual_Reference.html#ALTER_TABLE</a>
</P>
<UL>
<li>
<B>The form</B>
<UL>
<B>Field</B>
<BR>Put field names here. For details on legal names, please refer to mySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>
<P>
<B>Type</B>
<BR>Specify the column types here from the list. For details on column types, please refer to
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Column_types">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Column_types</a>
<P>
<B>Length/Set</B>
<BR>For types like CHAR or INT, you will need to specify lengths for them. To have INT(10),
you should have 'INT' selected under column <B>Type</B> and '10' under column <B>Length/Set</B>.
<P>
If a field is given a type SET or ENUM, then you need to specify the options here as well. You must quote
each option with single quotes and escape characters with a back-slashes (\). In addition. the options should be separated by commas. Please refer to the end of the page for an example.
<P>
<B>Attributes</B>
<BR>Attributes for numeric types
<P>
<B>Null</B>
<BR>NUll if null values are allowed in the field, NOT NULL otherwise.
<P>
<B>Default</B>
<BR>Default value for the field.
<P>
<B>Extra</B>
<BR>Set the field auto_increment.
<P>
<B>Primary/Index/Unique</B>
<BR>Check the checkboxes to make the fields primary/index/unique keys.
</UL>
</li>
<P>
<li>
<B>An example</B>
<BR>To create a table with the following query
<blockquote>
<font size="2">
CREATE TABLE <i>new_table</i> (<BR>
&nbsp;&nbsp;&nbsp;ID int(10) unsigned NOT NULL auto_increment,<BR>
&nbsp;&nbsp;&nbsp;Color enum('red','blue','yellow') NOT NULL,<BR>
&nbsp;&nbsp;&nbsp;Features set('A\\C','power lock'),<BR>
&nbsp;&nbsp;&nbsp;PRIMARY KEY (ID)<BR>
)<BR>
</font>
</blockquote>
Fill the form as follows:
<BR>(Note that you need to escape '\' with '\' in column <B>Length/Set</B> for field 'Features')
<blockquote>
<img src="mysql.cgi?<%do_param%>=help&help_topic=col_def.jpg">
</blockquote>
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">Create table</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">Add fields</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,65 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Change Column Structure</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Change Column Structure</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You can modify the definition of a column by following the link "Change" at the end of it's row in the
<a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Table Property</a> table. The fields in the modify form
are pre-filled with the current structure of the column selected. For more details, please refer to the
help page on <a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define Column Structure</a>.
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Table Property</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define Column Structure</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,70 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Confirm Action</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Confirm Action</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Press "YES" to confirm the action or press "NO" to return to the previous page without performing the action.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,72 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Create New Table</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Create New Table</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Create a new database in mySQL. To create a new database, go to the "Create" link in "Database: List | Create ..." in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>. Then, put the name of the new database to be
created in the input text area on the following page and press "Create" to create the database.
For more details regarding to legal names in mySQL, please refer to mySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,82 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Create New Table</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Create New Table</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Before defining the <a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">table structure</a> of the table to be
created, you need to specify the name of the table and the number of columns there are going to be in the table. This
function is available in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>.
For more details regarding to legal names in mySQL, please refer to mySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Defining column specification</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,87 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Database List</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Database List</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
List all databases in mySQL. This is the first page you see if <I>direct_connect</I> is turned off
in the config file. Or, you can go to the list by clicking on either "Mysql" or the "list" link following "Database:" in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>. Please refer to the config file for more information on <I>direct_connect</I>.
<P>
Click on a database name to see the <a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">
list</a> of tables in that database.
</P>
<UL>
<li>
<B>Removing database</B>
<BR>Click on the "Drop" link beside the database name to remove the database from mySQL.
<BR><FONT COLOR=GREEN>(action will be confirmed)</FONT>
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table list</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,96 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Demo</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Demo</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
This is only the demo version of MySQLMan. It is setup for you so that you can have a better idea on what MySQLMan can do for you before downloading the script. The feature you selected is available in the regular version on MySQLMan and it is available for download at
<BLOCKQUOTE>
<table>
<tr>
<td><FONT face="Verdana, Arial, Helvetica" size="2">
zip </FONT>
</td>
<td>
: <a href="http://www.gossamer-threads.com/scripts/source/MySQLMan.zip"><FONT face="Verdana, Arial, Helvetica" size="2">
http://www.gossamer-threads.com/scripts/source/MySQLMan.zip</FONT></a>
</td>
</tr>
<tr>
<td><FONT face="Verdana, Arial, Helvetica" size="2">
tar.gz </font>
</td>
<td>
: <a href="http://www.gossamer-threads.com/scripts/source/MySQLMan.tar.gz">
<FONT face="Verdana, Arial, Helvetica" size="2">http://www.gossamer-threads.com/scripts/source/MySQLMan.tar.gz
</FONT></a>
</td>
</tr>
</table>
</BLOCKQUOTE>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,80 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Edit</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Edit</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Edit a record in a table. You are only allowed to edit a record if a primary key is defined for the table.
You can edit a record while browsing the table or searching
The page works similar to <a href="<%script_url%>?<%do_param%>=help&help_topic=insert">insert</a>.
The only difference is that the input fields will be pre-filled with current
value of the record. For more details, please refer to the help page on Insert.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,94 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Export</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Export</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Export data in a table to a file or to the screen. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
<P>
Please note that import is just a frontend for mySQL's SELECT... INTO OUTFILE... command.
For more details, please refer to mySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#SELECT">
http://www.mysql.com/Manual_chapter/manual_Reference.html#SELECT</a>
</P>
<UL>
<li>
<B>Run as default</B>
<BR>Press "Export" to print the info to screen.
<P>
Or, choose "Export to file" and enter the the path to the export file in the text field after "Path:" then press "Export". Please note that the file cannot already exist.
</li>
<P>
<li>
<B>Export selected fields</B>
<BR>If you do not wish to export all the fields in the table selected to the file, then you can
select the fields that you want to export. First of all, check "Selected Fields". Fields in the
current table are displayed in <B>Fields in table <i>table_name</i></B> window. You then add the
fields that you wish to export from that window to the window <B>Fields selected</B> one at a time by clicking on "Add >" after each field
is selected in <B>Fields in table <i>table_name</i></B> window. Please note that in the exported file, the order of the data fields will follow the order of fields selected in the <B>Fields selected</B> window.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=import">Import</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,100 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - HOME</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">HOME</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Database:
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=db_list">Database list</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=create_db">Create a new database</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=sql_dump">SQL Dump</a>
</UL>
Table:
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table list</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">Create a new table</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=rename">Rename table</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">add a new column to table</a>
<BR>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Table property</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define column structure</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=col_def_change">Change column structure</a>
<BR>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Record display</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select / Search</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=save_search_result">Save Browse/Search Result</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert new record</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=edit">Edit</a>
<BR>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=import">Import</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a>
</UL>
Other:
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=login_dbname">Login - Database name</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=login_back">Login - Confirmation</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=logout">Logout</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=confirm">Confirm</a>
</UL>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=sqlerr">If you are stuck...</a>
</P>
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,100 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Import</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Import</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Import data in a delimited file into a table. The file can be located on the server or on local drive. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
<P>
Please note that import is just a frontend for mySQL's LOAD DATA INFILE command. For more details, please refer to
mySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#LOAD_DATA">http://www.mysql.com/Manual_chapter/manual_Reference.html#LOAD_DATA</a>
</P>
<UL>
<li>
<B>Run as default</B>
<BR>Enter the the path to the import file in the text field after "File:" then press "Import".
</li>
<P>
<li>
<B>Import selected fields</B>
<BR>If the fields in the file does not match the number or the order of the fields in the table,
then you can select the fields that you want to import.
First of all, check "Selected Fields".
Fields in the current table are displayed in <B>Fields in table <i>table_name</i></B> window.
You then add the fields that you wish to import from that window to the window <B>Fields selected</B>
one at a time by clicking on "Add >>" after each field is selected in <B>Fields in table <i>table_name</i></B> window.
Please note that the order in the window <B>Fields selected</B> should match the order of the fields in the file.
</li>
<P>
<li>
<B>Local Import</B>
<BR>If local import is select, the file is read from the client host. If not, then the file must be located on the server. (Available in MySQL 3.22.6 or later.)
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,115 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Insert</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Insert</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Insert a new record to the table specified. The insert form can be found by following the link "insert"
in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> or the <a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">table list</a>. To insert a record into to that table,
you simply put the values in the "VALUE" column and then press "GO" once the text fields are filled.
</P>
<UL>
<li>
<B>Using functions</B>
<BR>To use the functions in INSERT, you need to first choose the function you need from the select list in
"Function" column. Then, enter the values for the functions in the column "Value".
</li>
<P>
For example to run<BR>
<tt>
<font size=2>
&nbsp;&nbsp;&nbsp;&nbsp;INSERT INTO <I>table_name</I><BR>
&nbsp;&nbsp;&nbsp;&nbsp;SET Datetime = NOW(), PASSWORD('MyPass')
</font>
</tt>
<P>
Here is what you put in the form:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<img src="mysql.cgi?<%do_param%>=help&help_topic=insert.jpg">
</li>
<P>
<li>
<B>Insert null values</B>
<BR>In the config file, if you have <I>insert_null</I> (in %config) set to 1, then there will be an extra colunm at
the end of the table called "Null". If a field is set to NULL, then there would be a checkbox for the field in
the column; there will not be one otherwise. Check the checkbox and leave the "Value" input text box blank to insert a record with that field being null. If both a value is entered in "Value" and "Null" checkbox is checked
for a field, then the value in "Value" will be taken and the check in the "Null" Checkbox will be ignored.
</li>
<P>
<li>
<B>Escape character</B>
<BR>Values entered in "Value" will be escaped automatically by the script. I.e. you do not need to
put a escape character (\) in before a single quote ('), etc.
</li>
<P>
<li>
<B>Fields with type TIMESTAMP</B>
<BR>Fields with type TIMESTAMP is hidden by default. You can have these fields shown by setting
<i>show_timestamp_field</i> to 1 in the config file (mysql.cfg).
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table List</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,86 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Login</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Login</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
MySQL client programs generally require that you specify connection parameters when you want to access a MySQL server: the host you want to connect to, your user name and your password. If the host is left blank then 'localhost' is used by default. Please note that the login info is saved in cookies. You will need to enable cookies in order to log in.
<P>
If you performed an action that you were not given the privilege to perform, the script will prompt you to enter log in as another user.
<P>
While using MySQLMan, you can switch to another user anytime by clicking on the "login" link on the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> and enter another host/username/password set. After to values are set to cookies, you will be brought to the page where you clicked the "login" link. However, if the user you just switched to does not have the privilege to see that page, then you will be prompted to login again.
<P>
For more informaiton on the MySQL access privilege system, please refer to mySQL online manual at <a href="http://www.mysql.com/documentation/mysql/bychapter/manual_Privilege_system.html#Privilege_system">
http://www.mysql.com/documentation/mysql/bychapter/manual_Privilege_system.html#Privilege_system</a>
</P>
<UL>
<li>
<B>Skipping the login page</B>
<BR>You can skip the login page and connect to a database directly by setting "direct_connect" to 1 in the config file (mysql.cfg). I.e.
<BLOCKQUOTE>
# CONNECTION<br>
# --------------------------------------------------------<br>
# MySQLMan allows user to skip the login page and connect<br>
# to a database directly. (On = 1, Off = 0)<br>
&nbsp;&nbsp;&nbsp;&nbsp;direct_connect => 1,<br>
</BLOCKQUOTE>
You will need to set "direct_db", "direct_host", etc. as necessary. Please refer to the config file for more detail.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,75 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Login - Confirmation</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Login - Confirmation</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
The login info should be stored as cookies. You should be automatically transferred back to the page you were at. If not, please click "Back" to go back.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,75 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Login - Database name</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Login - Database name</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You may need to supply a database name when you login. Usually, after you have submitted the login info, the script connects to mySQL with <BLOCKQUOTE>DBI:mysql:host=<i>host_name</i></BLOCKQUOTE> and displays the list of databases in mySQL. If this is not allowed, then you will need to supply a database name for connection so that the script can connect with <BLOCKQUOTE>DBI:mysql:<i>database_name</i>:<i>host_name</i></BLOCKQUOTE>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,75 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Logout</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Logout</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Clears login info from cookies. You can <a href="<%script_url%>?<%do_param%>=help&help_topic=login">login</a> again by clicking on the link "LOGIN TO MySQLMan".
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,120 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Properties</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Properties</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You can see the property of a table by following the "properties" link in
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">table list</a> or <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>. Two
tables will be displayed in the the page: property table and key table.
</P>
<UL>
<li>
<B>Property Table</B>
<BR>The table shows the result of a DESCRIBE <I>table_name</I> query. You can find the
following functions available at the end of each field in the property table:
<P>
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def_change"><B>Change</B></a>
<BR>Change column definition
<P>
<B>Drop</B>
<BR>Remove the column from the table.
<BR><font color="green">(action will be confirmed)</font>
<P>
<B>Primary</B></a>
<BR>Set the column as the primary key for the table.
<P>
Please note that if you need a primary key consisting of two or more columns, you will need to specify it when
creating the table in MySQLMan. If there is a primary key already existed in the table, then you will receive the
error message <I>Duplicate key name 'key_name'</I>.
<P>
Also, if you set a column as the primary by clicking "primary", the column will be set to NOT NULL automatically.
<P>
<B>Index</B>
<BR>Set the column as a index key for the table.
<P>
<B>Unique</B>
<BR>Set the column as a unique key for the table.
</UL>
</P>
</li>
<P>
<li>
<B>Key Table</B>
<BR>A key table will be shown here as well if there are any keys defined in the table.
<P>
<UL>
<B>Droppign a key</B>
<BR>A key can be dropped by clicking on "Drop". <font color="red">Please note that you will not be prompted to
confirm the action to drop</font>.
</UL>
</P>
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def_change">Change column definition</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table List</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,76 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Rename Table</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Rename Table</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Rename the table selected. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
<P>
Enter the new name in the text input field. Press "Go" to rename the table.
For more details regarding to legal names in mySQL, please refer to mySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,69 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Save Browse/Search Result</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Save Browse/Search Result</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Save the result from either <a href="<%script_url%>?<%do_param%>=help&help_topic=browse">browse</a> or <a href="<%script_url%>?<%do_param%>=help&help_topic=select">search</a> to a delimited file. The result can
also be printed to the screen without being saved to a file. The interface is similar to the one for
<a href="<%script_url%>?<%do_param%>=help&help_topic=export">export</a>. Please refer to the help page on export
for more detail
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=select">Search</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,105 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Select / Search</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Select / Search</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Select/Search creates a search form that helps the user contructing basic SELECT... FROM <i>current_table</i> (WHERE...) queries. The link can be found from the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> or the <a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">table list</a>. For more complex queries, please use <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a> instead.
</P>
<UL>
<li>
<B>SELECT checkboxes</B>
<BR>For tables with many fields, sometimes you may not wish irrelevant fields to
be shown. The check the fields that you would like to be displayed and the
fields unchecked will not be shown. The first field is checked automatically.
</li>
<P>
<li>
<B>WHERE text field</B>
<BR>It is basically the WHERE. . . clause of a mySQL query. You do not need to
have to specify the key word <i>where</i> again in the text field. Please note
that ORDER BY. . . will be appended to the end of the query automatically.
Therefore, if you would like to sort the result to sort by a particular
column, you can do it by clicking on the column name when the result is displayed.
</li>
<P>
<li>
<B>Query by example</B>
<BR>All records with fields matching the value entered in the text fields will be
retrieved. If wildcards are not used, then mySQL looks for exact matches.
<P>
Wildcard usage:
<blockquote>
Key_word% - Anything that begins with <I>Key_word</I>.<BR>
%Key_word - Anything that ends with <I>Key_word</I>.<BR>
%Key_word% - Anything that contains <I>Key_word</I>.
</blockquote>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Record Display</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL monitor</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,78 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - SQL Dump</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">SQL Dump</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Utility to dump a database for backup or for transferring the data to another SQL server. The dump will contain SQL statements to create the table and/or populate the table. The result can be printed to the screen or be saved to
a file.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,100 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - SQL Monitor</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">SQL Monitor</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
The SQL Monitor is for users to send more complex queries to mySQL that cannot be achieved by using other tools
in MySQLMan. The link to SQL Monitor can be found in the
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once you have chosen a database.
</P>
<P>
The queries can be entered in the text window, or, saved in a file.
</P>
<UL>
<li>
<B>Run queries in the text window</B>
<BR>You can enter one or more queries in the text window. If running multiple queries, you must be sure that each query starts in a new line and ends with a semi-colon (;). Please note that only the last query can be a query that requires record display (i.e. DESCRIBE..., SELECT... FROM..., or SHOW..., etc.). Queries following this type of query will not be sent to mySQL.
<P>
Please also note that each new line starting with a pound sign (#) will be
treated as a comment and will be skipped.
</li>
<P>
<li>
<B>Run queries saved in a file</B>
<BR>Queries that are saved in a file, especially a backup file created by
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_dump">SQL Dump</a>, can also be sent to mySQL in SQL Monitor.
Specify the path to the file and press "go" to begin. The same rules mentioned in <B>Run queries in the text window</B> apply here as well.
</li>
<P>
<li>
<B>Save queries</B>
<BR>Up to 10 queries entered in the text area can be saved. All queries saved will be displayed in a table below the text area. Once the 10 slots are full, the oldest query will be delete when a new query is saved. Each query can be run and deleted anytime.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_dump">SQL Dump</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,67 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - If you are stuck...</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">If you are stuck...</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
If you are stuck, please visit the support forum of our website at:
<ul>
<a href="http://www.gossamer-threads.com/perl/gforum/">http://www.gossamer-threads.com/perl/forum/</a>
</ul>
Or, you can refer to mySQL online manual at:
<ul>
<a href="http://www.mysql.com/documentation/">http://www.mysql.com/documentation/
</ul>
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,113 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Table List </TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Table List</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Table List lists all the tables in the database selected. You can find the following links beside
each table name. Each link works as follows:
</P>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a></B>
<BR>Displays all records in the table.
<P>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select</a></B>
<BR>Search for specific record(s). It helps you constructing basic "SELECT... FROM... WHERE..." query.
<P>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Properties</a></B>
<BR>Show the property of the table.
The following information will be displayed along with each field name:
<UL>
<li>Type
<li>Null
<li>Key
<li>Default
<li>Extra
</UL>
You will be able to perform the following actions in here:
<UL>
<li>Change column property
<li>Drop column
<li>Set primary key
<li>Set index
<li>Set unique
</UL>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a></B>
<BR>Insert a new record to the table.
<P>
<B>Drop</B>
<BR>Removes the table from the database.<BR>
<FONT COLOR=GREEN>(action will be confirmed)</FONT>
<P>
<B>Empty</B>
<BR>Deletes all the records in the table.<BR>
<FONT COLOR=GREEN>(action will be confirmed)</FONT>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Properties<a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,199 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Tool Bar</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Tool Bar</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You can find the tool bar on top of each page. It is created to make MySQLMan easier to navigate. The tool bar
is divided into 4 parts.
</P>
<UL>
<li>
<B>Section 1 (upper left)</B>
<BR>This section of the tool bar tells you where you are in. The status is shown in the form
<BLOCKQUOTE>Top : Mysql [: database_name] [: table_name] [(page_no)]</B></BLOCKQUOTE>
</li>
Where
<BLOCKQUOTE>
<table>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
Top </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Takes you to the URL specified in "home_url" in the config file (mysql.cfg). </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
Mysql </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Takes you to the database list. </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
database_name </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Takes you to the table list of the database. </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
table_name </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Shows the current table you are in. </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
page_no </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: The page number when veiwing records. </font></TD></TR>
</table>
</BLOCKQUOTE>
<P>
<li>
<B>Section 2 (upper right)</B>
<BR> Help pages.
<BLOCKQUOTE>
HOME - List of all help pages available.<BR>
Page - Help on the current page.
</BLOCKQUOTE>
</li>
<P>
<li>
<B>Section 3 (lower left)</B>
<BR>This is the main section of the tool bar. From here, you can find most of the functions available in
MySQLMan. These functions are categorized into 2 types - database functions and table functions.
In addition, they are divided into 3 levels as follows:
<P>
<ol>
<li>
You should see the following once logged in:
<BLOCKQUOTE>
<table border=1 cellpadding=5><tr><td><FONT face="Verdana, Arial, Helvetica" size="2">
<B>Databases:</B> List | Create | Login | Logout</font></td></tr></table>
</BLOCKQUOTE>
Each link allows you to:
<BLOCKQUOTE>
<table>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=db_list">List</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- see the list of databases.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=create_db">Create</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- create a new database.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Login </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- switch to another user.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Logout </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- logout.</td></tr>
</table>
</BLOCKQUOTE>
</li>
<li>
As a database is selected, 4 more functions become available:
<BLOCKQUOTE>
<table border=1 cellpadding=5><tr><td><FONT face="Verdana, Arial, Helvetica" size="2">
<B>Databases:</B> List | Create | SQL Monitor | SQL Dump | Login | Logout <BR>
<B>Tables:</B> List | Create </font></td></tr></table>
</BLOCKQUOTE>
The 4 additional functions are:
<BLOCKQUOTE>
<table>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- lets you send your own queries to mySQL.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">SQL Dump </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- creates queries that recreate the current database. </td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">(Table) List</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- displays the list of tables in the database.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">(Table) Create</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- create a new table in the database.</td></tr>
</table>
</BLOCKQUOTE>
</li>
<li>
As an action is selected from the <a href="<%script_url%>?<%do_param%>=help&help_topic=db_list">table list</a>,
all the functions become available:
<BLOCKQUOTE>
<table border=1 cellpadding=5><tr><td><FONT face="Verdana, Arial, Helvetica" size="2">
<B>Databases:</B> List | Create | SQL Monitor | SQL Dump | Login | Logout <BR>
<B>Tables:</B> List | Create | Browse | Search | Properties | Insert | Empty | Drop | Import | Export | Rename | Add_Fields </font></td></tr></table>
</BLOCKQUOTE>
These functions are:
<BLOCKQUOTE>
<table>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- displays all records in the table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=select">Search</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- lets you create simple SELECT... FROM <i>current_table</i> WHERE... query.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Properties</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- shows the table definition.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- insert a new record into the table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Empty </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- deletes all records from the current table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Drop </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- removes the current table from the database. </td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=import">Import</a></td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- imports data in a delimited file into the table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- exports data in the table to a delimited file.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=rename">Rename</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- renames the current table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">Add_Fields</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- adds new fields to the table.</td></tr>
</table>
</BLOCKQUOTE>
</li>
</OL>
</li>
<P>
<li>
<B>Section 4 (lower right)</B>
<BR>Link to Gossamer Threads Inc. website.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,79 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Add Fields</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Add Fields</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Add more columns/fields to an existing table. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
Before defining the <a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">structure</a> of the columns, you are required to enter the number of fields to be added and the position of these new fields first. Enter the number of fields to be added in the input text field and choose a position from the drop-down menu. Press "Go" to continue.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define column structure</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,112 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Record Display</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Record Display</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Browse displays all the records in the table specified. If the page is arrived from the <a href="<%script_url%>?<%do_param%>=help&help_topic=select">select/search</a> form,
then records that satisfy the searching criteria are displayed here.
</P>
<P>
If the page is arrived from <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>,
then the result of the query entered is displayed here as well. The moniter text
window is present on top of the result table so that another query can be entered conveniently.
</P>
<UL>
<li><B>Delete / Edit</B>
<BR>You can delete/edit a record at a time by clicking on "delete"/"<a href="<%script_url%>?<%do_param%>=help&help_topic=edit">edit</a>" link at the end of each record.
However, there must be a primary key in the table. If there is not a primary key, then the links are disabled.
By default, you will be prompted to confirm your action before deleting a record. However, you can turn
the option off by setting <i>confirm_delete_record</i> to 0 in the config file (mysql.cfg).
<P>
Also, these actions are not available if a query was sent to MySQL using <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>.
</li>
<P>
<li>
<B>Jumping though pages</B>
<BR>If the number of records displayed is greater than <i>page_length</i>, then you can go to a page directly by entering the page number in the input box next to "Goto Page:". Then, click "Go" to go to page. You can also "flip" through the pages by clicking on "Next page"/"Privious page"/"Top page" to goto next/previous/first page. Please refer to <B>Number of records per page</B> for more details on how to set <i>page_length</i>.
</li>
<P>
<li>
<B>Null values</B>
<BR>If a cell is null, then <font color=green>NULL</font> will be displayed in the cell. If you would like the cell to be blank instead, you can turn the option off in the config file (mysql.cfg). Set <i>show_null</i> in <font color=brown>%config</font> to <B>0</B> to turn the option off.
</li>
<P>
<li>
<B>Number of records per page</B>
<BR>The number of records per page can be set in the config file (mysql.cfg). This can be changed by
changing <i>page_length</i> in <font color=brown>%config</font>. The default value is 20.
</li>
<P>
<li>
<B>Sort by column</B>
<BR>The records can be sorted by different fields. The this can be done by clicking on the column names. By default, the result is sorted by the first column.
Please note that results from <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL monitor</a> cannot be
sorted this way. ORDER BY... clause needs to be specified by the user in the query.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL monitor</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=edit">Edit</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,144 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Define Column Structure</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Define Column Structure</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
After having specified the name of the table to be
<a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">created</a> or the number of fields to <a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">add</a> to existing table,
you will be prompted to define the structure of the table.
The number of rows of the form will equal to the number fields you specified in the previous page. Fill the fields accordingly to specify the structure of the table and press "Create Table"/"Add Column" to create
the table/add the columns. Please note that all rows must be filled, otherwise an error will occur.
<P>
For more details regarding to CREATE TABLE... query, please refer to MySQL online reference at <a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#CREATE_TABLE">
http://www.mysql.com/Manual_chapter/manual_Reference.html#CREATE_TABLE</a>
<P>
For more details regarding to ALTER TABLE... ADD [COLUMN]... query, please refer to MySQL online reference at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#ALTER_TABLE">
http://www.mysql.com/Manual_chapter/manual_Reference.html#ALTER_TABLE</a>
</P>
<UL>
<li>
<B>The form</B>
<UL>
<B>Field</B>
<BR>Put field names here. For details on legal names, please refer to MySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>
<P>
<B>Type</B>
<BR>Specify the column types here from the list. For details on column types, please refer to
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Column_types">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Column_types</a>
<P>
<B>Length/Set</B>
<BR>For types like CHAR or INT, you will need to specify lengths for them. To have INT(10),
you should have 'INT' selected under column <B>Type</B> and '10' under column <B>Length/Set</B>.
<P>
If a field is given a type SET or ENUM, then you need to specify the options here as well. You must quote
each option with single quotes and escape characters with a back-slashes (\). In addition. the options should be separated by commas. Please refer to the end of the page for an example.
<P>
<B>Attributes</B>
<BR>Attributes for numeric types
<P>
<B>Null</B>
<BR>NUll if null values are allowed in the field, NOT NULL otherwise.
<P>
<B>Default</B>
<BR>Default value for the field.
<P>
<B>Extra</B>
<BR>Set the field auto_increment.
<P>
<B>Primary/Index/Unique</B>
<BR>Check the checkboxes to make the fields primary/index/unique keys.
</UL>
</li>
<P>
<li>
<B>An example</B>
<BR>To create a table with the following query
<blockquote>
<font size="2">
CREATE TABLE <i>new_table</i> (<BR>
&nbsp;&nbsp;&nbsp;ID int(10) unsigned NOT NULL auto_increment,<BR>
&nbsp;&nbsp;&nbsp;Color enum('red','blue','yellow') NOT NULL,<BR>
&nbsp;&nbsp;&nbsp;Features set('A\\C','power lock'),<BR>
&nbsp;&nbsp;&nbsp;PRIMARY KEY (ID)<BR>
)<BR>
</font>
</blockquote>
Fill the form as follows:
<BR>(Note that you need to escape '\' with '\' in column <B>Length/Set</B> for field 'Features')
<blockquote>
<img src="mysql.cgi?<%do_param%>=help&help_topic=col_def.jpg">
</blockquote>
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">Create table</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">Add fields</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,65 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Change Column Structure</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Change Column Structure</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You can modify the definition of a column by following the link "Change" at the end of it's row in the
<a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Table Property</a> table. The fields in the modify form
are pre-filled with the current structure of the column selected. For more details, please refer to the
help page on <a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define Column Structure</a>.
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Table Property</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define Column Structure</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,70 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Confirm Action</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Confirm Action</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Press "YES" to confirm the action or press "NO" to return to the previous page without performing the action.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,72 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Create New Table</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Create New Table</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Create a new database in MySQL. To create a new database, go to the "Create" link in "Database: List | Create ..." in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>. Then, put the name of the new database to be
created in the input text area on the following page and press "Create" to create the database.
For more details regarding to legal names in MySQL, please refer to MySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,82 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Create New Table</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Create New Table</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Before defining the <a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">table structure</a> of the table to be
created, you need to specify the name of the table and the number of columns there are going to be in the table. This
function is available in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>.
For more details regarding to legal names in MySQL, please refer to MySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Defining column specification</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,87 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Database List</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Database List</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
List all databases in MySQL. This is the first page you see if <I>direct_connect</I> is turned off
in the config file. Or, you can go to the list by clicking on either "MySQL" or the "list" link following "Database:" in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>. Please refer to the config file for more information on <I>direct_connect</I>.
<P>
Click on a database name to see the <a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">
list</a> of tables in that database.
</P>
<UL>
<li>
<B>Removing database</B>
<BR>Click on the "Drop" link beside the database name to remove the database from MySQL.
<BR><FONT COLOR=GREEN>(action will be confirmed)</FONT>
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table list</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,96 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Demo</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Demo</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
This is only the demo version of MySQLMan. It is setup for you so that you can have a better idea on what MySQLMan can do for you before downloading the script. The feature you selected is available in the regular version on MySQLMan and it is available for download at
<BLOCKQUOTE>
<table>
<tr>
<td><FONT face="Verdana, Arial, Helvetica" size="2">
zip </FONT>
</td>
<td>
: <a href="http://www.gossamer-threads.com/scripts/source/MySQLMan.zip"><FONT face="Verdana, Arial, Helvetica" size="2">
http://www.gossamer-threads.com/scripts/source/MySQLMan.zip</FONT></a>
</td>
</tr>
<tr>
<td><FONT face="Verdana, Arial, Helvetica" size="2">
tar.gz </font>
</td>
<td>
: <a href="http://www.gossamer-threads.com/scripts/source/MySQLMan.tar.gz">
<FONT face="Verdana, Arial, Helvetica" size="2">http://www.gossamer-threads.com/scripts/source/MySQLMan.tar.gz
</FONT></a>
</td>
</tr>
</table>
</BLOCKQUOTE>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,80 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Edit</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Edit</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Edit a record in a table. You are only allowed to edit a record if a primary key is defined for the table.
You can edit a record while browsing the table or searching
The page works similar to <a href="<%script_url%>?<%do_param%>=help&help_topic=insert">insert</a>.
The only difference is that the input fields will be pre-filled with current
value of the record. For more details, please refer to the help page on Insert.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,94 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Export</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Export</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Export data in a table to a file or to the screen. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
<P>
Please note that import is just a frontend for MySQL's SELECT... INTO OUTFILE... command.
For more details, please refer to MySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#SELECT">
http://www.mysql.com/Manual_chapter/manual_Reference.html#SELECT</a>
</P>
<UL>
<li>
<B>Run as default</B>
<BR>Press "Export" to print the info to screen.
<P>
Or, choose "Export to file" and enter the the path to the export file in the text field after "Path:" then press "Export". Please note that the file cannot already exist.
</li>
<P>
<li>
<B>Export selected fields</B>
<BR>If you do not wish to export all the fields in the table selected to the file, then you can
select the fields that you want to export. First of all, check "Selected Fields". Fields in the
current table are displayed in <B>Fields in table <i>table_name</i></B> window. You then add the
fields that you wish to export from that window to the window <B>Fields selected</B> one at a time by clicking on "Add >" after each field
is selected in <B>Fields in table <i>table_name</i></B> window. Please note that in the exported file, the order of the data fields will follow the order of fields selected in the <B>Fields selected</B> window.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=import">Import</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,100 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - HOME</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">HOME</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Database:
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=db_list">Database list</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=create_db">Create a new database</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=sql_dump">SQL Dump</a>
</UL>
Table:
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table list</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">Create a new table</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=rename">Rename table</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">add a new column to table</a>
<BR>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Table property</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=col_def">Define column structure</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=col_def_change">Change column structure</a>
<BR>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Record display</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select / Search</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=save_search_result">Save Browse/Search Result</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert new record</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=edit">Edit</a>
<BR>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=import">Import</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a>
</UL>
Other:
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=login_dbname">Login - Database name</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=login_back">Login - Confirmation</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=logout">Logout</a>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=confirm">Confirm</a>
</UL>
<BR><a href="<%script_url%>?<%do_param%>=help&help_topic=sqlerr">If you are stuck...</a>
</P>
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,100 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Import</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Import</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Import data in a delimited file into a table. The file can be located on the server or on local drive. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
<P>
Please note that import is just a frontend for MySQL's LOAD DATA INFILE command. For more details, please refer to
MySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#LOAD_DATA">http://www.mysql.com/Manual_chapter/manual_Reference.html#LOAD_DATA</a>
</P>
<UL>
<li>
<B>Run as default</B>
<BR>Enter the the path to the import file in the text field after "File:" then press "Import".
</li>
<P>
<li>
<B>Import selected fields</B>
<BR>If the fields in the file does not match the number or the order of the fields in the table,
then you can select the fields that you want to import.
First of all, check "Selected Fields".
Fields in the current table are displayed in <B>Fields in table <i>table_name</i></B> window.
You then add the fields that you wish to import from that window to the window <B>Fields selected</B>
one at a time by clicking on "Add >>" after each field is selected in <B>Fields in table <i>table_name</i></B> window.
Please note that the order in the window <B>Fields selected</B> should match the order of the fields in the file.
</li>
<P>
<li>
<B>Local Import</B>
<BR>If local import is select, the file is read from the client host. If not, then the file must be located on the server. (Available in MySQL 3.22.6 or later.)
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,115 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Insert</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Insert</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Insert a new record to the table specified. The insert form can be found by following the link "insert"
in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> or the <a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">table list</a>. To insert a record into to that table,
you simply put the values in the "VALUE" column and then press "GO" once the text fields are filled.
</P>
<UL>
<li>
<B>Using functions</B>
<BR>To use the functions in INSERT, you need to first choose the function you need from the select list in
"Function" column. Then, enter the values for the functions in the column "Value".
</li>
<P>
For example to run<BR>
<tt>
<font size=2>
&nbsp;&nbsp;&nbsp;&nbsp;INSERT INTO <I>table_name</I><BR>
&nbsp;&nbsp;&nbsp;&nbsp;SET Datetime = NOW(), PASSWORD('MyPass')
</font>
</tt>
<P>
Here is what you put in the form:<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<img src="mysql.cgi?<%do_param%>=help&help_topic=insert.jpg">
</li>
<P>
<li>
<B>Insert null values</B>
<BR>In the config file, if you have <I>insert_null</I> (in %config) set to 1, then there will be an extra colunm at
the end of the table called "Null". If a field is set to NULL, then there would be a checkbox for the field in
the column; there will not be one otherwise. Check the checkbox and leave the "Value" input text box blank to insert a record with that field being null. If both a value is entered in "Value" and "Null" checkbox is checked
for a field, then the value in "Value" will be taken and the check in the "Null" Checkbox will be ignored.
</li>
<P>
<li>
<B>Escape character</B>
<BR>Values entered in "Value" will be escaped automatically by the script. I.e. you do not need to
put a escape character (\) in before a single quote ('), etc.
</li>
<P>
<li>
<B>Fields with type TIMESTAMP</B>
<BR>Fields with type TIMESTAMP is hidden by default. You can have these fields shown by setting
<i>show_timestamp_field</i> to 1 in the config file (mysql.cfg).
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table List</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,86 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Login</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Login</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
MySQL client programs generally require that you specify connection parameters when you want to access a MySQL server: the host you want to connect to, your user name and your password. If the host is left blank then 'localhost' is used by default. Please note that the login info is saved in cookies. You will need to enable cookies in order to log in.
<P>
If you performed an action that you were not given the privilege to perform, the script will prompt you to enter log in as another user.
<P>
While using MySQLMan, you can switch to another user anytime by clicking on the "login" link on the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> and enter another host/username/password set. After to values are set to cookies, you will be brought to the page where you clicked the "login" link. However, if the user you just switched to does not have the privilege to see that page, then you will be prompted to login again.
<P>
For more informaiton on the MySQL access privilege system, please refer to mySQL online manual at <a href="http://www.mysql.com/documentation/mysql/bychapter/manual_Privilege_system.html#Privilege_system">
http://www.mysql.com/documentation/mysql/bychapter/manual_Privilege_system.html#Privilege_system</a>
</P>
<UL>
<li>
<B>Skipping the login page</B>
<BR>You can skip the login page and connect to a database directly by setting "direct_connect" to 1 in the config file (mysql.cfg). I.e.
<BLOCKQUOTE>
# CONNECTION<br>
# --------------------------------------------------------<br>
# MySQLMan allows user to skip the login page and connect<br>
# to a database directly. (On = 1, Off = 0)<br>
&nbsp;&nbsp;&nbsp;&nbsp;direct_connect => 1,<br>
</BLOCKQUOTE>
You will need to set "direct_db", "direct_host", etc. as necessary. Please refer to the config file for more detail.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,75 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Login - Confirmation</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Login - Confirmation</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
The login info should be stored as cookies. You should be automatically transferred back to the page you were at. If not, please click "Back" to go back.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,75 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Login - Database name</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Login - Database name</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You may need to supply a database name when you login. Usually, after you have submitted the login info, the script connects to MySQL with <BLOCKQUOTE>DBI:mysql:host=<i>host_name</i></BLOCKQUOTE> and displays the list of databases in MySQL. If this is not allowed, then you will need to supply a database name for connection so that the script can connect with <BLOCKQUOTE>DBI:mysql:<i>database_name</i>:<i>host_name</i></BLOCKQUOTE>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,75 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Logout</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Logout</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Clears login info from cookies. You can <a href="<%script_url%>?<%do_param%>=help&help_topic=login">login</a> again by clicking on the link "LOGIN TO MySQLMan".
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=login">Login</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,120 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Properties</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Properties</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You can see the property of a table by following the "properties" link in
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">table list</a> or <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a>. Two
tables will be displayed in the the page: property table and key table.
</P>
<UL>
<li>
<B>Property Table</B>
<BR>The table shows the result of a DESCRIBE <I>table_name</I> query. You can find the
following functions available at the end of each field in the property table:
<P>
<UL>
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def_change"><B>Change</B></a>
<BR>Change column definition
<P>
<B>Drop</B>
<BR>Remove the column from the table.
<BR><font color="green">(action will be confirmed)</font>
<P>
<B>Primary</B></a>
<BR>Set the column as the primary key for the table.
<P>
Please note that if you need a primary key consisting of two or more columns, you will need to specify it when
creating the table in MySQLMan. If there is a primary key already existed in the table, then you will receive the
error message <I>Duplicate key name 'key_name'</I>.
<P>
Also, if you set a column as the primary by clicking "primary", the column will be set to NOT NULL automatically.
<P>
<B>Index</B>
<BR>Set the column as a index key for the table.
<P>
<B>Unique</B>
<BR>Set the column as a unique key for the table.
</UL>
</P>
</li>
<P>
<li>
<B>Key Table</B>
<BR>A key table will be shown here as well if there are any keys defined in the table.
<P>
<UL>
<B>Droppign a key</B>
<BR>A key can be dropped by clicking on "Drop". <font color="red">Please note that you will not be prompted to
confirm the action to drop</font>.
</UL>
</P>
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=col_def_change">Change column definition</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">Table List</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,76 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Rename Table</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Rename Table</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Rename the table selected. The link to the tool can be found in the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once a table is selected.
<P>
Enter the new name in the text input field. Press "Go" to rename the table.
For more details regarding to legal names in MySQL, please refer to MySQL online manual at
<a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names">
http://www.mysql.com/Manual_chapter/manual_Reference.html#Legal_names</a>
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,69 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Save Browse/Search Result</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Save Browse/Search Result</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Save the result from either <a href="<%script_url%>?<%do_param%>=help&help_topic=browse">browse</a> or <a href="<%script_url%>?<%do_param%>=help&help_topic=select">search</a> to a delimited file. The result can
also be printed to the screen without being saved to a file. The interface is similar to the one for
<a href="<%script_url%>?<%do_param%>=help&help_topic=export">export</a>. Please refer to the help page on export
for more detail
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=select">Search</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,105 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Select / Search</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Select / Search</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Select/Search creates a search form that helps the user contructing basic SELECT... FROM <i>current_table</i> (WHERE...) queries. The link can be found from the <a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> or the <a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">table list</a>. For more complex queries, please use <a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a> instead.
</P>
<UL>
<li>
<B>SELECT checkboxes</B>
<BR>For tables with many fields, sometimes you may not wish irrelevant fields to
be shown. The check the fields that you would like to be displayed and the
fields unchecked will not be shown. The first field is checked automatically.
</li>
<P>
<li>
<B>WHERE text field</B>
<BR>It is basically the WHERE. . . clause of a MySQL query. You do not need to
have to specify the key word <i>where</i> again in the text field. Please note
that ORDER BY. . . will be appended to the end of the query automatically.
Therefore, if you would like to sort the result to sort by a particular
column, you can do it by clicking on the column name when the result is displayed.
</li>
<P>
<li>
<B>Query by example</B>
<BR>All records with fields matching the value entered in the text fields will be
retrieved. If wildcards are not used, then MySQL looks for exact matches.
<P>
Wildcard usage:
<blockquote>
Key_word% - Anything that begins with <I>Key_word</I>.<BR>
%Key_word - Anything that ends with <I>Key_word</I>.<BR>
%Key_word% - Anything that contains <I>Key_word</I>.
</blockquote>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Record Display</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL monitor</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,78 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - SQL Dump</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">SQL Dump</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Utility to dump a database for backup or for transferring the data to another SQL server. The dump will contain SQL statements to create the table and/or populate the table. The result can be printed to the screen or be saved to
a file.
</P>
<UL>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,100 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - SQL Monitor</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">SQL Monitor</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
The SQL Monitor is for users to send more complex queries to MySQL that cannot be achieved by using other tools
in MySQLMan. The link to SQL Monitor can be found in the
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar">tool bar</a> once you have chosen a database.
</P>
<P>
The queries can be entered in the text window, or, saved in a file.
</P>
<UL>
<li>
<B>Run queries in the text window</B>
<BR>You can enter one or more queries in the text window. If running multiple queries, you must be sure that each query starts in a new line and ends with a semi-colon (;). Please note that only the last query can be a query that requires record display (i.e. DESCRIBE..., SELECT... FROM..., or SHOW..., etc.). Queries following this type of query will not be sent to MySQL.
<P>
Please also note that each new line starting with a pound sign (#) will be
treated as a comment and will be skipped.
</li>
<P>
<li>
<B>Run queries saved in a file</B>
<BR>Queries that are saved in a file, especially a backup file created by
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_dump">SQL Dump</a>, can also be sent to MySQL in SQL Monitor.
Specify the path to the file and press "go" to begin. The same rules mentioned in <B>Run queries in the text window</B> apply here as well.
</li>
<P>
<li>
<B>Save queries</B>
<BR>Up to 10 queries entered in the text area can be saved. All queries saved will be displayed in a table below the text area. Once the 10 slots are full, the oldest query will be delete when a new query is saved. Each query can be run and deleted anytime.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=sql_dump">SQL Dump</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,67 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - If you are stuck...</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">If you are stuck...</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
If you are stuck, please visit the support forum of our website at:
<ul>
<a href="http://www.gossamer-threads.com/perl/gforum/">http://www.gossamer-threads.com/perl/forum/</a>
</ul>
Or, you can refer to MySQL online manual at:
<ul>
<a href="http://www.mysql.com/documentation/">http://www.mysql.com/documentation/
</ul>
</P>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,113 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Table List </TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Table List</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
Table List lists all the tables in the database selected. You can find the following links beside
each table name. Each link works as follows:
</P>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a></B>
<BR>Displays all records in the table.
<P>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select</a></B>
<BR>Search for specific record(s). It helps you constructing basic "SELECT... FROM... WHERE..." query.
<P>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Properties</a></B>
<BR>Show the property of the table.
The following information will be displayed along with each field name:
<UL>
<li>Type
<li>Null
<li>Key
<li>Default
<li>Extra
</UL>
You will be able to perform the following actions in here:
<UL>
<li>Change column property
<li>Drop column
<li>Set primary key
<li>Set index
<li>Set unique
</UL>
<B><a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a></B>
<BR>Insert a new record to the table.
<P>
<B>Drop</B>
<BR>Removes the table from the database.<BR>
<FONT COLOR=GREEN>(action will be confirmed)</FONT>
<P>
<B>Empty</B>
<BR>Deletes all the records in the table.<BR>
<FONT COLOR=GREEN>(action will be confirmed)</FONT>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
Related topics:
<a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=select">Select</a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Properties<a> ,
<a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a>
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,199 @@
<HTML>
<HEAD>
<TITLE> MySQLMan Help - Tool Bar</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1><font face="Verdana, Arial, Helvetica">MySQLMan Help</font></H1>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<HR>
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
</TD>
</TR>
</TABLE>
<TABLE width=100% cellpadding=20>
<TR><TD>
<H2><font face="Verdana, Arial, Helvetica">Tool Bar</font></H2>
<FONT face="Verdana, Arial, Helvetica" size="2">
<P>
You can find the tool bar on top of each page. It is created to make MySQLMan easier to navigate. The tool bar
is divided into 4 parts.
</P>
<UL>
<li>
<B>Section 1 (upper left)</B>
<BR>This section of the tool bar tells you where you are in. The status is shown in the form
<BLOCKQUOTE>Top : MySQL [: database_name] [: table_name] [(page_no)]</B></BLOCKQUOTE>
</li>
Where
<BLOCKQUOTE>
<table>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
Top </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Takes you to the URL specified in "home_url" in the config file (mysql.cfg). </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
MySQL </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Takes you to the database list. </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
database_name </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Takes you to the table list of the database. </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
table_name </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: Shows the current table you are in. </font></TD></TR>
<TR><TD><FONT face="Verdana, Arial, Helvetica" size="2">
page_no </font></TD><TD><FONT face="Verdana, Arial, Helvetica" size="2">
: The page number when veiwing records. </font></TD></TR>
</table>
</BLOCKQUOTE>
<P>
<li>
<B>Section 2 (upper right)</B>
<BR> Help pages.
<BLOCKQUOTE>
HOME - List of all help pages available.<BR>
Page - Help on the current page.
</BLOCKQUOTE>
</li>
<P>
<li>
<B>Section 3 (lower left)</B>
<BR>This is the main section of the tool bar. From here, you can find most of the functions available in
MySQLMan. These functions are categorized into 2 types - database functions and table functions.
In addition, they are divided into 3 levels as follows:
<P>
<ol>
<li>
You should see the following once logged in:
<BLOCKQUOTE>
<table border=1 cellpadding=5><tr><td><FONT face="Verdana, Arial, Helvetica" size="2">
<B>Databases:</B> List | Create | Login | Logout</font></td></tr></table>
</BLOCKQUOTE>
Each link allows you to:
<BLOCKQUOTE>
<table>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=db_list">List</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- see the list of databases.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=create_db">Create</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- create a new database.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Login </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- switch to another user.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Logout </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- logout.</td></tr>
</table>
</BLOCKQUOTE>
</li>
<li>
As a database is selected, 4 more functions become available:
<BLOCKQUOTE>
<table border=1 cellpadding=5><tr><td><FONT face="Verdana, Arial, Helvetica" size="2">
<B>Databases:</B> List | Create | SQL Monitor | SQL Dump | Login | Logout <BR>
<B>Tables:</B> List | Create </font></td></tr></table>
</BLOCKQUOTE>
The 4 additional functions are:
<BLOCKQUOTE>
<table>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=sql_monitor">SQL Monitor</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- lets you send your own queries to MySQL.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">SQL Dump </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- creates queries that recreate the current database. </td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=table_list">(Table) List</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- displays the list of tables in the database.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=create_table">(Table) Create</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- create a new table in the database.</td></tr>
</table>
</BLOCKQUOTE>
</li>
<li>
As an action is selected from the <a href="<%script_url%>?<%do_param%>=help&help_topic=db_list">table list</a>,
all the functions become available:
<BLOCKQUOTE>
<table border=1 cellpadding=5><tr><td><FONT face="Verdana, Arial, Helvetica" size="2">
<B>Databases:</B> List | Create | SQL Monitor | SQL Dump | Login | Logout <BR>
<B>Tables:</B> List | Create | Browse | Search | Properties | Insert | Empty | Drop | Import | Export | Rename | Add_Fields </font></td></tr></table>
</BLOCKQUOTE>
These functions are:
<BLOCKQUOTE>
<table>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=browse">Browse</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- displays all records in the table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=select">Search</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- lets you create simple SELECT... FROM <i>current_table</i> WHERE... query.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=properties">Properties</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- shows the table definition.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=insert">Insert</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- insert a new record into the table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Empty </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- deletes all records from the current table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2">Drop </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- removes the current table from the database. </td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=import">Import</a></td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- imports data in a delimited file into the table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=export">Export</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- exports data in the table to a delimited file.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=rename">Rename</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- renames the current table.</td></tr>
<tr><td><FONT face="Verdana, Arial, Helvetica" size="2"><a href="<%script_url%>?<%do_param%>=help&help_topic=add_col">Add_Fields</a> </td>
<td><FONT face="Verdana, Arial, Helvetica" size="2">- adds new fields to the table.</td></tr>
</table>
</BLOCKQUOTE>
</li>
</OL>
</li>
<P>
<li>
<B>Section 4 (lower right)</B>
<BR>Link to Gossamer Threads Inc. website.
</li>
</UL>
</FONT>
</TD>
</TR>
</TABLE>
<TABLE width=100%>
<TR>
<TD align="right" valign="top">
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=toolbar"><font face="Verdana, Arial, Helvetica" size="2">Tool bar</font></a>
</B>
&nbsp;&nbsp;&nbsp;
<B>
<a href="<%script_url%>?<%do_param%>=help&help_topic=home"><font face="Verdana, Arial, Helvetica" size="2">HOME</font></a>
</B>
<HR>
</TD>
</TR>
<TR>
<TD>
<font face="Verdana, Arial, Helvetica" size="2">
</font>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

View File

@ -0,0 +1,33 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Insert New Record to Table <%table%>
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Insert New Record to Table <%table%></b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<%if feedback%>
<%include message.txt%>
<P>
<%endif%>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='insert_record'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<%form_hidden%>
<table>
<TD bgcolor="#FFFFCC">
<%include insert_fields.html%>
</TD>
</table>
<P>
<INPUT TYPE="submit" value=" Go ">
</FORM>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,32 @@
<TABLE BORDER=2>
<TR>
<TH>Fields</TH>
<TH>Type</TH>
<TH>Function</TH>
<TH>Value</TH>
<%if insert_null%><th>Null</th><%endif%>
</TR>
<%loop insert_fields%>
<tr>
<td><%field%></td>
<td><%type%></td>
<td><%function_select%></td>
<%if type eq 'enum%>
<td><select name="*insert*_<%field%>"><%enum_select_options%></select></td>
<%elseif type eq 'set'%>
<td><%loop set_options%>
<input type="checkbox" name="*insert*_<%field%>_set_<%num%>" value="<%value%>"<%if checked%> checked<%endif%>><%value%><br>
<%endloop%>
</td>
<%elsif type like blob or type like text%>
<td><textarea name="*insert*_<%field%>" rows="5" cols="30" wrap="virtual"><%value%></textarea></td>
<%else%>
<td><input type="text" name="*insert*_<%field%>" value="<%value%>" size="30"></td>
<%endif%>
<%if insert_null%>
<td><%if nullable%><input type="checkbox" name="*insert*_<%field%>_null" value="NULL"<%if null%> checked<%endif%>><%else%>&nbsp;<%endif%></td>
<%endif%>
</tr>
<%endloop%>
</table>

View File

@ -0,0 +1,36 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Login
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Login</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<TABLE WIDTH=50% bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<B><%if message%><%message%><%endif%></B>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" NAME="url" VALUE="<%url%>">
<INPUT TYPE="hidden" NAME="init_login" VALUE="<%if init_login%><%init_login%><%endif%>">
<INPUT TYPE="hidden" NAME="data_source" VALUE="<%data_source%>">
Host:<BR>
<INPUT TYPE="text" NAME="db_host" SIZE="20" VALUE="<%if host%><%host%><%endif%>"><BR>
Username:<BR>
<INPUT TYPE="text" NAME="db_user" SIZE="20" VALUE="<%if user%><%user%><%endif%>"><BR>
Password:<BR>
<INPUT TYPE="password" NAME="db_pass" SIZE="20" VALUE=""><BR>
Store Login Cookie: <INPUT TYPE="checkbox" NAME="db_expire" value="1">
<BR>
<BR>
<INPUT TYPE="submit" value=" Submit ">
</FORM>
</td>
</TABLE>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,26 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Login Feedback
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Login Feedback</b>
</td></tr>
<tr><td>
<%include header.txt%>
<META HTTP-EQUIV="Refresh" CONTENT="5; URL=<%url%>">
<P>
<UL>
<TABLE WIDTH=60%>
<b> Host name/User name/Password Stored. <P>
You should be transferred to the page you were at automatically. If not
please click "Back" to go back. </b>
<P>
<a href="<%url%>">Back</a>
</TABLE>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,29 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Login - Database name
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Login - Database name</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<TABLE WIDTH=50% bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<B><%message%></B>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" NAME="url" VALUE="<%url%>">
<INPUT TYPE="hidden" NAME="init_login" VALUE="<%init_login%>">
<INPUT TYPE="hidden" NAME="data_source" VALUE="<%data_source%>">
Database name:<BR>
<INPUT TYPE="text" NAME="db_for_connection" SIZE="20" VALUE=""><BR>
<INPUT TYPE="submit" value=" Submit ">
</FORM>
</td>
</TABLE>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,21 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Logout
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Logout</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<TABLE WIDTH=50%>
You are successfully logged out from MySQL Manager.
<P>
<a href="<%script_url%>?<%do_param%>=login">LOGIN TO MySQLMan</a>
</TABLE>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,14 @@
<FONT SIZE=2>
<TABLE BORDER=1 CELLPADDING=3>
<TR>
<TD>
<B><FONT COLOR="#006600">MySQL message:</FONT></B>
</TD>
</TR>
<TR>
<TD>
<%feedback%>
</TD>
</TR>
</TABLE>
</FONT>

View File

@ -0,0 +1,30 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Add Field(s)
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Add Field(s)</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='add_col'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<B><li> Add new field(s) to table <%table%></B>
<UL>Number of new fields to be added:
<INPUT TYPE="text" NAME="num_of_fields" VALUE="1" SIZE="3">
<BR>
Position: <SELECT size="1" NAME="position">
<%opt_col_order%>
</SELECT>
</UL>
<INPUT TYPE="submit" value=" Go "><P></FORM>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,24 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Create New Database
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Create New Database</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='database'>
<INPUT TYPE="hidden" NAME=action VALUE='create_db'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
Create a New Database: <INPUT TYPE="text" NAME="db" SIZE="20">
<INPUT TYPE="submit" value=" Create ">
</FORM>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,34 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Create New Table
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Create New Table</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<table bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='create'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<B>* Create new table on database <%db%></B><BR>
<UL>
Table name: <BR>
<INPUT TYPE="text" NAME="table" SIZE="20"><BR>
Number of Fields: <BR>
<INPUT TYPE="text" NAME="num_of_fields" SIZE="5"><BR>
<INPUT TYPE="submit" value=" Go ">
</UL>
</FORM>
</td></table>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,120 @@
<HTML>
<HEAD>
<TITLE>MySQLMan: Export to File</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
function AddAll (From, To) {
var FromObj = document.ExportForm[From];
var ToObj = document.ExportForm[To];
var i = 1;
var track = 1;
while (i < FromObj.options.length) {
if (track == FromObj.options.length) {
alert ("You can not add more than the number of fields in the select list.");
return;
}
if (ToObj.options[track].value != "") { track++; continue }
ToObj.options[track].value = FromObj.options[i].value;
ToObj.options[track].text = FromObj.options[i].text;
ToObj.options[track].selected = true;
i++;
track++;
}
return true;
}
function AddIt (From, To) {
var FromObj = document.ExportForm[From];
var ToObj = document.ExportForm[To];
var track = 1;
var i = 1;
while (i < FromObj.options.length) {
if (track == FromObj.options.length) {
alert ("You can not add more than the number of fields in the select list.");
return false;
}
if (ToObj.options[track].value != "") { track++; continue }
if (FromObj.options[i].selected) {
ToObj.options[track].value = FromObj.options[i].value;
ToObj.options[track].text = FromObj.options[i].text;
ToObj.options[track].selected = true;
track++;
}
i++;
}
return true;
}
function Clear (What) {
var Obj = document.ExportForm[What];
for (var i = 1; i < Obj.options.length; i++) {
Obj.options[i].value = "";
Obj.options[i].text = "";
Obj.options[i].selected = false;
}
return true;
}
//-->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Export to File</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<table bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<li><B> Export Data from Table <%table%>:</B><BR>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>" name="ExportForm">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='export'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=origin VALUE="property">
<input type="radio" name="export_to_screen" value="1" CHECKED> <B>Export to screen.</B><BR>
<input type="radio" name="export_to_screen" value="0"> <B>Export to file.&nbsp;&nbsp;
Path: </B><INPUT TYPE="text" NAME="file" VALUE="" SIZE="45"><P>
<B>Select fields:</B><BR>
<INPUT TYPE="radio" NAME="export_all_cols" VALUE="1" checked> All fields<BR>
<INPUT TYPE="radio" NAME="export_all_cols" VALUE="0"> Selected Fields
<UL>
<li>Please note that in the exported file, the order of the data fields will follow the order of<BR>
fields selected here.
<P>
<%include fields_selection.txt%>
<P>
</UL>
<B>Options:</B><BR>
Fields:
<UL>
Delimiter: <INPUT TYPE="text" NAME="delimiter" VALUE="|" SIZE="2"><BR>
Escape Character: <INPUT TYPE="text" NAME="escape_char" VALUE="\" SIZE="2"><BR>
</UL>
Records:
<UL>
Delimiter: <INPUT TYPE="text" NAME="rec_del" VALUE="\n" SIZE="3"><BR>
</UL>
<P>
<INPUT TYPE="submit" value=" Export ">
</FORM>
</UL>
</td></table>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,145 @@
<HTML>
<HEAD>
<TITLE>MySQLMan: Import From File</TITLE>
<SCRIPT language="Javascript">
<!--
function AddAll (From, To) {
var FromObj = document.ImportForm[From];
var ToObj = document.ImportForm[To];
var i = 1;
var track = 1;
while (i < FromObj.options.length) {
if (track == FromObj.options.length) {
alert ("You can not add more than the number of fields in the select list.");
return;
}
if (ToObj.options[track].value != "") { track++; continue }
for (var l = 1; l < ToObj.options.length; l++) {
if (ToObj.options[l].value == FromObj.options[i].value) {
alert ("You can not have duplitcate values for an import.");
return false;
}
}
ToObj.options[track].value = FromObj.options[i].value;
ToObj.options[track].text = FromObj.options[i].text;
ToObj.options[track].selected = true;
i++;
track++;
}
return true;
}
function AddIt (From, To) {
var FromObj = document.ImportForm[From];
var ToObj = document.ImportForm[To];
var track = 1;
var i = 1;
while (i < FromObj.options.length) {
if (track == FromObj.options.length) {
alert ("You can not add more than the number of fields in the select list.");
return false;
}
if (ToObj.options[track].value != "") { track++; continue }
if (FromObj.options[i].selected) {
for (var l = 1; l < ToObj.options.length; l++) {
if (ToObj.options[l].value == FromObj.options[i].value) {
alert ("You can not have duplitcate values for an import.");
return false;
}
}
ToObj.options[track].value = FromObj.options[i].value;
ToObj.options[track].text = FromObj.options[i].text;
ToObj.options[track].selected = true;
track++;
}
i++;
}
return true;
}
function Clear (What) {
var Obj = document.ImportForm[What];
for (var i = 1; i < Obj.options.length; i++) {
Obj.options[i].value = "";
Obj.options[i].text = "";
Obj.options[i].selected = false;
}
return true;
}
//-->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Import From File</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<table bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<li><B> Import Data to Table <%table%>:</B><BR>
<UL>
<FORM ENCTYPE="multipart/form-data" METHOD="POST" ACTION="<%script_url%>" name="ImportForm">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='import'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=origin VALUE="property">
<table>
<tr>
<td><b>File on server.&nbsp;&nbsp;</b></td>
<td>Path: <INPUT TYPE="text" NAME="server_file" VALUE= "" SIZE="64"></td>
</tr>
<tr>
<td>OR</td>
</tr>
<tr>
<td><b>File on local drive.&nbsp;&nbsp;</b></td>
<td>Path: <INPUT TYPE="file" NAME="upload_local_file" VALUE= "" SIZE="64"></td>
</tr>
</table>
<P>
<B>Select fields:</B><BR>
<INPUT TYPE="radio" NAME="import_all_cols" VALUE="1" checked> All fields<BR>
<INPUT TYPE="radio" NAME="import_all_cols" VALUE="0"> Selected Fields
<UL>
<li>Please note that the order should match the order of the fields in the file.
<P>
<%include fields_selection.txt%>
</P>
</UL>
<INPUT TYPE="checkbox" NAME="local" VALUE="LOCAL" checked> Local Import<BR>
<INPUT TYPE="checkbox" NAME="replace_op" VALUE="1" checked> Do not show error message if there are duplicate records and do the following:<BR>
<UL>
<INPUT TYPE="radio" NAME="replace_act" VALUE="IGNORE" checked>Ignore<BR>
<INPUT TYPE="radio" NAME="replace_act" VALUE="REPLACE">Replace<BR>
</UL>
Fields:
<UL>
Delimiter: <INPUT TYPE="text" NAME="delimiter" VALUE="|" SIZE="2"><BR>
Escape Character: <INPUT TYPE="text" NAME="escape_char" VALUE="\" SIZE="2"><BR>
</UL>
Records:
<UL>
Delimiter: <INPUT TYPE="text" NAME="rec_del" VALUE="\n" SIZE="3"><BR>
Ignore first <INPUT TYPE="text" NAME="ignore_line" VALUE="0" SIZE="3"> Lines
</UL>
<P>
<INPUT TYPE="submit" value=" Import ">
</FORM>
</UL>
</td></table>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,155 @@
<HTML>
<HEAD>
<TITLE>MySQLMan: mysqldump</TITLE>
</HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: SQL Dump - <%table%></b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE="mysqldump">
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<input type="radio" name="dump_to_screen" value="1" CHECKED> <B>Dump to screen.</B><BR>
<input type="radio" name="dump_to_screen" value="0"> <B>Dump to file.
&nbsp;&nbsp;Path:</B><INPUT TYPE="text" NAME="dump_file" VALUE="" SIZE="50"></input>
<P>
<table border="0" width="893">
<tr>
<td colspan=3>
<B>Select tables:</B><BR>
<input type="radio" name="dump_whole_db" value="1" CHECKED> Dump all tables in database <i><%db%></i><br>
<input type="radio" name="dump_whole_db" value="0"> Dump selected tables only<BR>
</td>
</tr>
<tr>
<TD>
</TD>
<td colspan=2>
<%set select_cols = 5%>
<table>
<tr>
<%loop tb_checkboxes%>
<td valign="top">
<input type="checkbox" name="*dump_table*_<%name%>" value="<%name%>"<%if first%> checked<%endif%>><%name%>
</td>
<%unless last or row_num % $select_cols%>
</tr>
<tr>
<%endunless%>
<%if last and row_num % $select_cols%>
<td colspan="<%row_num ~ $select_cols%>">
&nbsp;
</tr>
<%endif%>
<%endloop%>
</tr>
</table>
</td>
</tr>
<tr>
<td width="20" colspan=3>
&nbsp;
</td>
</tr>
<tr>
<td colspan=3>
<B>CREATE TABLE statements:</B>
</td>
</tr>
<tr>
<td width="20" rowspan="2" valign=top><input type="radio" name="op_create_st" value="1" checked></td>
<td width="859" colspan="2">Write CREATE TABLE statements.<BR>
Options:
</td>
</tr>
<tr>
<td width="20" valign=top><input type="checkbox" name="add_drop_table" value="1"></td>
<td width="833">
Add a DROP TABLE IF EXISTS statement before each CREATE TABLE statement.<br>
(--add-drop-table)</td>
</tr>
<tr>
<td width="20" valign=top><input type="radio" name="op_create_st" value="0"></td>
<td width="859" colspan="2">
Do not write CREATE TABLE statements.
<br>(--no-create-info)
</td>
</tr>
<tr>
<td width="20" colspan=3>
&nbsp;
</td>
</tr>
<tr>
<td colspan=3>
<B>INSERT statements:</B>
</td>
</tr>
<tr>
<td width="20" rowspan="4" valign=top><input type="radio" name="op_dump_db" value="1" checked></td>
<td width="859" colspan="2">
Write INSERT statements.<BR>
Options:
</td>
</tr>
<tr>
<td width="20" valign=top>
<input type="checkbox" name="complete_insert" value="1">
</td>
<td width="833">
Use INSERT statements that name each column to be inserted.
<br>(--complete-insert)
</td>
</tr>
<tr>
<td width="20" valign=top>
<input type="checkbox" name="delayed_insert" value="1">
</td>
<td width="833">
Write INSERT DELAYED statements.
<br>(--delayed-insert)
</td>
</tr>
<tr>
<td width="20" valign=top>
<input type="checkbox" name="extended_insert" value="1">
</td>
<td width="833">
Write multiple-row INSERT statements.
<br>(--extended-insert)
</td>
</tr>
<tr>
<td width="20" valign=top><input type="radio" name="op_dump_db" value="0"></td>
<td width="859" colspan="2">
Do not write table data.
<br>(--no-data)
</td>
</tr>
</table>
<INPUT TYPE="submit" value=" Go ">
</FORM>
<P>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,26 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Rename table <%table%>
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Rename table <%table%></b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='alter_table'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=old_table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=action VALUE="rename_table">
<INPUT TYPE="hidden" NAME=origin VALUE="property">
<li><B> Rename table <%table%> to:</B><INPUT TYPE="text" NAME="table" VALUE="" SIZE="50">
<INPUT TYPE="submit" value=" Go ">
</FORM>
<P>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,85 @@
<HTML>
<HEAD><TITLE>
MySQLMan: SQL Monitor
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: SQL Monitor</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<%if feedback%>
<%include message.txt%>
<%endif%>
<FORM METHOD="POST" ACTION="<%script_url%>">
<li><B>Run SQL query/queries</B><BR>
(If running multiple queries, each query must start in a new line and end with a semi-colon (;).)</BR></li>
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='sql_monitor'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=action VALUE="monitor">
<INPUT TYPE="hidden" NAME=from_monitor VALUE="1">
<TEXTAREA NAME="query" ROWS="7" COLS="40" VALUE= ""></TEXTAREA><BR>
<INPUT TYPE="checkbox" NAME="save_query" VALUE="1"> Save query<BR>
<INPUT TYPE="submit" value=" Go ">
</FORM>
<%if query_table_cnt%>
<TABLE border=1 cellspacing=0 cellpadding=5>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" NAME="<%do_param%>" VALUE='sql_monitor'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=action VALUE="monitor">
<INPUT TYPE="hidden" NAME=from_monitor VALUE="1">
<TR>
<TH><INPUT TYPE="submit" value="Run Query" name = "from_saved_queries"></TH>
<TH>SAVED QUERY</TH>
<TH>COMPLETE QUERY</TH>
<TH><INPUT TYPE="submit" value="Delete Query" name = "delete_query"></TH>
</TR>
<%loop query_table%>
<TR>
<TD><CENTER><INPUT TYPE="radio" NAME="query_select" VALUE="<%num%>"></CENTER></TD>
<TD><%partial_query%></TD>
<TD><CENTER><a href="<%show_link%>" target="_">Show</a><CENTER></TD>
<TD><CENTER><INPUT TYPE="checkbox" NAME="delete_query_<%num%>" VALUE="1"></CENTER></TD>
</TR>
<%endloop%>
</FORM>
</TABLE>
<%endif%>
<FORM ENCTYPE="multipart/form-data" METHOD="POST" ACTION="<%script_url%>">
<li><B>Run queries saved in a file.</B><BR>
(Please note that all queries that require display would not be <br>
displayed to the screen.)</li>
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='sql_monitor_file'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<table>
<tr>
<td><b>File on server.&nbsp;&nbsp;</b></td>
<td>Path: <INPUT TYPE="text" NAME="server_file" VALUE= "" SIZE="64"></td>
</tr>
<tr>
<td>OR</td>
</tr>
<tr>
<td><b>File on local drive.&nbsp;&nbsp;</b></td>
<td>Path: <INPUT TYPE="file" NAME="upload_local_file" VALUE= "" SIZE="64"></td>
</tr>
</table>
<INPUT TYPE="submit" value=" Go ">
</FORM>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,12 @@
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='browse'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=sort_index VALUE="<%sort_index%>">
<INPUT TYPE="hidden" NAME=action VALUE="<%action%>">
<INPUT TYPE="hidden" NAME=fields VALUE="<%fields%>">
<INPUT TYPE="hidden" NAME=where VALUE="<%where%>">
<INPUT TYPE="hidden" NAME=example VALUE="<%example%>">
<INPUT TYPE="hidden" NAME=query VALUE="<%query%>">
Goto Page: <INPUT TYPE="text" NAME=page VALUE = "" SIZE="10"> of <%pages%>
<INPUT TYPE="submit" value=" Go "><P></FORM>

View File

@ -0,0 +1,62 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Table Property
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Table Property</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<%if feedback%>
<%include message.txt%>
<P>
<%endif%>
<table border="2">
<tr>
<%loop table_columns%>
<td><b><%name%></b></td>
<%endloop%>
<td><th colspan="5">ACTION</td>
</tr>
<%loop table_property%>
<tr>
<%loop columns%>
<td><%name%></td>
<%endloop%>
<td><a href="<%change_link%>">Change</a></td>
<td><a href="<%drop_link%>">Drop</a></td>
<td><a href="<%primary_link%>">Primary</a></td>
<td><a href="<%index_link%>">Index</a></td>
<td><a href="<%unique_link%>">Unique</a></td>
</tr>
<%endloop%>
</table>
<P>
<UL>
<%if key_table_cnt%>
<b><li> Keys:</b>
<table border=2>
<tr>
<th>Key name</th>
<th>Unique</th>
<th>Field</th>
<th>Action</th>
</tr>
<%loop key_table%>
<tr>
<td><%name%></td>
<td><%unique%></td>
<td><%column_name%></td>
<td><a href="<%drop_link%>">Drop</a></td>
</tr>
<%endloop%>
</table>
<%endif%>
</UL>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,57 @@
<HTML>
<HEAD>
<TITLE>MySQLMan: Save Search Result</TITLE>
</HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Save Search Result</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<table bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<li><B> Save Search Result:</B><BR>
<UL>
<FORM METHOD="POST" ACTION="<%script_url%>" name="ExportForm">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='export'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=action VALUE="<%browse_action%>">
<INPUT TYPE="hidden" NAME=page VALUE="<%page%>">
<INPUT TYPE="hidden" NAME=sort_index VALUE="<%sort_index%>">
<INPUT TYPE="hidden" NAME=fields VALUE="<%fields%>">
<INPUT TYPE="hidden" NAME=where VALUE="<%where%>">
<INPUT TYPE="hidden" NAME=example VALUE="<%example%>">
<INPUT TYPE="hidden" NAME=from_save_result VALUE="1">
<INPUT TYPE="hidden" NAME=query VALUE="<%query%>">
<input type="radio" name="export_to_screen" value="1" CHECKED> <B>Print to screen.</B><BR>
<input type="radio" name="export_to_screen" value="0"> <B>Export to file.&nbsp;&nbsp;
Path: </B><INPUT TYPE="text" NAME="file" VALUE="" SIZE="45"><P>
<B>Options:</B><BR>
Fields:
<UL>
Delimiter: <INPUT TYPE="text" NAME="delimiter" VALUE="|" SIZE="2"><BR>
Escape Character: <INPUT TYPE="text" NAME="escape_char" VALUE="\" SIZE="2"><BR>
</UL>
Records:
<UL>
Delimiter: <INPUT TYPE="text" NAME="rec_del" VALUE="\n" SIZE="3"><BR>
</UL>
<P>
<INPUT TYPE="submit" value=" Save ">
</FORM>
</UL>
</td></table>
</UL>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,19 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Complete Query (<%i%>)
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Complete Query (<%i%>)</b>
</td></tr>
<tr><td>
<UL>
<BR>
<table cellpadding="10" cellspacing="0" border="1">
<tr><td><%query%></td></tr>
</table>
</UL>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,21 @@
<HTML>
<HEAD><TITLE>
MySQLMan: ERROR
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: ERROR</b>
</td></tr>
<tr><td>
<%include header.txt%>
<P>
<b> Error </b>
<p>MySQL said: <%error%><P>
<a href="javascript:history.go(-1)">Back</a>
</body>
</html>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,46 @@
<HTML>
<HEAD>
<TITLE>MySQLMan: Table list</TITLE>
</HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Table list</b>
</td></tr>
<tr><td>
<%include header.txt%>
<P>
<FONT SIZE= "3">
<UL><%if feedback%>
<%include message.txt%>
<P>
<%endif%>
<%if table_tables_cnt%>
<TABLE border = 2>
<TR><TD ALIGN=center><B>TABLE</B></TD><TD colspan="6" ALIGN=center><B>ACTION</B></TD><TD ALIGN=center><B>RECORDS</B></TD></TR>
<%loop table_tables%>
<TR><TD><%name%></TD>
<TD><A href="<%script_url%>?<%do_param%>=browse;data_source=<%data_source%>;table=<%name%>;page=1;action=browse">Browse</A></TD>
<TD><A href="<%script_url%>?<%do_param%>=select;data_source=<%data_source%>;table=<%name%>;page=1;action=select">Select</A></TD>
<TD><A href="<%script_url%>?<%do_param%>=property;data_source=<%data_source%>;table=<%name%>">Properties</A></TD>
<TD><A href="<%script_url%>?<%do_param%>=insert;data_source=<%data_source%>;table=<%name%>">Insert</A></TD>
<TD><A href="<%script_url%>?<%do_param%>=modify;data_source=<%data_source%>;table=<%name%>;action=drop_table">Drop</A></TD>
<TD><A href="<%script_url%>?<%do_param%>=modify;data_source=<%data_source%>;table=<%name%>;action=empty_table">Empty</A></TD>
<TD align="right"><%count%></TD>
</TR>
<%endloop%>
</TABLE>
<%endif%>
<%ifnot table_tables%>
<TABLE border = 2 CELLPADDING= 10>
<TD><B>There are no Tables in the Database</B></TD>
</TABLE>
<%endif%>
</UL>
</FONT>
</td></tr></table>
</BODY>
</HTML>

View File

@ -0,0 +1,76 @@
<HTML>
<HEAD><TITLE>
MySQLMan: View Table <%table%>
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: View Table <%table%></b>
</td></tr>
<tr><td>
<%include header.txt%>
<%if from_monitor%>
<UL>
<P>
<FORM METHOD="POST" ACTION="<%script_url%>">
<B>* Run SQL query/queries</B><BR>
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='sql_monitor'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=action VALUE="monitor">
<INPUT TYPE="hidden" NAME=from_monitor VALUE="1">
<TEXTAREA NAME="query" ROWS="7" COLS="40" VALUE= ""></TEXTAREA><BR>
<INPUT TYPE="submit" value=" Go ">
</FORM>
<P>
<%if total_rows%>
( <%total_rows%> rows affected )
<%endif%>
</UL>
<%endif%>
<%ifnot from_monitor%>
<TABLE BORDER=1 >
<TR><TD><B>SQL-query</B></TD></TR>
<TR><TD><%query_printed%></TD></TR>
</TABLE>
<P>
<%if total_rows%>
( <%total_rows%> records in total ) <a href="<%save_search_link%>">Save Result</a>
<%endif%>
<%endif%>
<%page_jump%>
<%page_link%>
<%if empty_set%>
<TABLE BORDER = 2 CELLPADDING = 10>
<TD><B>Empty Set</B></TD>
</TABLE>
<%else%>
<TABLE BORDER=2>
<TR>
<%loop col_name%>
<TD><B><%if link%><a href="<%link%>"><%endif%><%name%><%if link%></a><%endif%></B></TD>
<%endloop%>
<%if pri_key%>
<TD></TD><TD></TD>
<%endif%>
</TR>
<%loop table_records%>
<tr>
<%loop record%>
<td><%if null and show_null%><font color="green">NULL</font><%elsif name eq ''%>&nbsp;<%else%><%name%><%endif%></td>
<%if pri_key and last%>
<td><a href="<%edit_link%>">Edit</a></td>
<td><a href="<%delete_link%>"<%if confirm_delete_record%> onClick="return confirm('Delete the record?')"<%endif%>>Delete</a></td>
<%endif%>
<%endloop%>
</tr>
<%endloop%>
</TABLE>
<%endif%>
<%page_link%>
</td></tr></table>
</BODY></HTML>

View File

@ -0,0 +1,68 @@
<HTML>
<HEAD><TITLE>
MySQLMan: Search
</TITLE></HEAD>
<BODY BGCOLOR="#CCCCCC">
<table border=1 bgcolor="#FFFFFF" cellpadding=5 cellspacing=3 width="100%" align=center valign=top>
<tr><td bgcolor="navy">
<FONT FACE="MS Sans Serif, arial,helvetica" size=1 COLOR="#FFFFFF">
<b>MySQLMan: Search</b>
</td></tr>
<tr><td>
<%include header.txt%>
<UL>
<table bgcolor="#FFFFCC" border=1 cellpadding=5 cellspacing=3>
<td>
<FORM METHOD="POST" ACTION="<%script_url%>">
<INPUT TYPE="hidden" name="<%do_param%>" VALUE='browse'>
<INPUT TYPE="hidden" NAME=data_source VALUE="<%data_source%>">
<INPUT TYPE="hidden" NAME=table VALUE="<%table%>">
<INPUT TYPE="hidden" NAME=page VALUE=1>
<INPUT TYPE="hidden" NAME=action VALUE='select'>
<B>SELECT:</B>
<%set select_cols = 5%>
<table>
<tr>
<%loop select_table%>
<td valign="top">
<input type="checkbox" name="*select_field*_<%name%>" value="<%name%>"<%if first%> checked<%endif%>><%name%>
</td>
<%unless last or row_num % $select_cols%>
</tr>
<tr>
<%endunless%>
<%if last and row_num % $select_cols%>
<td colspan="<%row_num ~ $select_cols%>">
&nbsp;
</tr>
<%endif%>
<%endloop%>
</tr>
</table>
<P>
<B>Where: </B><BR><TEXTAREA NAME="where" ROWS="3" COLS="30" VALUE= ""></TEXTAREA>
<P>
<B>Do a "query by example" (wildcard: "%"):</B><BR>
<table border="1">
<tr>
<th>Fields</th>
<th>Type</th>
<th>Value</th>
</tr>
<%loop example_table%>
<tr>
<td><%name%></td>
<td><%type%></td>
<td><input type="text" name="*example*_<%name%>" value="" size="30"></td>
</tr>
<%endloop%>
</table>
<P>
<INPUT TYPE="submit" value=" Go "></FORM>
</td></table>
</UL>
</td></tr></table>
</BODY></HTML>