lynx --nolist --dump Documentation.html > Documentation.txt
This commit is contained in:
@@ -7,8 +7,8 @@
|
|||||||
+ Version history: ChangeLog
|
+ Version history: ChangeLog
|
||||||
+ General notes: README
|
+ General notes: README
|
||||||
+ License: LICENSE
|
+ License: LICENSE
|
||||||
* Documentation version: $Id: Documentation.html,v 1.268 2002/06/25
|
* Documentation version: $Id: Documentation.html,v 1.272 2002/06/29
|
||||||
12:49:39 lem9 Exp $
|
08:13:01 swix Exp $
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
Top - Requirements - Introduction - Installation -
|
Top - Requirements - Introduction - Installation -
|
||||||
@@ -643,6 +643,16 @@ CRIPT_NAME'], '/')+1);
|
|||||||
Defines whether to allow the use of zip/gzip/bzip compression
|
Defines whether to allow the use of zip/gzip/bzip compression
|
||||||
when creating a dump file or not.
|
when creating a dump file or not.
|
||||||
|
|
||||||
|
$cfg['DefaultTabDatabase'] string
|
||||||
|
Defines the Tab displayed by default on database view. Possible
|
||||||
|
values: 'db_details_structure.php3', 'db_details.php3', or
|
||||||
|
'db_search.php3'.
|
||||||
|
|
||||||
|
$cfg['DefaultTabTable'] string
|
||||||
|
Defines the Tab displayed by default on table view. Possible
|
||||||
|
values: 'tbl_properties_structure.php3', 'tbl_properties.php3',
|
||||||
|
'tbl_select.php3', 'tbl_change.php3'.
|
||||||
|
|
||||||
$cfg['ManualBaseShort'] string
|
$cfg['ManualBaseShort'] string
|
||||||
If set to an URL which points to the MySQL documentation (on
|
If set to an URL which points to the MySQL documentation (on
|
||||||
short pages), appropriate help links are generated.
|
short pages), appropriate help links are generated.
|
||||||
@@ -1197,9 +1207,10 @@ FAQ - Frequently Asked Questions
|
|||||||
this document.
|
this document.
|
||||||
|
|
||||||
How can I use the relation table in Query-by-example?
|
How can I use the relation table in Query-by-example?
|
||||||
Here is an example with the tables persons, towns and countries. If
|
Here is an example with the tables persons, towns and countries, all
|
||||||
you don't have a PMA_relation table, create it as explained in the
|
located in the database mydb. If you don't have a PMA_relation table,
|
||||||
configuration section. Then create the example tables:
|
create it as explained in the configuration section. Then create the
|
||||||
|
example tables:
|
||||||
CREATE TABLE countries (
|
CREATE TABLE countries (
|
||||||
country_code char(1) NOT NULL default '',
|
country_code char(1) NOT NULL default '',
|
||||||
description varchar(10) NOT NULL default '',
|
description varchar(10) NOT NULL default '',
|
||||||
@@ -1222,10 +1233,10 @@ FAQ - Frequently Asked Questions
|
|||||||
) TYPE=MyISAM;
|
) TYPE=MyISAM;
|
||||||
INSERT INTO towns VALUES ('S', 'Sherbrooke');
|
INSERT INTO towns VALUES ('S', 'Sherbrooke');
|
||||||
INSERT INTO towns VALUES ('M', 'Montr<74>al');
|
INSERT INTO towns VALUES ('M', 'Montr<74>al');
|
||||||
INSERT INTO `PMA_relation` VALUES ('persons', 'town_code',
|
INSERT INTO `PMA_relation` VALUES ('mydb','persons', 'town_code',
|
||||||
'towns', 'town_code', 1);
|
'mydb', 'towns', 'town_code');
|
||||||
INSERT INTO `PMA_relation` VALUES ('persons', 'country_code',
|
INSERT INTO `PMA_relation` VALUES ('mydb', 'persons',
|
||||||
'countries', 'country_code', 1);
|
'country_code', 'mydb', 'countries', 'country_code');
|
||||||
Then test like this:
|
Then test like this:
|
||||||
* Click on your db name in the left frame
|
* Click on your db name in the left frame
|
||||||
* Choose "Query by example"
|
* Choose "Query by example"
|
||||||
@@ -1298,6 +1309,9 @@ FAQ - Frequently Asked Questions
|
|||||||
+ $cfg['colorColType']
|
+ $cfg['colorColType']
|
||||||
+ $cfg['colorAdd']
|
+ $cfg['colorAdd']
|
||||||
|
|
||||||
|
phpMyAdmin is changing the type of one of my columns!
|
||||||
|
No, it's MySQL that is doing silent column type changing.
|
||||||
|
|
||||||
[phpMyAdmin project]
|
[phpMyAdmin project]
|
||||||
|
|
||||||
I have found a bug. How do I inform developers?
|
I have found a bug. How do I inform developers?
|
||||||
|
@@ -42,8 +42,8 @@ Please ensure you have:
|
|||||||
- in Documentation.html the 2 lines
|
- in Documentation.html the 2 lines
|
||||||
" <h1>phpMyAdmin $1 Documentation</h1> "
|
" <h1>phpMyAdmin $1 Documentation</h1> "
|
||||||
- in translators.html
|
- in translators.html
|
||||||
2. built the new "Documentation.txt" version using the Lynx "print" command
|
2. built the new "Documentation.txt" version using:
|
||||||
on the "Documentation.html" file.
|
lynx --nolist --dump Documentation.html > Documentation.txt
|
||||||
|
|
||||||
Continue (y/n)?
|
Continue (y/n)?
|
||||||
END
|
END
|
||||||
|
Reference in New Issue
Block a user