gottlieb: Warning bei der Ausgabe von Datensätze

Beitrag lesen

Hi,

Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 65 in C:\Server\xampp\phpMyAdmin\libraries\display_tbl.lib.php on line 756

Und wo finden wir jetzt Zeile 756 bzw. das dort befindliche fehlerhafte Muster?

Asoo, ich dachte, mit meiner Query stimmt etwas nicht, welches den Fehler auslöst.

Ab Zeile 755 sieht es in display_tbl.lib.php so aus:

  
  
            if (($is_join  
                && !preg_match('~([^[:space:],]|`[^`]`)[[:space:]]+(as[[:space:]]+)?' . $fields_meta[$i]->name . '~i', $select_expr, $parts = array()))  
               || ( isset($analyzed_sql[0]['select_expr'][$i]['expr'])  
                   && isset($analyzed_sql[0]['select_expr'][$i]['column'])  
                   && $analyzed_sql[0]['select_expr'][$i]['expr'] !=  
                   $analyzed_sql[0]['select_expr'][$i]['column']  
                  && !empty($fields_meta[$i]->table)) ) {  
                $sort_tbl = PMA_backquote($fields_meta[$i]->table) . ' . ';  
            } else {  
                $sort_tbl = '';  
            }