/home/mjc1/public_html/db_admin/libraries/relation.lib.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
<?php
/* $Id: relation.lib.php,v 2.23 2004/08/16 15:19:15 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
error_reporting(E_ALL);
/**
 * Set of functions used with the relation and pdf feature
 */

/**
 * Executes a query as controluser if possible, otherwise as normal user
 *
 * @param   string    the query to execute
 * @param   boolean   whether to display SQL error messages or not
 *
 * @return  integer   the result id
 *
 * @global  string    the URL of the page to show in case of error
 * @global  string    the name of db to come back to
 * @global  resource  the resource id of DB connect as controluser
 * @global  array     configuration infos about the relations stuff
 *
 * @access  public
 *
 * @author  Mike Beck <mikebeck@users.sourceforge.net>
 */
 
function PMA_query_as_cu($sql$show_error TRUE$options 0) {
    global 
$err_url_0$db$dbh$cfgRelation;

    
PMA_DBI_select_db($cfgRelation['db'], $dbh);
    if (
$show_error) {
        
$result PMA_DBI_query($sql$dbh$options);
    } else {
        
$result = @PMA_DBI_try_query($sql$dbh$options);
    } 
// end if... else...
    
PMA_DBI_select_db($db$dbh);

    if (
$result) {
        return 
$result;
    } else {
        return 
FALSE;
    }
 } 
// end of the "PMA_query_as_cu()" function 


/**
 * Defines the relation parameters for the current user
 * just a copy of the functions used for relations ;-)
 * but added some stuff to check what will work
 *
 * @param   boolean  whether to check validity of settings or not
 *
 * @return  array    the relation parameters for the current user
 *
 * @global  array    the list of settings for servers
 * @global  integer  the id of the current server
 * @global  string   the URL of the page to show in case of error
 * @global  string   the name of the current db
 * @global  string   the name of the current table
 * @global  array    configuration infos about the relations stuff
 *
 * @access  public
 *
 * @author  Mike Beck <mikebeck@users.sourceforge.net>
 */
