2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Handles table search tab
6 * display table search form, create SQL query from form data
7 * and include sql.php to execute it
9 * @todo display search form again if no results from previous search
14 * Gets some core libraries
16 require_once './libraries/common.inc.php';
17 require_once './libraries/relation.lib.php'; // foreign keys
18 require_once './libraries/mysql_charsets.lib.php';
20 $GLOBALS['js_include'][] = 'mootools.js';
21 $GLOBALS['js_include'][] = 'mootools-domready.js';
23 if ($GLOBALS['cfg']['PropertiesIconic'] == true) {
25 '<img class="icon" width="16" height="16" src="' . $pmaThemeImage
26 .'b_browse.png" alt="' . $strBrowseForeignValues . '" title="'
27 .$strBrowseForeignValues . '" />';
29 if ($GLOBALS['cfg']['PropertiesIconic'] === 'both') {
30 $titles['Browse'] .= $strBrowseForeignValues;
33 $titles['Browse'] = $strBrowseForeignValues;
37 * Not selection yet required -> displays the selection form
39 if (!isset($param) ||
$param[0] == '') {
40 // Gets some core libraries
41 require_once './libraries/tbl_common.php';
42 //$err_url = 'tbl_select.php' . $err_url;
43 $url_query .= '&goto=tbl_select.php&back=tbl_select.php';
46 * Gets tables informations
48 require_once './libraries/tbl_info.inc.php';
51 * Displays top menu links
53 require_once './libraries/tbl_links.inc.php';
56 $goto = $GLOBALS['cfg']['DefaultTabTable'];
58 // Defines the url to return to in case of error in the next sql statement
59 $err_url = $goto . '?' . PMA_generate_common_url($db, $table);
61 // Gets the list and number of fields
62 $result = PMA_DBI_query('SHOW FULL FIELDS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE
);
63 $fields_cnt = PMA_DBI_num_rows($result);
64 // rabue: we'd better ensure, that all arrays are empty.
65 $fields_list = $fields_null = $fields_type = $fields_collation = array();
66 while ($row = PMA_DBI_fetch_assoc($result)) {
67 $fields_list[] = $row['Field'];
69 // reformat mysql query output - staybyte - 9. June 2001
70 if (strncasecmp($type, 'set', 3) == 0
71 ||
strncasecmp($type, 'enum', 4) == 0) {
72 $type = str_replace(',', ', ', $type);
75 // strip the "BINARY" attribute, except if we find "BINARY(" because
76 // this would be a BINARY or VARBINARY field type
77 if (!preg_match('@BINARY[\(]@i', $type)) {
78 $type = preg_replace('@BINARY@i', '', $type);
80 $type = preg_replace('@ZEROFILL@i', '', $type);
81 $type = preg_replace('@UNSIGNED@i', '', $type);
83 $type = strtolower($type);
88 $fields_null[] = $row['Null'];
89 $fields_type[] = $type;
90 $fields_collation[] = !empty($row['Collation']) && $row['Collation'] != 'NULL'
94 PMA_DBI_free_result($result);
95 unset($result, $type);
98 // retrieve keys into foreign fields, if any
99 // check also foreigners even if relwork is FALSE (to get
100 // foreign keys from innodb)
101 $foreigners = PMA_getForeigners($db, $table);
103 <script type
="text/javascript">
105 function PMA_tbl_select_operator(f
, index
, multiple
) {
106 switch (f
.elements
["func[" + index +
"]"].options
[f
.elements
["func[" + index +
"]"].selectedIndex
].value
) {
108 reset($GLOBALS['cfg']['UnaryOperators']);
109 while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
110 echo ' case "' . $operator . "\":\r\n";
119 f
.elements
["fields[" + index +
"]" +
((multiple
) ?
"[]": "")].disabled
= bDisabled
;
123 <form method
="post" action
="tbl_select.php" name
="insertForm">
124 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
125 <input type
="hidden" name
="goto" value
="<?php echo $goto; ?>" />
126 <input type
="hidden" name
="back" value
="tbl_select.php" />
128 <fieldset id
="fieldset_table_search">
130 <fieldset id
="fieldset_table_qbe">
131 <legend
><?php
echo $strDoAQuery; ?
></legend
>
134 <tr
><th
><?php
echo $strField; ?
></th
>
135 <th
><?php
echo $strType; ?
></th
>
136 <th
><?php
echo $strCollation; ?
></th
>
137 <th
><?php
echo $strOperator; ?
></th
>
138 <th
><?php
echo $strValue; ?
></th
>
145 <script type
="text/javascript" src
="./js/tbl_change.js"></script
>
147 for ($i = 0; $i < $fields_cnt; $i++
) {
149 <tr
class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
150 <th
><?php
echo htmlspecialchars($fields_list[$i]); ?
></th
>
151 <td
><?php
echo $fields_type[$i]; ?
></td
>
152 <td
><?php
echo $fields_collation[$i]; ?
></td
>
153 <td
><select name
="func[]">
155 if (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
156 foreach ($GLOBALS['cfg']['EnumOperators'] as $fc) {
158 . '<option value="' . htmlspecialchars($fc) . '">'
159 . htmlspecialchars($fc) . '</option>';
161 } elseif (preg_match('@char|blob|text|set@i', $fields_type[$i])) {
162 foreach ($GLOBALS['cfg']['TextOperators'] as $fc) {
164 . '<option value="' . htmlspecialchars($fc) . '">'
165 . htmlspecialchars($fc) . '</option>';
168 foreach ($GLOBALS['cfg']['NumOperators'] as $fc) {
170 . '<option value="' . htmlspecialchars($fc) . '">'
171 . htmlspecialchars($fc) . '</option>';
173 } // end if... else...
174 if ($fields_null[$i]) {
175 foreach ($GLOBALS['cfg']['NullOperators'] as $fc) {
177 . '<option value="' . htmlspecialchars($fc) . '">'
178 . htmlspecialchars($fc) . '</option>';
188 $field = $fields_list[$i];
190 $foreignData = PMA_getForeignData($foreigners, $field, false, '', '');
192 if ($foreigners && isset($foreigners[$field]) && is_array($foreignData['disp_row'])) {
193 // f o r e i g n k e y s
194 echo ' <select name="fields[' . $i . ']">' . "\n";
195 // go back to first row
197 // here, the 4th parameter is empty because there is no current
198 // value of data for the dropdown (the search page initial values
199 // are displayed empty)
200 echo PMA_foreignDropdown($foreignData['disp_row'],
201 $foreignData['foreign_field'],
202 $foreignData['foreign_display'],
203 '', $GLOBALS['cfg']['ForeignKeyMaxLimit']);
204 echo ' </select>' . "\n";
205 } elseif ($foreignData['foreign_link'] == true) {
207 <input type
="text" name
="fields[<?php echo $i; ?>]"
208 id
="field_<?php echo md5($field); ?>[<?php echo $i; ?>]"
210 <script type
="text/javascript">
212 document
.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes\'); return false" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo urlencode($field); ?>&fieldkey=<?php echo $i; ?>"><?php echo str_replace("'", "\'
", $titles['Browse']); ?></a>');
216 } elseif (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
218 $enum_value=explode(', ', str_replace("'", '', substr($fields_type[$i], 5, -1)));
219 $cnt_enum_value = count($enum_value);
220 echo ' <select name
="fields[' . $i . '][]"'
221 .' multiple
="multiple" size
="' . min(3, $cnt_enum_value) . '">' . "\n";
222 for ($j = 0; $j < $cnt_enum_value; $j++) {
223 echo ' <option value
="' . $enum_value[$j] . '">'
224 . $enum_value[$j] . '</option
>';
226 echo ' </select
>' . "\n";
228 // o t h e r c a s e s
229 echo ' <input type
="text" name
="fields[' . $i . ']"'
230 .' size
="40" class="textfield" id
="field_' . $i . '" />' . "\n";
232 $type = $fields_type[$i];
233 if ($type == 'date
' || $type == 'datetime
' || substr($type, 0, 9) == 'timestamp
') {
235 <script type="text/javascript">
237 document.write('<a title
="<?php echo $strCalendar;?>" href
="javascript:openCalendar(\'<?php echo PMA_generate_common_url();?>\', \'insertForm\', \'field_<?php echo ($i); ?>\', \'<?php echo (substr($type, 0, 9) == 'timestamp') ? 'datetime' : substr($type, 0, 9); ?>\')"><img
class="calendar" src
="<?php echo $pmaThemeImage; ?>b_calendar.png" alt
="<?php echo $strCalendar; ?>"/></a
>');
243 <input type="hidden" name="names[<?php echo $i; ?>]"
244 value="<?php echo htmlspecialchars($fields_list[$i]); ?>" />
245 <input type="hidden" name="types[<?php echo $i; ?>]"
246 value="<?php echo $fields_type[$i]; ?>" />
247 <input type="hidden" name="collations[<?php echo $i; ?>]"
248 value="<?php echo $fields_collation[$i]; ?>" />
258 PMA_generate_slider_effect('searchoptions
', $strOptions);
260 <div id="searchoptions">
262 <fieldset id="fieldset_select_fields">
263 <legend><?php echo $strSelectFields; ?></legend>
264 <select name="param[]" size="<?php echo min($fields_cnt, 10); ?>"
267 // Displays the list of the fields
268 foreach ($fields_list as $each_field) {
270 .'<option value
="' . htmlspecialchars($each_field) . '"'
271 .' selected
="selected">' . htmlspecialchars($each_field)
276 <input type="checkbox" name="distinct" value="DISTINCT" id="oDistinct" />
277 <label for="oDistinct">DISTINCT</label>
280 <fieldset id="fieldset_search_conditions">
281 <legend><?php echo '<em
>' . $strOr . '</em
> ' .$strAddSearchConditions; ?></legend>
282 <?php echo PMA_showMySQLDocu('SQL
-Syntax
', 'Functions
'); ?>
284 <input type="text" name="where" class="textfield" size="64" />
287 <fieldset id="fieldset_limit_rows">
288 <legend><?php echo $strLimitNumRows; ?></legend>
289 <input type="text" size="4" name="session_max_rows"
290 value="<?php echo $GLOBALS['cfg
']['MaxRows
']; ?>" class="textfield" />
293 <fieldset id="fieldset_display_order">
294 <legend><?php echo $strDisplayOrder; ?></legend>
295 <select name="orderField" style="vertical-align: middle">
296 <option value="--nil--"></option>
298 foreach ($fields_list as $each_field) {
300 .'<option value
="' . htmlspecialchars($each_field) . '">'
301 .htmlspecialchars($each_field) . '</option
>' . "\n";
307 'ASC
' => $strAscending,
308 'DESC
' => $strDescending
310 PMA_generate_html_radio('order
', $choices, 'ASC
', false, true, "formelement");
316 <fieldset class="tblFooters">
317 <input type="hidden" name="max_number_of_fields"
318 value="<?php echo $fields_cnt; ?>" />
319 <input type="submit" name="submit" value="<?php echo $strGo; ?>" />
323 require_once './libraries
/footer
.inc
.php
';
328 * Selection criteria have been submitted -> do the work
333 $sql_query = 'SELECT
' . (isset($distinct) ? 'DISTINCT
' : '');
335 // if all fields were selected to display, we do a SELECT *
336 // (more efficient and this helps prevent a problem in IE
337 // if one of the rows is edited and we come back to the Select results)
339 if (count($param) == $max_number_of_fields) {
342 $param = PMA_backquote($param);
343 $sql_query .= implode(', ', $param);
347 $sql_query .= ' FROM
' . PMA_backquote($table);
350 if (trim($where) != '') {
351 $sql_query .= ' WHERE
' . $where;
353 $w = $charsets = array();
354 $cnt_func = count($func);
356 while (list($i, $func_type) = each($func)) {
357 list($charsets[$i]) = explode('_
', $collations[$i]);
358 if (isset($GLOBALS['cfg
']['UnaryOperators
'][$func_type]) && $GLOBALS['cfg
']['UnaryOperators
'][$func_type] == 1) {
360 $w[] = PMA_backquote($names[$i]) . ' ' . $func_type;
362 } elseif (strncasecmp($types[$i], 'enum
', 4) == 0) {
363 if (!empty($fields[$i])) {
364 if (!is_array($fields[$i])) {
365 $fields[$i] = explode(',', $fields[$i]);
367 $enum_selected_count = count($fields[$i]);
368 if ($func_type == '=' && $enum_selected_count > 1) {
369 $func_type = $func[$i] = 'IN
';
373 } elseif ($func_type == '!=' && $enum_selected_count > 1) {
374 $func_type = $func[$i] = 'NOT IN
';
382 $enum_where = '\'
' . PMA_sqlAddslashes($fields[$i][0]) . '\'
';
383 for ($e = 1; $e < $enum_selected_count; $e++) {
384 $enum_where .= ', \'' . PMA_sqlAddslashes($fields[$i][$e]) . '\'
';
387 $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $parens_open . $enum_where . $parens_close;
390 } elseif ($fields[$i] != '') {
391 // For these types we quote the value. Even if it's another
type (like
INT),
392 // for a LIKE we always quote the value. MySQL converts strings to numbers
393 // and numbers to strings as necessary during the comparison
394 if (preg_match('@char|binary|blob|text|set|date|time|year@i', $types[$i]) ||
strpos(' ' . $func_type, 'LIKE')) {
401 if ($func_type == 'LIKE %...%') {
403 $fields[$i] = '%' . $fields[$i] . '%';
405 $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $quot . PMA_sqlAddslashes($fields[$i]) . $quot;
411 $sql_query .= ' WHERE ' . implode(' AND ', $w);
415 if ($orderField != '--nil--') {
416 $sql_query .= ' ORDER BY ' . PMA_backquote($orderField) . ' ' . $order;