1 |
<?php
|
2 |
//$Header: /hl/cvsroots/gpl01/gpl01/webprojs/pamc/gen_a/sw/phplib/ref_tables/db_design_tablelistonly.inc,v 1.2 2007/06/29 02:01:35 dashley Exp $
|
3 |
//--------------------------------------------------------------------------------
|
4 |
//db_design_tablelistonly.inc -- List of tables in the PAMC MySQL database (only).
|
5 |
// This list is used on a "LOCK TABLES" statement
|
6 |
// to lock every table in the database for atomic
|
7 |
// operations. The more detailed database
|
8 |
// design information isn't included unless
|
9 |
// necessary, because it is complex and may slow
|
10 |
// down the PHP interpreter stream.
|
11 |
//--------------------------------------------------------------------------------
|
12 |
//Copyright (C) 2007 David T. Ashley
|
13 |
//--------------------------------------------------------------------------------
|
14 |
//This program is free software; you can redistribute it and/or
|
15 |
//modify it under the terms of the GNU General Public License
|
16 |
//as published by the Free Software Foundation; either version 2
|
17 |
//of the License, or (at your option) any later version.
|
18 |
//
|
19 |
//This program is distributed in the hope that it will be useful,
|
20 |
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21 |
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22 |
//GNU General Public License for more details.
|
23 |
//
|
24 |
//You should have received a copy of the GNU General Public License
|
25 |
//along with this program; if not, write to the Free Software
|
26 |
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
27 |
//--------------------------------------------------------------------------------
|
28 |
//Author contact information:
|
29 |
// David T. Ashley
|
30 |
// P.O. Box 918
|
31 |
// Marshall, Michigan, 49068
|
32 |
// dta@e3ft.com
|
33 |
//--------------------------------------------------------------------------------
|
34 |
$config_hard['dbdesign']['tablelist'] = "tokens users";
|
35 |
//For simplicity, list should be in alphabetical order. If necessary (but
|
36 |
//probably never necessary), a software component that needs this information
|
37 |
//in another form can explode() it at the spaces to get an array.
|
38 |
//--------------------------------------------------------------------------------
|
39 |
//End of $RCSfile: db_design_tablelistonly.inc,v $.
|
40 |
//--------------------------------------------------------------------------------
|
41 |
?>
|