function PMA_getRelationsParam($verbose FALSE)
{
    global 
$cfg$server$err_url_0$db$table;
    global 
$cfgRelation;

    
$cfgRelation                = array();
    
$cfgRelation['relwork']     = FALSE;
    
$cfgRelation['displaywork'] = FALSE;
    
$cfgRelation['bookmarkwork']= FALSE;
    
$cfgRelation['pdfwork']     = FALSE;
    
$cfgRelation['commwork']    = FALSE;
    
$cfgRelation['mimework']    = FALSE;
    
$cfgRelation['historywork'] = FALSE;
    
$cfgRelation['allworks']    = FALSE;

    
// No server selected -> no bookmark table
    // we return the array with the FALSEs in it,
    // to avoid some 'Unitialized string offset' errors later
    
if ($server == 0
       
|| empty($cfg['Server'])
       || empty(
$cfg['Server']['pmadb'])) {
        if (
$verbose == TRUE) {
            echo 
'PMA Database ... '
                 
'<font color="red"><b>' $GLOBALS['strNotOK'] . '</b></font>'
                 
'[ <a href="Documentation.html#pmadb">' $GLOBALS['strDocu'] . '</a> ]<br />' "\n"
                 
$GLOBALS['strGeneralRelationFeat']
                 . 
' <font color="green">' $GLOBALS['strDisabled'] . '</font>' "\n";
        }
        return 
$cfgRelation;
    }

    
$cfgRelation['user']  = $cfg['Server']['user'];
    
$cfgRelation['db']    = $cfg['Server']['pmadb'];

    
//  Now I just check if all tables that i need are present so I can for
    //  example enable relations but not pdf...
    //  I was thinking of checking if they have all required columns but I
    //  fear it might be too slow
    // PMA_DBI_select_db($cfgRelation['db']);

    
$tab_query 'SHOW TABLES FROM ' PMA_backquote($cfgRelation['db']);
    
$tab_rs    PMA_query_as_cu($tab_queryFALSEPMA_DBI_QUERY_STORE);

    if (
$tab_rs) {
        while (
$curr_table = @PMA_DBI_fetch_row($tab_rs)) {
            if (
$curr_table[0] == $cfg['Server']['bookmarktable']) {
                
$cfgRelation['bookmark']        = $curr_table[0];
            } else if (
$curr_table[0] == $cfg['Server']['relation']) {
                
$cfgRelation['relation']        = $curr_table[0];
            } else if (
$curr_table[0] == $cfg['Server']['table_info']) {
                
$cfgRelation['table_info']      = $curr_table[0];
            } else if (
$curr_table[0] == $cfg['Server']['table_coords']) {
                
$cfgRelation['table_coords']    = $curr_table[0];
            } else if (
$curr_table[0] == $cfg['Server']['column_info']) {
                
$cfgRelation['column_info'] = $curr_table[0];
            } else if (
$curr_table[0] == $cfg['Server']['pdf_pages']) {
                
$cfgRelation['pdf_pages']       = $curr_table[0];
            } else if (
$curr_table[0] == $cfg['Server']['history']) {
                
$cfgRelation['history'] = $curr_table[0];
            }
        } 
// end while
    
}

    if (isset(
$cfgRelation['relation'])) {
        
$cfgRelation['relwork']         = TRUE;
        if (isset(
$cfgRelation['table_info'])) {
                
$cfgRelation['displaywork'] = TRUE;
        }
    }
    if (isset(
$cfgRelation['table_coords']) && isset($cfgRelation['pdf_pages'])) {
        
$cfgRelation['pdfwork']     = TRUE;
    }
    if (isset(
$cfgRelation['column_info'])) {
        
$cfgRelation['commwork']    = TRUE;

        if (
$cfg['Server']['verbose_check']) {
            
$mime_query  'SHOW FIELDS FROM ' PMA_backquote($cfgRelation['db']) . '.' PMA_backquote($cfgRelation['column_info']);
            
$mime_rs     PMA_query_as_cu($mime_queryFALSE);

            
$mime_field_mimetype                FALSE;
            
$mime_field_transformation          FALSE;
            
$mime_field_transformation_options  FALSE;
            while (
$curr_mime_field = @PMA_DBI_fetch_row($mime_rs)) {
                if (
$curr_mime_field[0] == 'mimetype') {
                    
$mime_field_mimetype               TRUE;
                } else if (
$curr_mime_field[0] == 'transformation') {
                    
$mime_field_transformation         TRUE;
                } else if (
$curr_mime_field[0] == 'transformation_options') {
                    
$mime_field_transformation_options TRUE;
                }
            }
            
PMA_DBI_free_result($mime_rs);

            if (
$mime_field_mimetype == TRUE
                
&& $mime_field_transformation == TRUE
                
&& $mime_field_transformation_options == TRUE) {
                
$cfgRelation['mimework'] = TRUE;
            }
        } else {
            
$cfgRelation['mimework'] = TRUE;
        }
    }

    if (isset(
$cfgRelation['history'])) {
        
$cfgRelation['historywork']     = TRUE;
    }

    if (isset(
$cfgRelation['bookmark'])) {
        
$cfgRelation['bookmarkwork']     = TRUE;
    }

    if (
$cfgRelation['relwork'] == TRUE && $cfgRelation['displaywork'] == TRUE
        
&& $cfgRelation['pdfwork'] == TRUE && $cfgRelation['commwork'] == TRUE
        
&& $cfgRelation['mimework'] == TRUE && $cfgRelation['historywork'] == TRUE
        
&& $cfgRelation['bookmarkwork'] == TRUE) {
        
$cfgRelation['allworks'] = TRUE;
    }
    if (
$tab_rs) {
        
PMA_DBI_free_result($tab_rs);
    } else {
        
$cfg['Server']['pmadb'] = FALSE;
    }

    if (
$verbose == TRUE) {
        
$shit     '<font color="red"><b>' $GLOBALS['strNotOK'] . '</b></font> [ <a href="Documentation.html#%s">' $GLOBALS['strDocu'] . '</a> ]';
        
$hit      '<font color="green"><b>' $GLOBALS['strOK'] . '</b></font>';
        
$enabled  '<font color="green">' $GLOBALS['strEnabled'] . '</font>';
        
$disabled '<font color="red">'   $GLOBALS['strDisabled'] . '</font>';

        echo 
'<table>' "\n";
        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'pmadb\'] ... </th><td align="right">'
             
. (($cfg['Server']['pmadb'] == FALSE) ? sprintf($shit'pmadb') : $hit)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td>&nbsp;</td></tr>' "\n";

        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'relation\'] ... </th><td align="right">'
             
. ((isset($cfgRelation['relation'])) ? $hit sprintf($shit'relation'))
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td colspan=2 align="center">'$GLOBALS['strGeneralRelationFeat'] . ': '
             
. (($cfgRelation['relwork'] == TRUE) ? $enabled :  $disabled)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td>&nbsp;</td></tr>' "\n";

        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'table_info\']   ... </th><td align="right">'
             
. (($cfgRelation['displaywork'] == FALSE) ? sprintf($shit'table_info') : $hit)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td colspan=2 align="center">' $GLOBALS['strDisplayFeat'] . ': '
             
. (($cfgRelation['displaywork'] == TRUE) ? $enabled $disabled)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td>&nbsp;</td></tr>' "\n";

        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'table_coords\'] ... </th><td align="right">'
             
. ((isset($cfgRelation['table_coords'])) ? $hit sprintf($shit'table_coords'))
             . 
'</td></tr>' "\n";
        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'pdf_pages\'] ... </th><td align="right">'
             
. ((isset($cfgRelation['pdf_pages'])) ? $hit sprintf($shit'table_coords'))
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td colspan=2 align="center">' $GLOBALS['strCreatePdfFeat'] . ': '
             
. (($cfgRelation['pdfwork'] == TRUE) ? $enabled $disabled)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td>&nbsp;</td></tr>' "\n";

        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'column_info\'] ... </th><td align="right">'
             
. ((isset($cfgRelation['column_info'])) ? $hit sprintf($shit'col_com'))
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td colspan=2 align="center">' $GLOBALS['strColComFeat'] . ': '
             
. (($cfgRelation['commwork'] == TRUE) ? $enabled $disabled)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td colspan=2 align="center">' $GLOBALS['strBookmarkQuery'] . ': '
             
. (($cfgRelation['bookmarkwork'] == TRUE) ? $enabled $disabled)
             . 
'</td></tr>' "\n";
        echo 
'    <tr><th align="left">MIME ...</th><td align="right">'
             
. (($cfgRelation['mimework'] == TRUE) ? $hit sprintf($shit'col_com'))
             . 
'</td></tr>' "\n";

             if ((
$cfgRelation['commwork'] == TRUE) && ($cfgRelation['mimework'] != TRUE)) {
                 echo 
'<tr><td colspan=2 align="left">' $GLOBALS['strUpdComTab'] . '</td></tr>' "\n";
             }

        echo 
'    <tr><th align="left">$cfg[\'Servers\'][$i][\'history\'] ... </th><td align="right">'
             
. ((isset($cfgRelation['history'])) ? $hit sprintf($shit'history'))
             . 
'</td></tr>' "\n";
        echo 
'    <tr><td colspan=2 align="center">' $GLOBALS['strQuerySQLHistory'] . ': '
             
. (($cfgRelation['historywork'] == TRUE) ? $enabled $disabled)
             . 
'</td></tr>' "\n";

        echo 
'</table>' "\n";
    } 
// end if ($verbose == TRUE) {

    
return $cfgRelation;
// end of the 'PMA_getRelationsParam()' function


/**
 * Gets all Relations to foreign tables for a given table or
 * optionally a given column in a table
 *
 * @param   string   the name of the db to check for
 * @param   string   the name of the table to check for
 * @param   string   the name of the column to check for
 * @param   string   the source for foreign key information
 *
 * @return  array    db,table,column
 *
 * @global  array    the list of relations settings
 * @global  string   the URL of the page to show in case of error
 *
 * @access  public
 *
 * @author  Mike Beck <mikebeck@users.sourceforge.net> and Marc Delisle
 */
function PMA_getForeigners($db$table$column ''$source 'both') {
    global 
$cfgRelation$err_url_0;

    if (
$cfgRelation['relwork'] && ($source == 'both' || $source == 'internal')) {
        
$rel_query          'SELECT master_field, foreign_db, foreign_table, foreign_field'
                            
' FROM ' PMA_backquote($cfgRelation['relation']);
        if (
PMA_MYSQL_INT_VERSION >= 40100) {
            list(
$conn_charset) = explode('_'$GLOBALS['collation_connection']);
            
$rel_query     .= ' WHERE CONVERT(master_db USING ' $conn_charset ') =  \'' PMA_sqlAddslashes($db) . '\' '
                            
' AND   CONVERT(master_table USING ' $conn_charset ') = \'' PMA_sqlAddslashes($table) . '\' ';
            if (!empty(
$column)) {
                
$rel_query .= ' AND   CONVERT(master_field USING ' $conn_charset ') = \'' PMA_sqlAddslashes($column) . '\'';
            }
            unset(
$conn_charset);
        } else {
            
$rel_query     .= ' WHERE master_db =  \'' PMA_sqlAddslashes($db) . '\' '
                            
' AND   master_table = \'' PMA_sqlAddslashes($table) . '\' ';
            if (!empty(
$column)) {
                
$rel_query .= ' AND   master_field = \'' PMA_sqlAddslashes($column) . '\'';
            }
        }
        
$relations     PMA_query_as_cu($rel_query);
        
$i 0;
        while (
$relrow PMA_DBI_fetch_assoc($relations)) {
            
$field                            $relrow['master_field'];
            
$foreign[$field]['foreign_db']    = $relrow['foreign_db'];
            
$foreign[$field]['foreign_table'] = $relrow['foreign_table'];
            
$foreign[$field]['foreign_field'] = $relrow['foreign_field'];
            
$i++;
        } 
// end while
        
PMA_DBI_free_result($relations);
        unset(
$relations);
    }

    if ((
$source == 'both' || $source == 'innodb') && !empty($table)) {
        
$show_create_table_query 'SHOW CREATE TABLE '
            
PMA_backquote($db) . '.' PMA_backquote($table);
        
$show_create_table_res PMA_DBI_query($show_create_table_query);
        list(,
$show_create_table) = PMA_DBI_fetch_row($show_create_table_res);
        
PMA_DBI_free_result($show_create_table_res);
        unset(
$show_create_table_res$show_create_table_query);
        
$analyzed_sql PMA_SQP_analyze(PMA_SQP_parse($show_create_table));

        foreach (
$analyzed_sql[0]['foreign_keys'] AS $one_key) {

        
// the analyzer may return more than one column name in the
        // index list or the ref_index_list
            
foreach ($one_key['index_list'] AS $i => $field) {

        
// If a foreign key is defined in the 'internal' source (pmadb)
        // and in 'innodb', we won't get it twice if $source='both'
        // because we use $field as key

                // The parser looks for a CONSTRAINT clause just before
                // the FOREIGN KEY clause. It finds it (as output from
                // SHOW CREATE TABLE) in MySQL 4.0.13, but not in older
                // versions like 3.23.58. 
                // In those cases, the FOREIGN KEY parsing will put numbers
                // like -1, 0, 1... instead of the constraint number.

                
if (isset($one_key['constraint'])) {
                    
$foreign[$field]['constraint'] = $one_key['constraint'];
                }

                if (isset(
$one_key['ref_db_name'])) {
                    
$foreign[$field]['foreign_db']    = $one_key['ref_db_name'];
                } else {
                    
$foreign[$field]['foreign_db']    = $db;
                }
                
$foreign[$field]['foreign_table'] = $one_key['ref_table_name'];
                
$foreign[$field]['foreign_field'] = $one_key['ref_index_list'][$i];
                if (isset(
$one_key['on_delete'])) {
                    
$foreign[$field]['on_delete'] = $one_key['on_delete'];
                }
                if (isset(
$one_key['on_update'])) {
                    
$foreign[$field]['on_update'] = $one_key['on_update'];
                }
            }
        }
    }

    if (isset(
$foreign) && is_array($foreign)) {
       return 
$foreign;
    } else {
       return 
FALSE;
    }
// end of the 'PMA_getForeigners()' function


/**
 * Gets the display field of a table
 *
 * @param   string   the name of the db to check for
 * @param   string   the name of the table to check for
 *
 * @return  string   field name
 *
 * @global  array    the list of relations settings
 *
 * @access  public
 *
 * @author  Mike Beck <mikebeck@users.sourceforge.net>
 */
function PMA_getDisplayField($db$table) {
    global 
$cfgRelation;
    if (
trim(@$cfgRelation['table_info']) == '') {
        return 
FALSE;
    }

    
$disp_query      'SELECT display_field FROM ' PMA_backquote($cfgRelation['table_info']);
    if (
PMA_MYSQL_INT_VERSION >= 40100) {
        list(
$conn_charset) = explode('_'$GLOBALS['collation_connection']);
        
$disp_query .= ' WHERE CONVERT(db_name    USING ' $conn_charset ') = \'' PMA_sqlAddslashes($db) . '\''
                     
' AND   CONVERT(table_name USING ' $conn_charset ') = \'' PMA_sqlAddslashes($table) . '\'';
    } else {
        
$disp_query .= ' WHERE db_name    = \'' PMA_sqlAddslashes($db) . '\''
                     
' AND   table_name = \'' PMA_sqlAddslashes($table) . '\'';
    }

    
$disp_res   PMA_query_as_cu($disp_query);
    
$row        = ($disp_res PMA_DBI_fetch_assoc($disp_res) : '');
    
PMA_DBI_free_result($disp_res);
    if (isset(
$row['display_field'])) {
        return 
$row['display_field'];
    } else {
        return 
FALSE;
    }
// end of the 'PMA_getDisplayField()' function


/**
 * Gets the comments for all rows of a table
 *
 * @param   string   the name of the db to check for
 * @param   string   the name of the table to check for
 *
 * @return  array    [field_name] = comment
 *
 * @global  array    the list of relations settings
 *
 * @access  public
 *
 * @author  Mike Beck <mikebeck@users.sourceforge.net>
 */
function PMA_getComments($db$table '') {
    global 
$cfgRelation;

    if (
PMA_MYSQL_INT_VERSION >= 40100) {
        list(
$conn_charset) = explode('_'$GLOBALS['collation_connection']);
    }

    if (
$table != '') {
        
$com_qry      'SELECT column_name, ' PMA_backquote('comment') . ' FROM ' PMA_backquote($cfgRelation['column_info']);
        if (
PMA_MYSQL_INT_VERSION >= 40100) {
            
$com_qry .= ' WHERE CONVERT(db_name    USING ' $conn_charset ') = \'' PMA_sqlAddslashes($db) . '\''
                      
' AND   CONVERT(table_name USING ' $conn_charset ') = \'' PMA_sqlAddslashes($table) . '\'';
        } else {
            
$com_qry .= ' WHERE db_name    = \'' PMA_sqlAddslashes($db) . '\''
                      
' AND   table_name = \'' PMA_sqlAddslashes($table) . '\'';
        }
        
$com_rs   PMA_query_as_cu($com_qryTRUE);
    } else {
        
$com_qry      'SELECT ' PMA_backquote('comment') . ' FROM ' PMA_backquote($cfgRelation['column_info']);
        if (
PMA_MYSQL_INT_VERSION >= 40100) {
            
$com_qry .= ' WHERE CONVERT(db_name     USING ' $conn_charset ') = \'' PMA_sqlAddslashes($db) . '\''
                      
' AND   CONVERT(table_name  USING ' $conn_charset ') = \'\''
                      
' AND   CONVERT(column_name USING ' $conn_charset ') = \'(db_comment)\'';
        } else {
            
$com_qry .= ' WHERE db_name     = \'' PMA_sqlAddslashes($db) . '\''
                      
' AND   table_name  = \'\''
                      
' AND   column_name = \'(db_comment)\'';
        }
        
$com_rs   PMA_query_as_cu($com_qryTRUE);
    }

    
$i 0;
    while (
$row PMA_DBI_fetch_assoc($com_rs)) {
        
$i++;
        
$col           = ($table != '' $row['column_name'] : $i);

        if (
strlen($row['comment']) > 0) {
            
$comment[$col] = $row['comment'];
        }

    } 
// end while
    
PMA_DBI_free_result($com_rs);
    unset(
$com_rs);

    if (isset(
$comment) && is_array($comment)) {
        return 
$comment;
     } else {
        return 
FALSE;
     }
 } 
// end of the 'PMA_getComments()' function

/**
* Adds/removes slashes if required
*
* @param   string  the string to slash
*
* @return  string  the slashed string
*
* @access  public
*/
function PMA_handleSlashes($val) {
  return (
get_magic_quotes_gpc() ? str_replace('\\"''"'$val) : PMA_sqlAddslashes($val));
// end of the "PMA_handleSlashes()" function

/**
* Set a single comment to a certain value.
*
* @param   string   the name of the db
* @param   string   the name of the table
* @param   string   the name of the column
* @param   string   the value of the column
* @param   string   (optional) if a column is renamed, this is the name of the former key which will get deleted
*
* @return  boolean  true, if comment-query was made.
*
* @global  array    the list of relations settings
*
* @access  public
*/
function PMA_setComment($db$table$key$value$removekey '') {
    global 
$cfgRelation;

    if (
PMA_MYSQL_INT_VERSION >= 40100) {
        list(
$conn_charset) = explode('_'$GLOBALS['collation_connection']);
        
$cols = array(
            
'db_name'     => 'CONVERT(db_name     USING ' $conn_charset ')',
            
'table_name'  => 'CONVERT(table_name  USING ' $conn_charset ')',
            
'column_name' => 'CONVERT(column_name USING ' $conn_charset ')'
        
);
    } else {
        
$cols = array(
            
'db_name'     => 'db_name    ',
            
'table_name'  => 'table_name ',
            
'column_name' => 'column_name'
        
);
    }

    if (
$removekey != '' AND $removekey != $key) {
        
$remove_query 'DELETE FROM ' PMA_backquote($cfgRelation['column_info'])
                      . 
' WHERE ' $cols['db_name']     . ' = \'' PMA_sqlAddslashes($db) . '\''
                      
' AND   ' $cols['table_name']  . ' = \'' PMA_sqlAddslashes($table) . '\''
                      
' AND   ' $cols['column_name'] . ' = \'' PMA_sqlAddslashes($removekey) . '\'';
        
PMA_query_as_cu($remove_query);
        unset(
$remove_query);
    }

    
$test_qry 'SELECT ' PMA_backquote('comment') . ', mimetype, transformation, transformation_options FROM ' PMA_backquote($cfgRelation['column_info'])
              . 
' WHERE ' $cols['db_name']     . ' = \'' PMA_sqlAddslashes($db) . '\''
              
' AND   ' $cols['table_name']  . ' = \'' PMA_sqlAddslashes($table) . '\''
              
' AND   ' $cols['column_name'] . ' = \'' PMA_sqlAddslashes($key) . '\'';
    
$test_rs   PMA_query_as_cu($test_qryTRUEPMA_DBI_QUERY_STORE);

    if (
$test_rs && PMA_DBI_num_rows($test_rs) > 0) {
        
$row PMA_DBI_fetch_assoc($test_rs);
        
PMA_DBI_free_result($test_rs);

        if (
strlen($value) > || strlen($row['mimetype']) > || strlen($row['transformation']) > || strlen($row['transformation_options']) > 0) {
            
$upd_query 'UPDATE ' PMA_backquote($cfgRelation['column_info'])
                       . 
' SET ' PMA_backquote('comment') . ' = \'' PMA_sqlAddslashes($value) . '\''
                       
' WHERE ' $cols['db_name']     . ' = \'' PMA_sqlAddslashes($db) . '\''
                       
' AND   ' $cols['table_name']  . ' = \'' PMA_sqlAddslashes($table) . '\''
                       
' AND   ' $cols['column_name'] . ' = \'' PMA_sqlAddSlashes($key) . '\'';
        } else {
            
$upd_query 'DELETE FROM ' PMA_backquote($cfgRelation['column_info'])
                       . 
' WHERE ' $cols['db_name']     . ' = \'' PMA_sqlAddslashes($db) . '\''
                       
' AND   ' $cols['table_name']  . ' = \'' PMA_sqlAddslashes($table) . '\''
                       
' AND   ' $cols['column_name'] . ' = \'' PMA_sqlAddslashes($key) . '\'';
        }
    } else if (
strlen($value) > 0) {
        
$upd_query 'INSERT INTO ' PMA_backquote($cfgRelation['column_info'])
                   . 
' (db_name, table_name, column_name, ' PMA_backquote('comment') . ') '
                   
' VALUES('
                   
'\'' PMA_sqlAddslashes($db) . '\','
                   
'\'' PMA_sqlAddslashes($table) . '\','
                   
'\'' PMA_sqlAddslashes($key) . '\','
                   
'\'' PMA_sqlAddslashes($value) . '\')';
    }

    if (isset(
$upd_query)){
        
$upd_rs    PMA_query_as_cu($upd_query);
        unset(
$upd_query);
        return 
true;
    } else {
        return 
false;
    }
// end of 'PMA_setComment()' function

/**
* Set a SQL history entry
*
* @param   string   the name of the db
* @param   string   the name of the table
* @param   string   the username
* @param   string   the sql query
*
* @return  boolean  true
*
* @access  public
*/
function PMA_setHistory($db$table$username$sqlquery) {
    global 
$cfgRelation;

    
$hist_rs    PMA_query_as_cu('INSERT INTO ' PMA_backquote($cfgRelation['history']) . ' ('
                
PMA_backquote('username') . ','
                
PMA_backquote('db') . ','
                
PMA_backquote('table') . ','
                
PMA_backquote('timevalue') . ','
                
PMA_backquote('sqlquery')
                . 
') VALUES ('
                
'\'' PMA_sqlAddslashes($username) . '\','
                
'\'' PMA_sqlAddslashes($db) . '\','
                
'\'' PMA_sqlAddslashes($table) . '\','
                
'NOW(),'
                
'\'' PMA_sqlAddslashes($sqlquery) . '\')');
    return 
true;
// end of 'PMA_setHistory()' function

/**
* Gets a SQL history entry
*
* @param   string   the username
*
* @return  array    list of history items
*
* @access  public
*/
function PMA_getHistory($username) {
    global 
$cfgRelation;

    
$hist_query      'SELECT '
                     
PMA_backquote('db') . ','
                     
PMA_backquote('table') . ','
                     
PMA_backquote('sqlquery')
                     . 
' FROM ' PMA_backquote($cfgRelation['history'])
                     . 
' WHERE ';
    if (
PMA_MYSQL_INT_VERSION >= 40100) {
        list(
$conn_charset) = explode('_'$GLOBALS['collation_connection']);
        
$hist_query .= 'CONVERT(username USING ' $conn_charset ')';
        unset(
$conn_charset);
    } else {
        
$hist_query .= 'username';
    }
    
$hist_query     .= ' = \'' PMA_sqlAddslashes($username) . '\' ORDER BY id DESC';

    
$hist_rs PMA_query_as_cu($hist_query);
    unset(
$hist_query);

    
$history = array();

    while (
$row PMA_DBI_fetch_assoc($hist_rs)) {
        
$history[] = $row;
    }
    
PMA_DBI_free_result($hist_rs);

    return 
$history;

// end of 'PMA_getHistory()' function

/**
* Set a SQL history entry
*
* @param   string   the name of the db
* @param   string   the name of the table
* @param   string   the username
* @param   string   the sql query
*
* @return  boolean  true
*
* @access  public
*/
function PMA_purgeHistory($username) {
    global 
$cfgRelation$cfg;

    
$purge_query  'SELECT timevalue FROM ' PMA_backquote($cfgRelation['history']) . ' WHERE ';
    if (
PMA_MYSQL_INT_VERSION >= 40100) {
        list(
$conn_charset) = explode('_'$GLOBALS['collation_connection']);
        
$purge_query .= 'CONVERT(username USING ' $conn_charset ')';
        unset(
$conn_charset);
    } else {
        
$purge_query .= 'username';
    }
    
$purge_query .= ' = \'' PMA_sqlAddSlashes($username) . '\' ORDER BY timevalue DESC LIMIT ' $cfg['QueryHistoryMax'] . ', 1';
    
$purge_rs PMA_query_as_cu($purge_query);
    
$i 0;
    
$row PMA_DBI_fetch_row($purge_rs);
    
PMA_DBI_free_result($purge_rs);

    if (
is_array($row) && isset($row[0]) && $row[0] > 0) {
        
$maxtime $row[0];
        
// quotes added around $maxtime to prevent a difficult to
        // reproduce problem
        
$remove_rs PMA_query_as_cu('DELETE FROM ' PMA_backquote($cfgRelation['history']) . ' WHERE timevalue <= "' $maxtime '"');
    }

    return 
true;
// end of 'PMA_purgeHistory()' function

/**
* Outputs dropdown with values of foreign fields
*
* @param   string   the query of the foreign keys
* @param   string   the foreign field
* @param   string   the foreign field to display
* @param   string   the current data of the dropdown
*
* @return  string   the <option value=""><option>s
*
* @access  public
*/
function PMA_foreignDropdown($disp$foreign_field$foreign_display$data$max 100) {
    global 
$cfg;

    
$ret '<option value=""></option>' "\n";

    
$reloptions = array('content-id' => array(), 'id-content' => array());
    
    foreach (
$disp AS $disp_key => $relrow) {
        
$key   $relrow[$foreign_field];

        
// if the display field has been defined for the foreign table
        
if ($foreign_display) {
            if (
PMA_strlen($relrow[$foreign_display]) <= $cfg['LimitChars']) {
                
$value  htmlspecialchars($relrow[$foreign_display]);
                
$vtitle '';
            } else {
                
$vtitle htmlspecialchars($relrow[$foreign_display]);
                
$value  htmlspecialchars(substr($vtitle0$cfg['LimitChars']) . '...');
            }
        } else {
            
$vtitle $value '';
        } 
// end if ($foreign_display)

        
$reloption '<option value="' htmlspecialchars($key) . '"';
        if (
$vtitle != '') {
            
$reloption .= ' title="' $vtitle '"';
        }

        if (
$key == $data) {
           
$reloption .= ' selected="selected"';
        } 
// end if

        
$reloptions['id-content'][] = $reloption '>' $value '&nbsp;-&nbsp;' htmlspecialchars($key) .  '</option>' "\n";
        
$reloptions['content-id'][] = $reloption '>' htmlspecialchars($key) .  '&nbsp;-&nbsp;' $value '</option>' "\n";
    } 
// end while

    // the list of keys looks better if not sorted by description
    
if ($cfg['NaturalOrder']) {
        
natsort($reloptions['content-id']); }
    else {
        
asort($reloptions['content-id']);
    }

    if (
$max == -|| count($reloptions['content-id']) < $max) {
        
$ret .= implode(''$reloptions['content-id']);
        if (
count($reloptions['content-id']) > 0) {
            
$ret .= '<option value=""></option>' "\n";
            
$ret .= '<option value=""></option>' "\n";
        }
    }

    
$ret .= implode(''$reloptions['id-content']);

    return 
$ret;
// end of 'PMA_foreignDropdown()' function

?>