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

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